Skip to content

Commit

Permalink
update the license file and the readme
Browse files Browse the repository at this point in the history
  • Loading branch information
nwlandry committed Oct 3, 2024
1 parent de5f89f commit e69edd4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2024 Przemysław Szufel
Copyright (c) 2024 HIF development team

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## The Hypergraph Interchange Format (HIF) standard
(Work-in-progress)

Hypergraph Interchange Format (HIF) is a forthcoming standard for higher-order network data to facilitate seamless data exchange between existing higher-order network libraries.
The Hypergraph Interchange Format (HIF) is a forthcoming standard for higher-order network data to facilitate seamless data exchange between existing higher-order network libraries.

### Table of contents for this folder

Expand All @@ -13,7 +13,7 @@ This repository is organized into the following folders:
* `tests`: This folder contains all of the unit tests used for validating that the schema is correct.
* `tutorials`: This folder contains tutorials detailing how each library uses the HIF standard and how the HIF standard allows seamless integration between libraries. For details of its contents, see the [README](/tutorials/TUTORIALS.md).

Initial assumptions about the core of the HIF data format:
Initial assumptions about the core of the HIF standard:
```
{
"network-type": "undirected", # will indicate if directed or an asc
Expand Down Expand Up @@ -53,7 +53,7 @@ import fastjsonschema
import json
import requests

schema = requests.get("https://raw.githubusercontent.com/pszufe/HIF_validators/main/schemas/hif_schema_v0.1.0.json").json()
schema = requests.get("https://raw.githubusercontent.com/pszufe/HIF-standard/main/schemas/hif_schema_v0.1.0.json").json()
validator = fastjsonschema.compile(schema)
hiftext = json.load(open(filename,'r'))
validator(hiftext)
Expand Down

0 comments on commit e69edd4

Please sign in to comment.