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

Uploaded Source

Built Distributions

Python_EasyGraph-0.2a43-pp39-pypy39_pp73-win_amd64.whl (308.2 kB view details)

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a43-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (644.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a43-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (661.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a43-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (305.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Python_EasyGraph-0.2a43-pp38-pypy38_pp73-win_amd64.whl (308.2 kB view details)

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a43-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (651.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a43-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (661.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a43-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (305.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Python_EasyGraph-0.2a43-pp37-pypy37_pp73-win_amd64.whl (308.2 kB view details)

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a43-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (652.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a43-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (660.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a43-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (305.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Python_EasyGraph-0.2a43-cp310-cp310-win_amd64.whl (308.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

Python_EasyGraph-0.2a43-cp310-cp310-win32.whl (308.2 kB view details)

Uploaded CPython 3.10 Windows x86

Python_EasyGraph-0.2a43-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.2a43-cp310-cp310-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a43-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (662.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a43-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (664.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a43-cp310-cp310-macosx_10_9_x86_64.whl (305.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

Python_EasyGraph-0.2a43-cp39-cp39-win_amd64.whl (308.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

Python_EasyGraph-0.2a43-cp39-cp39-win32.whl (308.2 kB view details)

Uploaded CPython 3.9 Windows x86

Python_EasyGraph-0.2a43-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.2a43-cp39-cp39-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a43-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (663.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a43-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (664.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a43-cp39-cp39-macosx_10_9_x86_64.whl (305.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

Python_EasyGraph-0.2a43-cp38-cp38-win_amd64.whl (308.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

Python_EasyGraph-0.2a43-cp38-cp38-win32.whl (308.2 kB view details)

Uploaded CPython 3.8 Windows x86

Python_EasyGraph-0.2a43-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.2a43-cp38-cp38-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a43-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (662.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a43-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (663.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a43-cp38-cp38-macosx_10_9_x86_64.whl (305.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

Python_EasyGraph-0.2a43-cp37-cp37m-win_amd64.whl (308.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

Python_EasyGraph-0.2a43-cp37-cp37m-win32.whl (308.2 kB view details)

Uploaded CPython 3.7m Windows x86

Python_EasyGraph-0.2a43-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.2a43-cp37-cp37m-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a43-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (666.0 kB view details)

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

Python_EasyGraph-0.2a43-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (676.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a43-cp37-cp37m-macosx_10_9_x86_64.whl (305.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: Python-EasyGraph-0.2a43.tar.gz
  • Upload date:
  • Size: 247.4 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.2a43.tar.gz
Algorithm Hash digest
SHA256 812ea2d3f3911b054c92aff13e7cbdcd59c8f664146106258e38dfdfe106d75b
MD5 7caec869e4762cdfdf3c55926b1b5e8a
BLAKE2b-256 ef783c0fca1af41e84bbe70edc530cc5bb813ad97fbc4fae5d34f9545939c592

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 67689b7514f4c692a4a7e2a666d514847c2dfb59ce7993d1c43b63a2683f8347
MD5 c60157bef9022941949937ce47c60c1d
BLAKE2b-256 26e87ea8b200be50a2441f0b512fe72755d9246079e9e89095479b3beded4975

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ecb0355e19fa60396e9af074597db646e04308dffeac7a8923427248531dbc9
MD5 7625d57c16835d47b5d81c29baebea08
BLAKE2b-256 b2b96583d59279b7c0a66b55ee4c9619e63b68eb9d54abed8a3664774db2b2bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 149d584c8faf3756593fd2e46b42e84bf6143e9231022838db94f00a420c7f21
MD5 fc9cc6e31c88a67480a23e27a1514b49
BLAKE2b-256 9e35bf42f799581272c66c011e172f6e79685ce703774447584f958a409fe009

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 61419abef8d44b83a2cdb680c6f684e0ef5899f61008088d91a6563f81ac8574
MD5 a5ab5839f1ab9feebf17ab8064796e1c
BLAKE2b-256 189dfb1f64b1cd554747c817636a36624a4b6cc3a104e966bc4378d57912d0a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3df2e92771c63e3ed5dfdd506e5d446aaf6cefb636ccfd3d2b8a1240ca189222
MD5 b465297c81e18d2c134d6bec93e5373f
BLAKE2b-256 8e779a6a4b97a4386c24a7ecaa8a2e6328e6286b0348d87c08d46cbb307c25b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95561ef65513d1f5997471a39f8ca7c87fa33ca43fe298aa200ab8f2227968e9
MD5 317e4db2f763c221c34ecab6f61b73bd
BLAKE2b-256 85bcaaee3c2974a91a238a65b0926e05e28b64c600a2a10f61885ef2e0c22637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 46726d12e37e5551f80fd6a8a5f463d4bc5bb0e5715138a4a61c66b49a490929
MD5 6aab8c093c04dac29f5ea7252beacaa1
BLAKE2b-256 f2f1fba98241f9c1c79f06540c97727b006b076467c26b78eed4564203a095fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8d295e00082b5fb4608ec3cd6d0fba98350aa8b1025d431342f4e5c06af571e5
MD5 03ffc79309269e3a03f5ea44b362807a
BLAKE2b-256 09484dea7b5ab41a2c3a0b1fcbdeb45425dfe4bd4238f7bd488dd3a525fb4d7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a546267454f3d477f58eae6bac9e326e490087615ba27625f04cb5bf0ac9e4b8
MD5 71d0e041f0420ff2b8c895335861eaf5
BLAKE2b-256 1fae1dbfe13ebf178bbad226d21d6ef0ef8851746b5de9a7c558b3d7d5cd9c78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10fbf292e801d59a6ad6ff8973165ea2f225d4bed362ee2091339bdb05d64512
MD5 90ecb1a2b3dac3be38db317e6d30c96f
BLAKE2b-256 4935083c83f24e8a812328d2e799e78b8a09638d75688fab6f8abc4f08909ae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b7311324cb3cf5723218efc880f004a312b9b2cbc3311a75263dd6056d1cbb49
MD5 d6a8d5ed530e328c823ffa77167c7dc7
BLAKE2b-256 505112e336d7fa74cbf165187a6c15e69bb4d665325028c63c65dd4c8b394ebe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d04daeaf2ca5801e8fefa78276a5f51a6bb3872db9cad06892ea508a64610f57
MD5 ebf991162f6121b47eddd8ae948b7bbd
BLAKE2b-256 d4dd952e962b643fb82d1ebfbc660f3ffe511e77986a33db0ad1f0be04c29a6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e82c06e6c259ff80754643cf1b873843f19b3f565e699b252b0b9c8ecf14d868
MD5 ab93f21216fb501f63d27c4223c0076a
BLAKE2b-256 b2f59c7ad4e202878290d8bbc0c8efcdedfc84ba5034315f17e27c01c06eb6cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4e0295430215b375270543b7619aaed0ab48a0749bcdb5d6c57e11e06ef6102d
MD5 ae5da0cd3faa380adf7073cafb675777
BLAKE2b-256 aaf3ec0a0cddf320adb90ab3e8ebf2a6e1316c2f629bbc9f5e55d65e469cc2ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d6e75f03e019e929d71bf7faa010d4364d6ed9c290861734ee3f7f203c0452e3
MD5 f78e33a21b29ea41e67d452fd56627f4
BLAKE2b-256 e00e0a0ce67a042687dc93d2436cee6385d3640c3045273566387a938c3e10b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a726a43b6f5b99e6999c3715dfe1312f659ea70304cb5e8ada09453c49e1d690
MD5 7284cc96cc81127462748296430cd02d
BLAKE2b-256 d53b8cb80653cdc02b8185c024b7f936c5c198f3db955793f87c83137efb3331

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34a137fba8004999fc11eb4c8cd751001134771c9e70bacfc92cee475bfa3f14
MD5 0a6c99ed963f18c3f8868af065811623
BLAKE2b-256 b5466dcb00b3d9247078888822310a968588227f972534460eb7cf2fd3a0ba37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aef68bf916240dbda2c3471834e79763c3183bf527dcd7d30eab45ea5c4d7c29
MD5 8737e1692b7329fc7f3f7c3a26a79885
BLAKE2b-256 bbec11fb0fe85034931aa36bdf9970b94f1c11c79534c109ec147e6d2a19234c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d74ef01b52252d3e24575866369ab74ac734a57cdbe0be103ad4ae0f030bb090
MD5 829f82d1def57eb0b1aaf4919a942524
BLAKE2b-256 748453f33cd20985f818ae0c63b4af171d2177107d3cf1a2ab31963b3c2f69f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e51c3edb508633f7d0f378b769001d53c06dc4a44d5253ed02d04c8af60b359e
MD5 90b4915902b7990210dbd3054a600a15
BLAKE2b-256 09c532b5e5b4b1c39b5ff19d5ebc8439744974e81def019e0e41607b1860a0a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ef8c5f5d4e052647bc99a5a557de7c762b9f95d6a9fe2d0baa61e396dd527c03
MD5 59c0ccab27d9668c084fc9b0efc7cf66
BLAKE2b-256 df4a86682eb0de4a6860924683231d666ccc557eeefdce40b2c4879bfe130f36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 79457ebeee8e7e5918d6c6f6dee9e51f9992df1f097f4c5660684f946d883a2d
MD5 554b0fad7a8d8d04d5a972cf724e141d
BLAKE2b-256 d8c9d6c31cfb2b495a71830cf1e9021bdce982e82fb413a3a6844a741a9229d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8968394173a52e70783a8b8ec0e52f6818df961f0fff4d3f839316ef31adc083
MD5 16d7a0403f7a900cb7bbe63f49552083
BLAKE2b-256 5fffaf8973709f0d3299fb7db402538e5884ffdb6311043a760d4c98eb316bce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ced9f0dd4c50f761ed55363e7e232569b9b1c217f3437fc90f1c578d05215637
MD5 5934fba7a7f6fc14a6ab2e4a313e1ad4
BLAKE2b-256 5bbc82c4d6fc1825d4f9873522bf721bd01d669fe9657213ca0fbc1600e1db71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a17359fb08f6fddc6d9f987ab78b79b8a0cdefdf67e1ad98f853f6a45b397cf3
MD5 cb8383dc81b6cb1247d40ae457025580
BLAKE2b-256 7c1efbf8dabd621f9f316e43f49c97acdb7cef8f23154078fd4d3293d76c97fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 769abb1cb4af4575aa330c2e14bde7e72bbb258ec5bc73f5f9f14d3ad476d541
MD5 7e1b1fe9c7bc98f8a183a090af0a7dbc
BLAKE2b-256 44ce5d033fe11bdf611619a9a8016d1b41e2d24871489b0382c1a6407560e186

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7f9bf1f5056f8efe6f11f37a76dd4cdd953eb8c5433c0debe88ac312b1f8bfdb
MD5 c20dc687330d17bfa4c8ddfd90f6f6ea
BLAKE2b-256 4208bc3a0a4cca7468bc94c86bbc7f64562e05cf2311bb8507a994279bc6dcc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ce1f373cb0caff445f55d8652c4b8d2871fdc6fe0dd7448b6249ed5d81f9e358
MD5 e05bd5f9c23dc84fb34aa27f2bac5acb
BLAKE2b-256 be1b017166f4ba7092d67aa6fed1f603e069ec59172b8da68ad60934835433fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e4a94c7a66bad9552cfa2e558496550e85fe306cedcfd8f12e15f5f551500070
MD5 89d3c2b3e51a4ecf7219c6490c34e9d8
BLAKE2b-256 4707b68e6a626a5c6fd9631fc4d755ee3952bfa7d9f76ac471270af11cfd32b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d03924093ac69a131a3885346a37d05257fae22e6bfadd596fbc0fc7d33c22c6
MD5 84e7e9d35064c87faaf037531b711d20
BLAKE2b-256 7d345970a28e882aae25d711466a65c5d3d5916a066f4448013212acc020e1c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56384f78d4bb70b55144c4d94602b3b69a61669428f9d70a1ab3f1208f6ca6fa
MD5 9f089e0a1d6dfc07ebae09e8b4a1338e
BLAKE2b-256 3a7e010bfc5a87736c45c7a6d37265f666585e192d954146414dcad6b97f1735

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4f1026833ba368e19e0a1a83c90de45dd4f469b037474c6d92fd62afbdc372ff
MD5 c94b0b75f69a5c72a003ba345b03df94
BLAKE2b-256 87143015a7ae4e612bda0bf8db970bdf1fa6d59849b55b3bfa15efe27c128629

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bba78b2c5812cd0bd460c560584c5dd53695abda60bbc9e9462b3d779b12b712
MD5 d60538ce423d345d02cec49e0053109c
BLAKE2b-256 06ca5ed1377200dda4f5ad0a28115bb688ef8eacc6bdf4669fb91801b19eca8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 53980d7947193ff9db65d8d02e12f23b48dbd146abace5a0fd0d3e014d2a20ff
MD5 6d8d70ea191b9445aa49d06d2566a7f7
BLAKE2b-256 1e795da11eb47bf73b5f2e11acadb71bb03cbda96dc46c63e02cdd2b2d7e10c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6313fe82fb2cf4d7526e42da8207744df752d87dcc72b314f06eab5e484de009
MD5 c243802d2429f17dfdf1af6077c3c63a
BLAKE2b-256 d29cdafeca21a8dcadb9632441e6cc6fea9ace14a7eebc38f1bd93c4c225673f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f1a786f3b0ba4fb1e37a83be0bff594d4b4e22e1ebb416d2106320fffdc7e664
MD5 fb9eb562f17a9d5bd1f49a0a36a404f8
BLAKE2b-256 1ce9122fcfb83e4d85aa99eff2608113ca343b1605994a36efa43d8abc24579c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c598713cfa9a4c6fd0bfbe2a00cefe992436f8cc86900bfbe62c7461ad054127
MD5 eb4d6bbfec89c8802d0a89af7d3057a2
BLAKE2b-256 4785331c7454128c3d78c380679d2b7137d765fda0f4cdb6a45db60156f14185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2b84e96bd1bfc4105b8e2a0e8e9bae81da28249962b3c3a9ba66772caf722c8
MD5 23890d668ef9eb5dfd2b698b1ae6f570
BLAKE2b-256 3265b35be86590a6051a8d4b09b8d35a393d62700510e0d751cb73378485f3cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b2c52d9290037c6d789411f79dbf747ecb4e09e0d82ce713ed56af782820e392
MD5 454f3656d4b214384408480121441ff2
BLAKE2b-256 7fc73b0f6bf65c681ca817bf469015365894740e23706764d6f364e2b5f10d9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a43-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 517f80900641974fdb94ee84e4fabafc437de59347dbafac0e2db2b697074cc8
MD5 bb91fe1c15e4f550e4238536118703c7
BLAKE2b-256 56a2643ac106c40db46c5dc36a15bc60262f58965e9807f8181f4f6bf58b65c3

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