Easy Graph
Project description
Copyright (C) <2020-2023> by DataNET Group, Fudan University
Documentation: https://easy-graph.github.io/
Source Code: https://github.com/easy-graph/Easy-Graph
Issue Tracker: https://github.com/easy-graph/Easy-Graph/issues
PyPI Homepage: https://pypi.org/project/Python-EasyGraph/
Youtube channel: https://www.youtube.com/@python-easygraph
Introduction
EasyGraph is an open-source graph processing library. It is mainly written in Python and supports analysis for undirected graphs and directed graphs. EasyGraph supports various formats of graph data and covers a series of important graph mining algorithms for community detection, structural hole spanner detection, graph embedding, and motif detection. Moreover, EasyGraph implements some key elements using C++ and introduces multiprocessing optimization to achieve better efficiency.
News
Install
Prerequisites
3.9 <= Python <= 3.10 is required.
Installation with pip
$ pip install --upgrade Python-EasyGraph
The conda package is no longer updated or maintained.
If you’ve installed EasyGraph this way before, please uninstall it with conda and install it with pip.
If prebuilt EasyGraph wheels are not supported for your platform (OS / CPU arch, check here), you can build it locally this way:
git clone https://github.com/easy-graph/Easy-Graph && cd Easy-Graph && git checkout pybind11
pip install pybind11
python3 setup.py build_ext
python3 setup.py install
Hint
EasyGraph uses 1.12.1 <= PyTorch < 2.0 for machine learning functions. Note that this does not prevent your from running non-machine learning functions normally, if there is no PyTorch in your environment. But you will receive some warnings which remind you some unavailable modules when they depend on it.
Simple Example
This example shows the general usage of methods in EasyGraph.
>>> import easygraph as eg
>>> G = eg.Graph()
>>> G.add_edges([(1,2), (2,3), (1,3), (3,4), (4,5), (3,5), (5,6)])
>>> eg.pagerank(G)
{1: 0.14272233049003707, 2: 0.14272233049003694, 3: 0.2685427766200994, 4: 0.14336430577918527, 5: 0.21634929087322705, 6: 0.0862989657474143}
This is a simple example for the detection of structural hole spanners using the HIS algorithm.
>>> import easygraph as eg
>>> G = eg.Graph()
>>> G.add_edges([(1,2), (2,3), (1,3), (3,4), (4,5), (3,5), (5,6)])
>>> _, _, H = eg.get_structural_holes_HIS(G, C=[frozenset([1,2,3]), frozenset([4,5,6])])
>>> H # The structural hole score of each node. Note that node `4` is regarded as the most possible structural hole spanner.
{1: {0: 0.703948974609375},
2: {0: 0.703948974609375},
3: {0: 1.2799804687499998},
4: {0: 1.519976806640625},
5: {0: 1.519976806640625},
6: {0: 0.83595703125}
}
Citation
If you use EasyGraph in a scientific publication, we would appreciate citations to the following paper:
@article{gao2023easygraph,
title={{EasyGraph: A Multifunctional, Cross-Platform, and Effective Library for Interdisciplinary Network Analysis}},
author={Min Gao and Zheng Li and Ruichen Li and Chenhao Cui and Xinyuan Chen and Bodian Ye and Yupeng Li and Weiwei Gu and Qingyuan Gong and Xin Wang and Yang Chen},
year={2023},
journal={Patterns}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
File details
Details for the file Python_EasyGraph-1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 718.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd238bd2e91bd37581db34dba2eb760bc431dd49259a6a581897627bdc0cc2e4 |
|
MD5 | 3f9bb46ef51c4039041aaf659bf512ba |
|
BLAKE2b-256 | 168a087f660b4582268f9fbf8ae3b958b9a6a72e201d86b2d5552f7104d0bf97 |
File details
Details for the file Python_EasyGraph-1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 733.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a845cbf1a5a8ac685ce47ec332eeff89d7db500050c035deb453d286895f45d |
|
MD5 | eb2e13db41c44a974a3321594cf9e7ea |
|
BLAKE2b-256 | b1fc12b7955abfe72229d3718f653696f2d0fc5d59d3bee7513aa860e6669fc1 |
File details
Details for the file Python_EasyGraph-1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 716.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2d8d0e637e142db19a48d895186db4b397ea33d0eeb847e0c610e9ec989485d |
|
MD5 | 81b9fc8afd745dce51c0666bb468b298 |
|
BLAKE2b-256 | b02611cb9d46b9ac86672dcbee87f73040b22376c7b039402c41abb9f47b0867 |
File details
Details for the file Python_EasyGraph-1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 732.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | afc80b25fdb529698e12faa7b759f8cf53885ab113f335256905f9eb958a90fd |
|
MD5 | 3f9e17280e2f5c2e59905e4b0fa7b894 |
|
BLAKE2b-256 | 29a1bc28b2d380c3b020a7601f5c0f1c2d058af874ca3a3db68131e8b7bc742d |
File details
Details for the file Python_EasyGraph-1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 721.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c17c8f9afc5f10817b963d7272fb7371e6a491a1eee733ba5c7b9b76eb9ad62f |
|
MD5 | 030833903a4a08c346bad07ffd55e217 |
|
BLAKE2b-256 | 6003cf104f99d6766bc9a5987ba9a3a1779497e0da94c967493f010fdba670d6 |
File details
Details for the file Python_EasyGraph-1.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 736.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b75d8e12511efb9d3a2cd842e6f01b62e0d2bc8d4b1afa45980327b60f6be509 |
|
MD5 | 7b54f08f79dbd883f22a051a8c5e51bf |
|
BLAKE2b-256 | 4cb0f2112998aab71cfb5566b325418f3dfb49c9567d2847204eff20007ec9d4 |
File details
Details for the file Python_EasyGraph-1.0-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 587.1 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7826cc51120a191785b034469457b85eac867bc3f0f46f0d2af7804a92bbd11e |
|
MD5 | d21af8d91b5621a2fcc4bd55e866bdac |
|
BLAKE2b-256 | b3fb26e7b1b31c712680b04672267cd08972bb2875dbe14f16747bd2f9f2d3c2 |
File details
Details for the file Python_EasyGraph-1.0-cp311-cp311-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e8686a20690256b0aaa04c7429df3ffddb6b36f775d212aa0847a4ca094605c |
|
MD5 | 10dafb84b6bbfaf940cc7dff5e8e4651 |
|
BLAKE2b-256 | 1471c0e4c45c2cae6f45a9e408f1e0876397f02c470eb2cc6d2fa9b8c99d2ebc |
File details
Details for the file Python_EasyGraph-1.0-cp311-cp311-musllinux_1_1_i686.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp311-cp311-musllinux_1_1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83e07392ad068f6552d40fd924d8c0b8b0c28179eb7ebba3688f186cd17a38f7 |
|
MD5 | 53d154cec079ee654ac91b8fb5f4c52d |
|
BLAKE2b-256 | 8ee0dba7aaee95098a3fae7c565708f2b017412af40437d983e69f588d0db4b4 |
File details
Details for the file Python_EasyGraph-1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 737.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a15c53dfd517eaed3f6da4753a44a867a2eec408faa58d6964884dc8a7fe1679 |
|
MD5 | 5211cb69cb31d9479db3270463df9693 |
|
BLAKE2b-256 | 03852763689af177eb0d5fab3cae1287db47ea592fd2bd7ea88419268ef05b29 |
File details
Details for the file Python_EasyGraph-1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 736.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6979c3eda585fe4e208735c42597f26c39ef6f9798dd0a83d2b00447506b7127 |
|
MD5 | a821d60e85128c50452e0bcc9d4d2951 |
|
BLAKE2b-256 | e87ff141b420a9629d1d82f74a2fadc71af748a47a04c8ef30f21082f42b1862 |
File details
Details for the file Python_EasyGraph-1.0-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 600.4 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0dcf8d2025d9926a230833c45b580ef30c57ac7ce6ddb1fbab5671f8e6ce6524 |
|
MD5 | 80fb4d4e82bf8ec46b2cc82c2e6b6122 |
|
BLAKE2b-256 | 0c20617fd858e2d4135c321d5f6ff81de08bb186b12b254241fa52f8cd42ce82 |
File details
Details for the file Python_EasyGraph-1.0-cp311-cp311-macosx_10_14_universal2.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp311-cp311-macosx_10_14_universal2.whl
- Upload date:
- Size: 914.9 kB
- Tags: CPython 3.11, macOS 10.14+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d0116c41165420aeee823d543410b329103e43b2a83d96fcfaad5a07f5bfea5 |
|
MD5 | 0eb80d0ea52a353c666823780a6cd3b3 |
|
BLAKE2b-256 | 7fe183f002929f21b91fd3220df13c101d4836d0480a60732ca69b90128745ba |
File details
Details for the file Python_EasyGraph-1.0-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 585.8 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de47cc6f359d7b281ed5fc8bf029c696603f8cb91c67c935d9448c7a55967564 |
|
MD5 | 727500cf180aad2c8abacca19cff8f4a |
|
BLAKE2b-256 | ac39cc2a0fbf5433b93fb29ac9a63c858b4ef6b9528ce378ff35c73fa12c3d76 |
File details
Details for the file Python_EasyGraph-1.0-cp310-cp310-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 570843ae9b91b15b3053f2e76a1cc860d7340fede5fde64ee7a2c9da6ed1058e |
|
MD5 | 9d4be297e6707f7b4ddd98a7fb67de2d |
|
BLAKE2b-256 | b1f807bc0bac765b3e74ed4456740bc6dee53107fe560ac3cc918a53950251cf |
File details
Details for the file Python_EasyGraph-1.0-cp310-cp310-musllinux_1_1_i686.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp310-cp310-musllinux_1_1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e41f61443492ce286e6c782ea37398995d536fff19bb42760901e5bffff36e2 |
|
MD5 | d83a5b6b9eaa44947c9c50e7d6f1d104 |
|
BLAKE2b-256 | c6b83bfe663a8f7fb2e4489c0482127a51b5f8208dd5fe525f706c07359150ce |
File details
Details for the file Python_EasyGraph-1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 736.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8587fe75679e16aa7ffda768e2887e994f4eefdc8df6a4b49e538c47d96ffdb8 |
|
MD5 | a76ce2857d36117f2135e6ffebc92119 |
|
BLAKE2b-256 | 314210dd0842fcb5860dbd2b7c20fd02630f1b4c7ace3a69c9379a3c72cce5b4 |
File details
Details for the file Python_EasyGraph-1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 736.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 37646ecaf2b372c1a7b97fb9de2b4fea1fde79c11ec921a39342dd769b25625d |
|
MD5 | 09fbc393a8b9ceedebe9565c4e0999c5 |
|
BLAKE2b-256 | 5989d6054c01476d6ecd4090cbf22842acaa958421f2a06c869d539acbf72733 |
File details
Details for the file Python_EasyGraph-1.0-cp310-cp310-macosx_11_0_x86_64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp310-cp310-macosx_11_0_x86_64.whl
- Upload date:
- Size: 646.7 kB
- Tags: CPython 3.10, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4a2eefa544ce8073c64ef5fb4c4ed2dc8fdd1afc98bbc8d8ba1db1b66947949 |
|
MD5 | 33103a59ac3bb74aaef638c7627b49b0 |
|
BLAKE2b-256 | b4620b54d96a55f24205c50dc7f2c08f7faf5e697fd8fdb63a253f836e7df7af |
File details
Details for the file Python_EasyGraph-1.0-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 599.2 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d9b1d34dc869cae887a56143146f7291e38297651fba7a09dbe3b5c06b0a7d3 |
|
MD5 | a23dec2595a60206125ae6c4f0b1be00 |
|
BLAKE2b-256 | 587fbb556969e743dc3fdaed9387c3f1e6f72189378d2532f3776bfb6cd78c9e |
File details
Details for the file Python_EasyGraph-1.0-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 584.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ed417fbe2ca374a3f62c2fc771fcbe3b4b437b249ee80f493a5ea7cacd21c82 |
|
MD5 | 206d86edf174413bfc549e0cb92a1927 |
|
BLAKE2b-256 | ff4724cd197e0be96dd76a147b651ca48326ac06761c6308bfc08ba2318ecb23 |
File details
Details for the file Python_EasyGraph-1.0-cp39-cp39-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | af0a85f81461088cf1c1247971e18e5cb72cce9c44620462ea5cce2ed153e9bd |
|
MD5 | 0e592ee33ad45ffae60bce4330528583 |
|
BLAKE2b-256 | c11db65188822b21357f8c75a26c214fe9e911226a8eb24e5423cfe61ec2051b |
File details
Details for the file Python_EasyGraph-1.0-cp39-cp39-musllinux_1_1_i686.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp39-cp39-musllinux_1_1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a56361f2219a8804312cb553832b586f7ba47dfef64b2593804ec71406ceccb7 |
|
MD5 | 5641bead4670c9af788ef641a2c418e0 |
|
BLAKE2b-256 | 8b640f29b45f3ae47b83a9e71dacbc852ad4f6e85c6951b1f61f480b9eddc72b |
File details
Details for the file Python_EasyGraph-1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 736.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 77b3eb8fdbbdc09a95f9016bed9710a1a96357788d6817a902527e3d822e3faf |
|
MD5 | 6bc908df4050d2ebbadf8ff0ee421123 |
|
BLAKE2b-256 | e9dc00f4b11c7caebb38a26f41febf9d9d7fb0b469b2f8c7cfb3aeaef27093ce |
File details
Details for the file Python_EasyGraph-1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 736.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0623b233d28d8662c63695c97677d24506350829b255ed492dee04ddfcbe44a1 |
|
MD5 | d84c2596e211cecdb1612054445d6329 |
|
BLAKE2b-256 | 5aa357d5d96e118b6f2e6ac0de7edd25267256ec275a76b17cb130dd952107f9 |
File details
Details for the file Python_EasyGraph-1.0-cp39-cp39-macosx_11_0_x86_64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp39-cp39-macosx_11_0_x86_64.whl
- Upload date:
- Size: 646.9 kB
- Tags: CPython 3.9, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7dbdc91b819c867468e4839c4e2e23d8a7f4e8a213dd2f390785e395144def48 |
|
MD5 | 99f63955f804f613956d7c38e7539ee8 |
|
BLAKE2b-256 | 7931ba80473fa3ce62b0a6e8c283ae0939979e562b5941cead6fa7fe98f77db8 |
File details
Details for the file Python_EasyGraph-1.0-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 612.5 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9ec55ad773ed4e148d8c147ae8dabae667fa5bc95f4958dbe62ba2d0a97d30b |
|
MD5 | a4e017bf67e8aa96f12f85483521e0b2 |
|
BLAKE2b-256 | e152ec3c81059e9b8737071eabee1ac9731ab5b144af2abd441a1088869397d4 |
File details
Details for the file Python_EasyGraph-1.0-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 585.8 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a6522bcb6a37677d5c6dbf2abed1e4fbce504464e44f18d99ced23c233a03bb0 |
|
MD5 | 47cfd228a779f36cc9857fe5e1759b8e |
|
BLAKE2b-256 | 5dcd4b51fe44871e82fafb8ea03b5ec5063b1e582a02607416abb76ff15c89b6 |
File details
Details for the file Python_EasyGraph-1.0-cp38-cp38-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97ddfbf9074bf14318c935e62c48e4f118f045c8827022c55d88d28eedbb263f |
|
MD5 | fa4b346b2d2746040b2025f631f33122 |
|
BLAKE2b-256 | a0418f2b1db00f641741eb0aad1ae95043f863c1bd457c291e02ec1ba56f3b2b |
File details
Details for the file Python_EasyGraph-1.0-cp38-cp38-musllinux_1_1_i686.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp38-cp38-musllinux_1_1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52a5e0152e60e16497ebb5e176432091a3b06ee0df3b76bf00e58ca021f188b9 |
|
MD5 | 80de941950bc33de562e079744a659d6 |
|
BLAKE2b-256 | 736ac429e78ab31ad88372080eaf325eb24e454bb665c22a407b8e17dc679040 |
File details
Details for the file Python_EasyGraph-1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 736.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0208e21ff8b27c116fe939d2b5f930324d79075dc8c3eb3964b209ed58ba2ca9 |
|
MD5 | 56b08c9add212c7acf5413aa3b99574e |
|
BLAKE2b-256 | ab2778def5747971b983b5130a8bc660b4cda119983a410a09fb9e4ebc809fe1 |
File details
Details for the file Python_EasyGraph-1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 735.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cacc7f413f836ebc29f7a7060a9921d2b21cd436e9d3e45937f338b2e08b21e1 |
|
MD5 | d94a30884b53393595cf2ac00c9c97ba |
|
BLAKE2b-256 | fb85681bdcc4534d4398f2d64bde2214e32a895401b549689a605c473a75cc9a |
File details
Details for the file Python_EasyGraph-1.0-cp38-cp38-macosx_11_0_x86_64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp38-cp38-macosx_11_0_x86_64.whl
- Upload date:
- Size: 646.7 kB
- Tags: CPython 3.8, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9793d33c4ec30a8fe60a12042ec1105df60dad66964f8db7433f2bb9501086e |
|
MD5 | e577cd62004fa623a25c7d0c99049613 |
|
BLAKE2b-256 | 48312e3323b4820189377e4d8795706e3189dc9d371db2958f2b3c968ff1d66b |
File details
Details for the file Python_EasyGraph-1.0-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: Python_EasyGraph-1.0-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 620.7 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b488a7aa072d837eefcc5eeae6e197ce22e3824374fefe4ce65709fd51630e3 |
|
MD5 | 4dcd2c4a9cd9b21250507b5f271f32e1 |
|
BLAKE2b-256 | 7fa822ca51ea166c7fca754d98f6dcddf1c6414fb496ecb77096ff34ea05c30e |