netfog 0.1.0__cp311-cp311-win_amd64.whl → 0.1.1__cp311-cp311-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: netfog
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: 3.11
6
6
  Classifier: License :: OSI Approved :: MIT License
@@ -37,6 +37,12 @@ This library is designed to be **lightweight, fast, and easy to use**.
37
37
 
38
38
  ---
39
39
 
40
+ ## Installation
41
+ You can install NetFog directly from PyPI using pip:
42
+ ```bash
43
+ pip install netfog
44
+ ```
45
+
40
46
  ## Quick Start
41
47
 
42
48
  ```python
@@ -46,8 +52,8 @@ from netfog import Graph, Node
46
52
  g = Graph()
47
53
 
48
54
  # Add nodes
49
- n1 = Node("A")
50
- n2 = Node("B")
55
+ g.add_node("A")
56
+ g.add_node("B")
51
57
 
52
58
  # Add a connection (edge or arc)
53
59
  # Here we use the label of the nodes for easier manipulation
@@ -58,4 +64,5 @@ print(g.get_connections())
58
64
  ```
59
65
 
60
66
 
61
- For full documentation, see [docs](docs/index.md)
67
+ For full documentation, see [docs](docs/index.md)
68
+
@@ -0,0 +1,8 @@
1
+ netfog\__init__.py,sha256=bckvIkjaHY2_NEYvGYD7XooPvKZ7UsKHNq3XwPCavtI,107
2
+ netfog\__init__.pyi,sha256=z0nL2NsFGG7ktCsMumMB9zQhf3mZwpQr8dQAEYNpR9Q,3031
3
+ netfog\netfog.cp311-win_amd64.pyd,sha256=J2vezlo5livFHO_Z9yEPTmLeYfbKoM1RhXlbpXN-m8g,794112
4
+ netfog\py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ netfog-0.1.1.dist-info\METADATA,sha256=5qQsUe2xACx8V8EM8uABo7lS5SQrmjRhU1baWSJC9RM,1672
6
+ netfog-0.1.1.dist-info\WHEEL,sha256=X79LywvMB9iCuFHu88xBAFTJDhRqJi6Yh9hhoCI9jao,97
7
+ netfog-0.1.1.dist-info\licenses\LICENSE,sha256=gLKdVsxp4SNgirSKxrJjqoUxqwr5Lv30Sc5bgLoBi-8,1097
8
+ netfog-0.1.1.dist-info\RECORD,,
@@ -1,8 +0,0 @@
1
- netfog\__init__.py,sha256=bckvIkjaHY2_NEYvGYD7XooPvKZ7UsKHNq3XwPCavtI,107
2
- netfog\__init__.pyi,sha256=z0nL2NsFGG7ktCsMumMB9zQhf3mZwpQr8dQAEYNpR9Q,3031
3
- netfog\netfog.cp311-win_amd64.pyd,sha256=VRsprsDQIYtkDsh9RSVu3bwlqHA-AOiDJQjcE8NB4oM,794112
4
- netfog\py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- netfog-0.1.0.dist-info\METADATA,sha256=otlLzhjH_kB2LRYi3xaJidWG989ZVGZnZpExb57iRHA,1561
6
- netfog-0.1.0.dist-info\WHEEL,sha256=X79LywvMB9iCuFHu88xBAFTJDhRqJi6Yh9hhoCI9jao,97
7
- netfog-0.1.0.dist-info\licenses\LICENSE,sha256=gLKdVsxp4SNgirSKxrJjqoUxqwr5Lv30Sc5bgLoBi-8,1097
8
- netfog-0.1.0.dist-info\RECORD,,
File without changes