Skip to main content

Easy Graph

Project description

Copyright (C) <2020-2022> by Mobile Systems and Networking Group, Fudan University

https://img.shields.io/pypi/v/Python-EasyGraph.svg https://img.shields.io/pypi/pyversions/Python-EasyGraph.svg https://img.shields.io/pypi/l/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 a better efficiency.

Install

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 install

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}
}

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 Distribution

Python-EasyGraph-0.2a46.tar.gz (249.3 kB view details)

Uploaded Source

Built Distributions

Python_EasyGraph-0.2a46-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (651.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a46-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (668.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a46-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (656.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a46-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (668.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a46-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (657.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a46-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (669.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a46-cp311-cp311-win_amd64.whl (535.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

Python_EasyGraph-0.2a46-cp310-cp310-win_amd64.whl (534.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

Python_EasyGraph-0.2a46-cp310-cp310-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

Python_EasyGraph-0.2a46-cp310-cp310-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a46-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (671.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a46-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (672.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a46-cp310-cp310-macosx_11_0_arm64.whl (558.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

Python_EasyGraph-0.2a46-cp310-cp310-macosx_10_14_x86_64.whl (630.8 kB view details)

Uploaded CPython 3.10 macOS 10.14+ x86-64

Python_EasyGraph-0.2a46-cp39-cp39-win_amd64.whl (532.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

Python_EasyGraph-0.2a46-cp39-cp39-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

Python_EasyGraph-0.2a46-cp39-cp39-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a46-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (672.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a46-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (672.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a46-cp39-cp39-macosx_13_0_x86_64.whl (633.8 kB view details)

Uploaded CPython 3.9 macOS 13.0+ x86-64

Python_EasyGraph-0.2a46-cp39-cp39-macosx_11_0_arm64.whl (559.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

Python_EasyGraph-0.2a46-cp38-cp38-win_amd64.whl (532.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

Python_EasyGraph-0.2a46-cp38-cp38-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

Python_EasyGraph-0.2a46-cp38-cp38-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a46-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (670.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a46-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (671.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a46-cp38-cp38-macosx_13_0_x86_64.whl (634.8 kB view details)

Uploaded CPython 3.8 macOS 13.0+ x86-64

Python_EasyGraph-0.2a46-cp38-cp38-macosx_11_0_arm64.whl (567.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

Python_EasyGraph-0.2a46-cp37-cp37m-win_amd64.whl (535.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

Python_EasyGraph-0.2a46-cp37-cp37m-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

Python_EasyGraph-0.2a46-cp37-cp37m-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a46-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (674.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a46-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (685.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a46-cp37-cp37m-macosx_13_0_x86_64.whl (639.0 kB view details)

Uploaded CPython 3.7m macOS 13.0+ x86-64

File details

Details for the file Python-EasyGraph-0.2a46.tar.gz.

File metadata

  • Download URL: Python-EasyGraph-0.2a46.tar.gz
  • Upload date:
  • Size: 249.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.11

File hashes

Hashes for Python-EasyGraph-0.2a46.tar.gz
Algorithm Hash digest
SHA256 b167668807dba21e60626450d7d9cf795d9671f90baf9fe212f8277cf741a8ca
MD5 ff25eca3619c16fb3fa5ae8144002cb1
BLAKE2b-256 5893a56e9ec86e108a69025463483b129ce1d10da7f64321711d1920c3c45f5b

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59325d5502e5c353ca41bcd739fb48256f3a7f8578e8bc9ea9736db2fe8bcd2d
MD5 cf573916e322d5934d41e748c34454c9
BLAKE2b-256 df89e7b1ff8f877e221e23376819b8fb2e4fcbe2a4cdbb988478c18de012049b

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 19553d5ff19077fa23e1667a51eaf3aa7f45999b6f41c1de4f2564ebe3a7baa0
MD5 e66e1c34e46c3a2d4e673bb31f8797e5
BLAKE2b-256 db3b0044d47a24ccfb8476954140259ecac4591f67442debcd8d582f11941d9d

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 960942bfd2415141685e1df93b10ed6a61212b2d464fc007ef973c350f8d8a05
MD5 82aa2852e38622e0ea351e9ae165ea64
BLAKE2b-256 3e0bd8d5591d7a054c46365f7d03821b1ed95e2bc50505743b994b0e43292b9b

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e8a4f1a5522fb98431574b7de570079da96d53692436e155a9d8476987bea0c8
MD5 855760f64bcdafa944e58b56a576b4a6
BLAKE2b-256 8bb5444b87e6286f37c8f1d517b26d3fe8433e3555c7171d3000a21df1295091

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6baefb377b659912d3d960b5952badd0f9f28f317513f1c6d89b9f8ef3218175
MD5 0bcedb8b78bd568075a119561b5314bc
BLAKE2b-256 960973764d5120b9d718f0a988f4e59add55ef1aaab5c6d189c5dc188c4272e8

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b40945784c5b4af3518978ed7481ef7b366b8de130fce99206742c6d9f018d29
MD5 a574c1825e9c8bb2db2a49f831c1667b
BLAKE2b-256 8995e30393b14e99ed51dd555beb0c358050d864b99e4229653e491dcc835b4c

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c73d5e4c8183888fec828a379cbb51dda1b44430116c9f4b25bf2f836fe48b43
MD5 55b964ff4807204e50d87e825f8b29b2
BLAKE2b-256 15158ba586d666635cd930d5f910560db8d1ae1a4ca2df6824ca2ec7116d7017

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9894d5f9a86161cc5824c59d2a3c5343461e19815051d6259f3cae689b27ea5b
MD5 66841478ae4c0095543ec3a430b0312d
BLAKE2b-256 94dfcd891c722dd6cc4c87fb1ebd2cf87f3b0c4eb5628b1d09c0b0b1b70ee123

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 295a929d943101e54697cb7a5d4836f62449060cd72c8ffdc50724b3937e4299
MD5 ca39716eeb8b65f442b811cc9b825cf6
BLAKE2b-256 3754379be2bc6d6f0de621ed146cbc7b521a0ffd5cb5532ea7598db4a14fddda

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 eec44ad0429c1b699e4c96778708c7ff466994c7153440dc6fd55f60782500dd
MD5 e4e12b69f8af54f7fd6a4f42438eab79
BLAKE2b-256 460dd5b7d7296f8140e139b6305c7b941a8c9707e63a2036ea4c1f9d6d5cae6f

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e606ca113c42618e00b55b61cadbfd44f6d94a76b4ea6d490faf312ff5399b5
MD5 e9a98b3f16466e5edb78cf17656cd017
BLAKE2b-256 e9e42a853fd9998e9a356e8cf022fe42dcd9d2dc5b4a76c1717142cf5b04b6ec

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e28b5453018f17da66fe371d5cc1ce4a05447ec83e24b8b8bc745af63a09eb4
MD5 2ae6b1853470e27a4707653fde2f6209
BLAKE2b-256 6948f634cd0f0e8de01cbf325898f59c872b408eb2d0ddc37236fdb254e99e37

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02454c118baf7e874b313a9e54f842c581d1114ece033eb63e4a153ce861413b
MD5 a9e0d09e79322d2e5e3094bbe7b85d50
BLAKE2b-256 3881f5fe7932dd2d15eaa597ed4b4a325baee076271c9ce352abcb0699d824c5

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 4b685ee3361622ecc5b60da870b70992b04f571610af6c9f4953b720f5a776ee
MD5 023a233930bfcb609d71dea5cfec0170
BLAKE2b-256 d90eae5577a25fbdf5e822b2320e2ba52a82684d60918a8c1ae6e63dc42b1191

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a09210351b46877acd856caead37a395234d443ccf6b736825cd0cab160ec4cf
MD5 ec0f784bbd363aca870bedaad38595e1
BLAKE2b-256 6b0ee1250f932f96c2e41cb8f3d41ae8456c24a7c4cc36bded061475a965bdd0

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5796235d40645e9019538d7c4f430aaf5add165d7a787b746aa4c40c72c78a5d
MD5 d07acda9751f9074031db03e95b53932
BLAKE2b-256 4a3943e4dcee9d889185a86a6d91915f478327fd52551c7d15c8059e0f09a5ee

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6311c9dd3779bed0ef9e34c251ab5cc0ac420c7298fa847c9b254c63e6007011
MD5 220868db8481d51bb9b9430e2373483b
BLAKE2b-256 33f20198ad21caac9921c8f43f97d56a1992e0410704486544b5c6ec8e38b85b

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a579afcf0a33ae688d590f23c6d15da63ff9052298da7c64de3e7823ab7e5b74
MD5 303daff4a0e5a303645d037f541b19f6
BLAKE2b-256 cb2eb286d3cfc32d7e15b0dd2dfe071553246e6d0c0b89073451579175e616ab

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cd25a2b4b7260d657b42f7e50f22203953275316a1b0503096732daaa991d652
MD5 c4f3ce06c62d1e84ffd8c1627512182f
BLAKE2b-256 823228370646bcbdbacc77658680c31b87453bdecdd8adcc0c803c7cd355e620

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 8fd326c262bf52e1154c029e91097cdd6e562629f4815689a6715ba26a58b6db
MD5 41c9dd693588a448850432d6c92ca688
BLAKE2b-256 207945229178ea5464830a5dd086bef3eb876c58a68d87117bee994af36b5f49

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b794b74c4d6beae9181860b14a99088115284f47086e7c20c2b9b2aae2dbd83
MD5 f8879bf936c477e1baf5a9b7ad94b491
BLAKE2b-256 d6f177d189d83517d819c1f3bb7c320345055b1cd983da488c21f3382a051d86

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1294440912c939eeff9382f24149cdead214f2a6cde2bfcd4e8d2511cbd13e05
MD5 1fb4c87b8bbaae837937b5e0bcbd5940
BLAKE2b-256 7c132aca25192fd4fcf27ed95aa2eab66e287caddf85c39760b27c5131528dbc

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1900ace5ed102e7c0eada39326c15d397e45c3c159eaf12c3a3ba41d8869eb5a
MD5 cd92ad2208b24acd690261bdc0b2d755
BLAKE2b-256 7ac2865107a3b5df8c2b6b802c3931671dc3f7286854bc27c7dac8b2a01ad6a1

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 282e591ce78070ccaae8fd02c92f7178ccd4a02f69435ed4680398aab463291c
MD5 956658ebeadb69ee5669d8e50b8e1698
BLAKE2b-256 091d67b3f64b0e8ed20057107e3cd379ca9b64e275ffe490ddb525e5481990f0

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8f252d1962b23002842f776e438796e51bc4b43156716d06087cc9d00e8d51a
MD5 543c58d752fbb8765b7442269f89674d
BLAKE2b-256 a9d611567270c347d76b7bf45bd75b484612928e9d7cba96ad33986800d55940

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24f65ef9a2bde1c6d978c212049ce5b4412cec0e5c635e47030bec144c26812c
MD5 4982905ef5e464a30fb323f3255a3589
BLAKE2b-256 0e77b8d4a5625f810c3c38416dddae1e4851f5627331500fe78ab37b326f96e4

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp38-cp38-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp38-cp38-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 22e47d5c354c6a76ffd9895c601af234022291c94d172405ba332a7527e9c118
MD5 88f35e829843a4aa9d8cf9f4b62490ba
BLAKE2b-256 edb4b0323ce18b6c8d1ddfc220293dbf819a9ba872ee5e573ad6eac5e79e3bef

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78f5690f95b6f3860f39935b6b1b7272e9a5f4637b971b7f702ec11350dd1445
MD5 cc7ec32445dfb8fa00c0f6556abfca86
BLAKE2b-256 7932a819a60fb92b665d448cdce3e7f3046fa376078f6baf67d03daf8716b737

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d7e19bbab29413a72e778fe6bc3931438d0f59a302a526d114162522b283e098
MD5 7a0e391934bba7fcad9bff1d570d4e51
BLAKE2b-256 c899648b18602c7cd3420282bca3058332a7cba0f3e04408f00bca8c5c3e221b

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 54facf233f5f66feed4b054d7800590758672169ecf9a53235395ad3aae45fe5
MD5 f23b7c080f56f1f8a72d2914bedb0977
BLAKE2b-256 4c914732b081f7b3d59cc59ee62fdf9680f2719553edf8095d53f16838a2b526

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 83d294b39c1b0ce915b9741652d640b72f48791f15d78bffa30a3f19ea347cc5
MD5 8b9f6ce420850a4046427b40fc177cb9
BLAKE2b-256 78e43846407a878b353626443527db54fc782774aa7704198f65ad8de57dbb66

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2db35d60dc912534dfbe30a13a109786a21be99d37f71172d5c9fad48cfde94
MD5 fa0a56c42ab1e81fad2221316eacc86c
BLAKE2b-256 31575df458e3236b23766157577d420e30e6d016abb54b17c187fa6226c7e38c

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 835bb49fb849939702b5efa900ecd5be5bdef6fb4b184d330e95b545f0dd8545
MD5 6e372f6c1f0dd500c7f24fdc2441c425
BLAKE2b-256 b77344591dd64112819e388ef80c32ff522ce428d3bc9ba66855c31bf8867cf3

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a46-cp37-cp37m-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a46-cp37-cp37m-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 f01b8fd7fa8c387f0fd3b32f49d9e14ec4c30030df4e92eb2bd79a70219c4680
MD5 b17f053017a1b2ad9cf1758c6c885d01
BLAKE2b-256 fbbf983b2edab641a5aef66e4cf4a81a717246a8d4e3fd0cbb2c5b3059781859

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page