iplotx 0.0.1__py3-none-any.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.
- iplotx/__init__.py +2 -0
- iplotx/edge/arrow.py +122 -0
- iplotx/edge/common.py +47 -0
- iplotx/edge/directed.py +149 -0
- iplotx/edge/label.py +50 -0
- iplotx/edge/undirected.py +447 -0
- iplotx/groups.py +141 -0
- iplotx/heuristics.py +114 -0
- iplotx/importing.py +13 -0
- iplotx/network.py +507 -0
- iplotx/plotting.py +104 -0
- iplotx/styles.py +186 -0
- iplotx/typing.py +41 -0
- iplotx/utils/geometry.py +227 -0
- iplotx/utils/matplotlib.py +136 -0
- iplotx/version.py +1 -0
- iplotx/vertex.py +112 -0
- iplotx-0.0.1.dist-info/METADATA +39 -0
- iplotx-0.0.1.dist-info/RECORD +20 -0
- iplotx-0.0.1.dist-info/WHEEL +5 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: iplotx
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Plot networkx from igraph and networkx.
|
|
5
|
+
Project-URL: Homepage, https://github.com/fabilab/iplotx
|
|
6
|
+
Project-URL: Documentation, https://readthedocs.org/iplotx
|
|
7
|
+
Project-URL: Repository, https://github.com/fabilab/iplotx.git
|
|
8
|
+
Project-URL: Bug Tracker, https://github.com/fabilab/iplotx/issues
|
|
9
|
+
Project-URL: Changelog, https://github.com/fabilab/iplotx/blob/main/CHANGELOG.md
|
|
10
|
+
Author-email: Fabio Zanini <fabio.zanini@unsw.edu.au>
|
|
11
|
+
Maintainer-email: Fabio Zanini <fabio.zanini@unsw.edu.au>
|
|
12
|
+
License: MIT
|
|
13
|
+
Keywords: graph,network,plotting,visualisation
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Requires-Dist: matplotlib>=2.0.0
|
|
22
|
+
Requires-Dist: pandas>=2.0.0
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
|
|
25
|
+
# iplotx
|
|
26
|
+
Plotting networks from igraph and networkx.
|
|
27
|
+
|
|
28
|
+
**NOTE**: This is currently pre-alpha quality software. The API and functionality will break constantly, so use at your own risk. That said, if you have things you would like to see improved, please open a GitHub issue.
|
|
29
|
+
|
|
30
|
+
## Roadmap
|
|
31
|
+
- Plot networks from igraph and networkx interchangeably, using matplotlib as a backend. ✅
|
|
32
|
+
- Support interactive plotting, e.g. zooming and panning after the plot is created. ✅
|
|
33
|
+
- Support storing the plot to disk thanks to the many matplotlib backends (SVG, PNG, PDF, etc.).
|
|
34
|
+
- Efficient plotting of large graphs using matplotlib's collection functionality. ✅ (partially)
|
|
35
|
+
- Support animations, e.g. showing the evolution of a network over time. 🏗️
|
|
36
|
+
- Support uni- and bi-directional communication between graph object and plot object.🏗️
|
|
37
|
+
|
|
38
|
+
## Authors
|
|
39
|
+
Fabio Zanini (https://fabilab.org)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
iplotx/__init__.py,sha256=VrbOJwPlhb_wEeyCU0OcfiNde_SJqYmHwa1Qh2trHvE,60
|
|
2
|
+
iplotx/groups.py,sha256=PplZgemEEg7b285fwV--08yIIomRTgg0xxyvvHeoBp8,4289
|
|
3
|
+
iplotx/heuristics.py,sha256=bnfetQRxZA-Ii2V61XH7VYnvvG6DyKqiH2iOsA5la9o,3810
|
|
4
|
+
iplotx/importing.py,sha256=GCzbQ4X8BAk0Cv9Nue-B-3vHiCmGHmF6pVPIVRUhGI8,267
|
|
5
|
+
iplotx/network.py,sha256=jipKjV6NtVteUoqeSTRc1kfkmRfTT0L8uEPCLt_ipJ4,18070
|
|
6
|
+
iplotx/plotting.py,sha256=Isdvxb8tAGhWPNHiEC-KG9TQb5C1_5s_F9C7NGP-p5Y,3389
|
|
7
|
+
iplotx/styles.py,sha256=lHn-NRQ0CkG7dWe-J1wuGa-rH8ut4dqBa8rLGbqk1Ig,4679
|
|
8
|
+
iplotx/typing.py,sha256=0RrZqEKsC9rSnPQIKg-br1g2w5wDVpTzrlx04rKnN0Y,1304
|
|
9
|
+
iplotx/version.py,sha256=sXLh7g3KC4QCFxcZGBTpG2scR7hmmBsMjq6LqRptkRg,22
|
|
10
|
+
iplotx/vertex.py,sha256=qP6V9eAoC6zb9uD00sxUlIWnEPbMxLeQRJoiKVCubLU,3485
|
|
11
|
+
iplotx/edge/arrow.py,sha256=gUvTXVFG8e9G0qeztljqHVTZwYSCrhIDj0HGq3anenk,3876
|
|
12
|
+
iplotx/edge/common.py,sha256=62CCsA_1z9qhKIgSEbnfxzj9elKxPDv0REbLewKnnqo,1445
|
|
13
|
+
iplotx/edge/directed.py,sha256=zUU0vJApasNcvIApNGYy_x0NDnVyStgCKJn5J6U3tW4,5059
|
|
14
|
+
iplotx/edge/label.py,sha256=rutePN_WEIT8IR7FSRrvsoIJw2WoFWDSHCh0dmHeJTI,1407
|
|
15
|
+
iplotx/edge/undirected.py,sha256=LfDHqUP5zEBuf69lyOhUU_tk5ZGCJyw5xL3eZnTk7OU,14799
|
|
16
|
+
iplotx/utils/geometry.py,sha256=3HIsH_Nek_m41vL7twvgmDYfhlJURYd5TbMaa15nyt8,7804
|
|
17
|
+
iplotx/utils/matplotlib.py,sha256=I4Lw6vMPIgKMyqcR6RQBiRPKnmi5ko_GAtG04cT5XPw,3972
|
|
18
|
+
iplotx-0.0.1.dist-info/METADATA,sha256=xG3Y-FukA2CGxLHBB5t33kxnT56rbxlpDpsfvZQ-J1A,1932
|
|
19
|
+
iplotx-0.0.1.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
|
|
20
|
+
iplotx-0.0.1.dist-info/RECORD,,
|