lightgraph 0.2.0__tar.gz → 1.0.1__tar.gz
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.
- lightgraph-1.0.1/PKG-INFO +27 -0
- lightgraph-1.0.1/README.md +13 -0
- lightgraph-1.0.1/lightgraph/__init__.py +1 -0
- lightgraph-1.0.1/lightgraph/assets/lightgraph.js +4041 -0
- lightgraph-1.0.1/lightgraph/network.py +273 -0
- {lightgraph-0.2.0 → lightgraph-1.0.1}/pyproject.toml +6 -2
- lightgraph-1.0.1/tests/__init__.py +1 -0
- lightgraph-1.0.1/tests/test_network.py +257 -0
- lightgraph-1.0.1/uv.lock +2101 -0
- lightgraph-0.2.0/PKG-INFO +0 -11
- lightgraph-0.2.0/README.md +0 -1
- lightgraph-0.2.0/lightgraph/__init__.py +0 -1
- lightgraph-0.2.0/lightgraph/assets/d3.v7.min.js +0 -2
- lightgraph-0.2.0/lightgraph/assets/lightgraph.js +0 -741
- lightgraph-0.2.0/lightgraph/network.py +0 -77
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: lightgraph
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: A lightweight Python binding for lightGraph network visualization
|
|
5
|
+
Author-email: Hao Zhu <haozhu233@gmail.com>, Aiden McComiskey <aiden.mccomiskey@tufts.edu>, Donna Slonim <donna.slonim@tufts.edu>
|
|
6
|
+
Requires-Python: >=3.6
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Requires-Dist: numpy
|
|
9
|
+
Requires-Dist: IPython
|
|
10
|
+
Requires-Dist: pytest>=7.0 ; extra == "test"
|
|
11
|
+
Requires-Dist: pytest-cov>=4.0 ; extra == "test"
|
|
12
|
+
Provides-Extra: test
|
|
13
|
+
|
|
14
|
+
# lightgraph
|
|
15
|
+
|
|
16
|
+
`lightgraph` is a high-performance HTML canvas-based network visualization tool.
|
|
17
|
+
|
|
18
|
+

|
|
19
|
+
|
|
20
|
+
## Installation
|
|
21
|
+
|
|
22
|
+
For python binding, you can install from pypi.
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
pip install lightgraph
|
|
26
|
+
```
|
|
27
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# lightgraph
|
|
2
|
+
|
|
3
|
+
`lightgraph` is a high-performance HTML canvas-based network visualization tool.
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
For python binding, you can install from pypi.
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
pip install lightgraph
|
|
13
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .network import net_vis, NetworkVisualization
|