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.2a41.tar.gz (246.3 kB view details)

Uploaded Source

Built Distributions

Python_EasyGraph-0.2a41-pp39-pypy39_pp73-win_amd64.whl (503.1 kB view details)

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a41-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (611.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a41-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (626.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a41-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (548.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Python_EasyGraph-0.2a41-pp38-pypy38_pp73-win_amd64.whl (503.1 kB view details)

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a41-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (617.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a41-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (628.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a41-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (548.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Python_EasyGraph-0.2a41-pp37-pypy37_pp73-win_amd64.whl (503.1 kB view details)

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a41-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (618.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a41-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (628.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a41-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (548.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Python_EasyGraph-0.2a41-cp310-cp310-win_amd64.whl (503.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

Python_EasyGraph-0.2a41-cp310-cp310-win32.whl (470.8 kB view details)

Uploaded CPython 3.10 Windows x86

Python_EasyGraph-0.2a41-cp310-cp310-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a41-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (626.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a41-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (630.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a41-cp310-cp310-macosx_10_9_x86_64.whl (558.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

Python_EasyGraph-0.2a41-cp39-cp39-win_amd64.whl (502.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

Python_EasyGraph-0.2a41-cp39-cp39-win32.whl (471.0 kB view details)

Uploaded CPython 3.9 Windows x86

Python_EasyGraph-0.2a41-cp39-cp39-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a41-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a41-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (629.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a41-cp39-cp39-macosx_10_9_x86_64.whl (558.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

Python_EasyGraph-0.2a41-cp38-cp38-win_amd64.whl (503.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

Python_EasyGraph-0.2a41-cp38-cp38-win32.whl (470.8 kB view details)

Uploaded CPython 3.8 Windows x86

Python_EasyGraph-0.2a41-cp38-cp38-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a41-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a41-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (629.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a41-cp38-cp38-macosx_10_9_x86_64.whl (557.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

Python_EasyGraph-0.2a41-cp37-cp37m-win_amd64.whl (504.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

Python_EasyGraph-0.2a41-cp37-cp37m-win32.whl (477.0 kB view details)

Uploaded CPython 3.7m Windows x86

Python_EasyGraph-0.2a41-cp37-cp37m-musllinux_1_1_x86_64.whl (1.1 MB view details)

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

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

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a41-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.4 kB view details)

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

Python_EasyGraph-0.2a41-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (641.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a41-cp37-cp37m-macosx_10_9_x86_64.whl (548.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: Python-EasyGraph-0.2a41.tar.gz
  • Upload date:
  • Size: 246.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for Python-EasyGraph-0.2a41.tar.gz
Algorithm Hash digest
SHA256 f8779408b0b160963a6c19cf17f843de50b197d4f278392e0866b4cf7c8fc1e5
MD5 92d0eff648852d30e71d9c039207546e
BLAKE2b-256 29b9ee2075a844845142f4b519e1d0d715b83ad7ee8b44e665ea8c2aed3b664e

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a41-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b1be7a8642a02112d15b418c145f1ee27189d4885bf67cf26d5d7c73ee4a817f
MD5 b3ccfa089129e49ae00e39e5769114c1
BLAKE2b-256 cc364865c348f562a2697467a2bb0a45e623b62be1377b167ba3c347ec2ca68e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62d30ad421e19faee735e9e83f07d98e5f1d0dac18f942add605bd8f342db985
MD5 47c88e3cf906b224da666297abde4242
BLAKE2b-256 942bcf0d9196e3da4fc392f14b4e3912150d440f55404e2241ebc95aa0ebc0eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 234c495a9ce0560386dd20df5519de346e52fb804460164f373dfc819d0c2f56
MD5 ead82253ce07d5b283a325ba78bd4faa
BLAKE2b-256 cd5d75f2bed26f2dc759cc061a734808a173ba09929774b6637390e62c6eeab9

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a41-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb8c57bd63087301ddf3bd3c10150edb0cd4f59207c9c3ec0a2343c78623ce01
MD5 aa8e2516ce56a1bc79fa4f0ef2d9cb02
BLAKE2b-256 6ee47555ddd4344db8928a25c18bcfc6c3d73df5d35d1490b17714d1e6891723

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a41-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 95852e8de2950070808a46596826f1a04fbdf40f31a81c5018ad747783b7b1a2
MD5 b670badd30e20d16f98492d63c51a203
BLAKE2b-256 cc9b9d2178caf52768c2796252e481a62e20673ac44dfc1486979aa69444db91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3102fcf464c0809a23e834b9323fbd65294e786c45988d02b84eb4245cbfbf7b
MD5 1c5fb556a584e1b49484a92a67901d45
BLAKE2b-256 52b7dfc8bb25cd65144e5af00dc99e9bcef7b7e313b4fa32fedd499e0f909d95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3781f6916b3992cf60ffbf355f3f4aec649668f9c227fd77d24a41803cbb9240
MD5 fbb30bc57117c9154523c74b583f8b5a
BLAKE2b-256 9c63decedf16b255817f87cd5a2eaebdd28a0a32fe3c9cd996d46af22c783942

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a41-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d5be03a64daff5fe94626cd4cb75adee92604606ccd61904df9dcd0468aae9c
MD5 69072ded16a2cfe73348bac1b5f76647
BLAKE2b-256 db7ad4ab061d146329a091153547ef02408d12104ccd98067465eca8fe98b597

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a41-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 42b8336b84cdf816a294150a72e7613cb7e020c12c0f2244ab02de52a2bdb56d
MD5 ee1f7d0c944f56eda86ae5f9fc3659c0
BLAKE2b-256 639bc512f3e53032a35ba8ed7e26cf425076a8fa6f321841993974a87725f465

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71b86eda4aba6aa8c0f77923d864d3830590a55e27f7a90ebaa69d444e28033a
MD5 160f0f2149e3e3a19c14710c5e337034
BLAKE2b-256 c40a27576cea1cf86d24de6954dfaf8de81f3ab809ebe1da61bcaad1f0128fb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 013644acd90efe932dc529e95c02421ca28a157dba7f7d3f5a1556b70c8fea08
MD5 fba7ffcaa00bd097d16b7b3be740653b
BLAKE2b-256 b7975a9aa90ae17ba16f00cf10fe60829c6950b50c00c35315401b927cb78934

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a41-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da139d390a39e7cc2d256920bc618af7b276e1dcc94a60bf362da67a35dab30b
MD5 d267cc20aead41931943c4f6fde2f7c4
BLAKE2b-256 b81778ceba11285baf335585dbec6d58a4e341cca96e26ade8032e4fd8178b84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 36c53c3ca7196712165a3fb17d0411fc14ddbeb7cdb9cd9f7b823abec0afb1bc
MD5 f0965048502ec5b41fd1ed9ed05b002b
BLAKE2b-256 252b965c1b416651ed3d6121e4bacc10af86f318f3c76f9b87c46c6ad7d574af

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a41-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 586a255ccac1d162b81f5ebeb03093c36dee66433d210c8cf8e7212583445b0c
MD5 a0a2ab58068c00bf8fcfdab1944a982e
BLAKE2b-256 aeb3ac3ac5ebad49c809b9968bc9144a95147433f21bdd9a9ce1e85dd28ac721

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a680a3d12b8c746aa9d42fc5b7f4ca01d7e0677c9a282d73ff2e15b20e396ef4
MD5 d2802df06ca83966d0beb168f4632121
BLAKE2b-256 4774416b8d77109d5ddd8d59ace0e1a9ae6af0d4f81871250d9de3e93ca69c33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 856f24438fec7c9e1dac008840a12873a5232e20e58bdd14ebfeffdae4b0817e
MD5 62e6567ae2ba80ef89459fb573149eea
BLAKE2b-256 1959a399ee451dfde8ce3f5936e2a196095df1c5a041342f08e7ed3bccc2354d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7ef3d91f1ef37074685ab6f8c99ba930db1257941a0ea2a19970176560e806e
MD5 69dc994de38b0bb07ac2e6a518886776
BLAKE2b-256 820c340e4aee026d214194be1faf824cb0974715fd57a4be97efa9c157c87e42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3b06b0dded5d46e4ef489bba13de47535add5a647b5b01e0c0ec8bd84cad201d
MD5 c1fe869d042880a95faf5aea20385d35
BLAKE2b-256 993b1595761e152d34d4ccd3b1389709a6ae907addf9284e62fcbc57930c0223

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a41-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c8b18a194d26ef8d0af5ce7304955186e2f844404dbbdc0d175cf77c1aaba679
MD5 c423a9e61cefd05fc7870d19f3964706
BLAKE2b-256 18b9e4513ed7bdb0aa196a18ae51254702be45f85cd0117b56e6103fc436b9c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3790cac9acd0d01474365a1f016420dfa7da13ab9f6049bd01f2cd29ceed59d8
MD5 eb3ea46471cd0b169b200712ca5bcc1a
BLAKE2b-256 af536d6c392407a56e5b52d448eeed6d96b54c71f225c03b2e07756c6281daff

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a41-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0d8e2b7de05844279d941d7067e7853bfac4b07f7aac397dc9e1748bd4567672
MD5 e5b27bdc6acf7c43df71ccb67d0869ee
BLAKE2b-256 e2945e57cadc8fb69dc70cfa4330770ce20434466f90bc70c47be342429d9fdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3d9677edc46b1939b669b53ededf21dd19986d740748ded6d176d7d4377dcfd9
MD5 6e7750ec29fe5fb94ada323448012589
BLAKE2b-256 b1c7927b27beab7f27a0939c730835d1d578ef56d990df4b025e4ca7513107af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fc885525044418a1d146c06fb6bf92113d89054944985281a4999dd0ff8f4b2e
MD5 1232803dba4d6a05ba73311155507ea0
BLAKE2b-256 740662c10d86b074796d2529aa15e83695e2fdd29b2597433830de493f8843ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51fd87c373dddcd90cc30e3e10e3197f79b1f3488b2fb04bb2399e4836a39029
MD5 cc125f7bc041a01cb9a3171bdf8388cc
BLAKE2b-256 88bc53ac9d46d97a08c2a166301913e481ffd1afd924549da805274669e2e01f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7dc820f78a843e0e03eb624821ab64ec89b3f003b62691e7d2dc77a120d09918
MD5 93cffd097ef3c61b8944994e076f9dc9
BLAKE2b-256 0ad9a69a378af5dc76dfe3a0fb614411e29d8d2396dbaabd70c6b6da54746f85

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a41-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c6ef5dba14cda9837f4ed855d3442d7efc7175671936be2d05467c389dcc8f6
MD5 90747d72373b7c592ba87b5dd34fa0d6
BLAKE2b-256 31f2ae689a2094697dbfb766ca17c3c3c4cd83f379d6f57034ad3b127df620f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 32b5291cc336fab1ebfed6720d8d389614f6d7d59a122343e934445e0b2e37ef
MD5 36d36deb32dd903cf503dae19adda41f
BLAKE2b-256 9036d595cfc5821df6b63233ed7331d57f02d8e6031bf4c72542f2fe7f5ea275

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a41-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 40d636ed2d916a72b389de6cb6c55cb3bfb88ace32c318531490be21570b4048
MD5 3183d89107d22396435bbfbf0ac2110b
BLAKE2b-256 2d0fee5f84ece40e112b7d942814eaa62479d7a934a02ba71042f9afeaf5d28e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7976f95236e7ff4981df4635ac7a49caa8f23df665f7c185e5d25be13c85ee88
MD5 08094dae98f86f6df6dce3996359adc4
BLAKE2b-256 dc58bbb8b85e1aac872c46e81bb26895328adca2c91fb39fde4314e516813aa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a6efbbb7d8823007a29903d608299b6824fffb8e116349b925f0f78423702aae
MD5 7b98c24cfd91f0153848c2f76538496c
BLAKE2b-256 8044ba8aea3c4ed6dcfd6c8c634dd6077500b9a830bd2f52742e9181bd55d175

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee5709be1f007d49d6f30ef0818c07c8f694af513dd042de525bfbbf09f44be2
MD5 ef1a06122b2e1038aa602f914a22f10a
BLAKE2b-256 1e9da87f789640cf99d29a07f81702d7cfc9eef9c19f3776313339f7189e8556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b1d44d6af6f9715965738fdb8f0c34312352fd1951b95a6fdbe7cdd168a204b
MD5 6126b6e0d7790a0c84b85b602945b094
BLAKE2b-256 adc0a42c3d4b3cdb29580ecda1d3aad2fdc15aab29509736548e5dc64305bf3d

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a41-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d2b7f223ad07205362e455769457f8d65841c5336b9b02376c795f50948583b6
MD5 0eff32bfbd2b8c13b9ac6ed15e07d675
BLAKE2b-256 8a6ff3c4f07b973134b2894ba3502ffb0a91b5a07f5d4562f033ae1491fab4f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fe9c8fd801f0d4b34af3c6223c284b03a231a74ab108cfdc9847dfb0f1d29b49
MD5 e7469c2867fbac765d4ca09bfb6df089
BLAKE2b-256 0d5cb70c12b5ff8e5053d2b4dab1f600a7a476960791ce1f6e4f7b7b9f1747f6

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a41-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ae70c709866e825d5a1ac034b9a1b272ceb8525bd1e200612eca7eed8dbad88c
MD5 fdc1a8c8a8d4bab0afcb0c636d0edef3
BLAKE2b-256 9d2b5f30ee7c6541ec1643b94da83edc2c3135d3d8c96c3c1472ff231e15b173

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 755a3039e6b4ee9438416018c1e43fbc1e32872a7097dee50aa03a85fbc04551
MD5 7e8079efd902de2e14edd44a6840a61d
BLAKE2b-256 487bbc0b4b48fb172c5e2a8d7cf5e69f9490f710ede61763a97110e0ea838c2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 97438401292044a2a80305344af12092b6f551e20bb8aa5a45bb7d69b957fe31
MD5 979e67e343cba1165e2ce0fc733d94bc
BLAKE2b-256 a8da85d82efe6e73fab22c2f15a8d4ed4352ebd986e4a864f2faf2855e2cd42f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 328f9db1a8fe30ac2a24be20489dbb2098cb6babeb9e36d4295bf78e4576ab92
MD5 a29a325828ec48147e5e284469e21699
BLAKE2b-256 bf4d70e592c5afcdccfe9cd4abfc6287412796695d401c549980b2f31aeee084

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6dd800aa3b20dfe6fd88feb6b446c07d0f086c7c4ea5187a9f325e036a166df7
MD5 7fc62500501b735d87fea6e1bf73248d
BLAKE2b-256 df457bbb2e7a3d47a7462ce6366d692b372f5d399172237738de7cf9a7cf98d4

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a41-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a41-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c09ab9e18812fd677b8ee4203b9eee229c4ecef3aa225483ace0555520fbc518
MD5 dc48417c1a444f9fab57f7e3b412dd08
BLAKE2b-256 900e1e91bea542c7f852a9e1f39d3a75fc95db6c1bd401807f5187015f7580be

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