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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a42-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.2a42-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.2a42-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (548.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Python_EasyGraph-0.2a42-pp38-pypy38_pp73-win_amd64.whl (503.2 kB view details)

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a42-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.2a42-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.2a42-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (548.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a42-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.2a42-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.2a42-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (548.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a42-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.2a42-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.2a42-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.2a42-cp39-cp39-win_amd64.whl (502.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a42-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.2a42-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.2a42-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.2a42-cp38-cp38-win_amd64.whl (503.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

Python_EasyGraph-0.2a42-cp38-cp38-win32.whl (470.9 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a42-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.2a42-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (628.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a42-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.2a42-cp37-cp37m-win_amd64.whl (504.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a42-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.2a42-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.2a42-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.2a42.tar.gz.

File metadata

  • Download URL: Python-EasyGraph-0.2a42.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.2a42.tar.gz
Algorithm Hash digest
SHA256 9dd9d127a5160cb9f1a5f5aca928ae140c68b367f84538ed1fba30018729edf3
MD5 f055316b84dd0e7195c17aaaf2bf229d
BLAKE2b-256 0f53dd594caec6424c8dc95ca88add0af122597238dc87c8d413ea821ad38708

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 88a90ab86ab0632b2545dc50d7ddacd506f11ece761cfc29efcd62c60d76d4d6
MD5 761458cbec1a1581cc282c40a5f32b44
BLAKE2b-256 8ed767d65d16623d23790eca80076841659db5ec4ee6455c50669424b57e7e47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10256a05ba89c38af63121efc97b9e1ae3e769ad60f7a0830a78663df790d8ff
MD5 02ea833b48cda37e8b2b07a30ee4ae91
BLAKE2b-256 6e1e5b3b8e77df1ffdee291f87f0291d9476b06c48de7de8e6ce8a4f41c5fe95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 460420ea966708645c292358a5da80607615f176e2c695df7630bde02ee777ed
MD5 b990d968d21d69a339a5889f9143b08d
BLAKE2b-256 1c3b6652e863fa8e4d1acb7e8bbe0e7cf85482cf028e9f4d725e9676f22abad0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95f2fa09454acdf32ebd5dcf2b1c82d17e3f51fc45abda4ba33c2af15c44dbda
MD5 93e95141a985f377b01a055aeaec2fa7
BLAKE2b-256 a628226cec4eabd3d599bba993733698f7a0cd91b6509c23041f3e76fb77a9c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d0eeb14374f9951bb866431e8480dd886e13543e40c010d2966724154c6f2689
MD5 2aba30a1bf3af45dee0a20a439881620
BLAKE2b-256 ad4320240ca82894265c068c21bcab3e16749023f438b38ea00376741917add6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21841f6013223ae689afd957a328d3b80256b6efdac361bd5249615cd6734a37
MD5 97be75f9bc167acf828ef84c291c4fc4
BLAKE2b-256 f1be3ec367ab2586834d2bc658d43831dec438b52ce8a3ff212885d4a1763339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 75bb87327af1d9355bd31af2d5850c2bb8af2d8c62431b1fb54398d1f0f8ef9e
MD5 49f2f73d7298acc6aac4de7d98b08aa6
BLAKE2b-256 9af5dd1625b4d49f04eb9c17b78af554a6a3ebc481037123c192a80bbbf0acba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 98dc939cd78c16ddf3eab5058f7f9f271295de04c37c832851242449bf954c35
MD5 2d3cc4ce26e629121417cd782faf2e5d
BLAKE2b-256 a28147c1591de14ddbc5dae374e342f28a852b67c4dab39bd23b8a219037f42b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 33a2a50355d82046caae9393670bc66c4e96df0079b19ec82529f7ef3c0711b2
MD5 c9025bc2c2c01b063e8215cc8f69747f
BLAKE2b-256 0ddd7828a39a63de0e732bf173566eabe633b21c2328fde3b9e23f877cf37081

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 204b52cc8ecfad84f66f5986a8c2acca195d7fc6326f4e1322e1de61e1f85478
MD5 4f4d56f4568a5751523e2bab247b8823
BLAKE2b-256 00d473fd9afae15b2af7a94bdde9d214c3345d15057346dc2f989812320a15a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d398e52f1d5aa862e1dafa3fade82e5a45ac5b48a32ddf120be3d9976196108
MD5 4bd90dac09de58e16f260a3b895f0721
BLAKE2b-256 dec84a11b4624cd806423a755e3ef1bfbffa331621782dde8a4485586966fded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8fb3a92f2476fd879316b0f230b7fd900faec1d1dba85b3e577708ce7f4de4d9
MD5 24520b17d16cac7951e678c5066dddb8
BLAKE2b-256 c9fafb6431a9e9c9827c889a39eeec26d3d0548d25645b1d8889b9dd34545e7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2b12ee46824936212002f3ea1d434eb924ad58688308733ff75be78c3da861d6
MD5 6f2e4f4fd211567797afd9e5fc3ba797
BLAKE2b-256 1f33a3d57f9568eb17978bd947a605244f17535f5bbed05614d5b06da61eb0f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3bbf948e489428aac95cf5fa8ca928a639d6ca5e0dc700928f83bc8aebfdfa86
MD5 a213ede15233b216d023a67361d715f7
BLAKE2b-256 54eb27e25129a8643e12f8008a35253e282284c15515048e4bbdd23c30a7a9bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 11f64c5e8dd254a38eb64aeca6afa0a9c749581bcea7c16f2e6c36d12be9d7e8
MD5 22d1ce001301bf9f4f0506f0eed28b00
BLAKE2b-256 ed4be926d220d49c07fd7624698567bc075da1e0d14b8e6e91e0b1f88878b9dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0a9e13fae7ac810efa81d40c7233c5fc67f7995222ec05533add36d7937e417e
MD5 cade3ee94fbcdd1fe2ad99487d5a132b
BLAKE2b-256 07a30ad54d21bf4bebf7ded8f72688c4dc8850f219a1ee3c9430f7291779563a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af09728cc534588b8b75fe1c19b5f78626a18fe7e65060a73f6d062d04fa4183
MD5 2cf51d90efb3935d55141ef56edcffbe
BLAKE2b-256 03129dfb8a00396f3d8822ad91baa3f738a4ac786fe55698ed0b9de7efd47c2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5aee55689b360582fab4f143d29714286ff7de3d0f91f5ffb56b881adcb6ca6a
MD5 a96850bc15346bc8d62c823a3ce045ed
BLAKE2b-256 6d0848a5115e3370a4a87c8106080d8f9ca24265e4e7e1b6405cf3b29330e4ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40a8a005560cece3453486e886929a7c21569b27f8c178d48d3dde4af00c7d21
MD5 4e4fb772b90f497b3c6375dd05a27524
BLAKE2b-256 ce83ea6394152156f2ee1d143d2b9b6267e4dd1239d9a5ee0c0d0a5212fed2d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 358963ca19eed91ff0adf416e70f43d6eea961d1772927eeaec42493e12bae32
MD5 2ad63ad030b0c21aff434657fe9c1764
BLAKE2b-256 aea22b7ae462805ac4c5b9fa021cf6caa2182533ce38656a8fbd4f2df65e413a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9e4a36d238cafca1eba85a401ee2a182f51d39322e07d7dfeb21eec2f6ecd6da
MD5 e87883a1a7c9ca9d97e94af270330b1b
BLAKE2b-256 0f27a3f39e35942b4a00f06ff94e198984885011ed3d6750dc08027b537e831e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4951306d5b93b601ccf1399be8b434fbb98b9cab3d29a51ad7821bb2d6582a7b
MD5 ab7691b335714e258089470761253043
BLAKE2b-256 b9bfd7718512d54e991dac6f98ffde7b35141e6a0999074628edc348b0fb531c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c53162fff303bc40776017860aeb2a06850c5c3dcbd4f4534b9e7abe84bddff8
MD5 c9a58ad086738a62394a59d79d080b12
BLAKE2b-256 d9c8a82e0dd433954dcb007bb2e933dc53b20ff96bf7966fe85b10abf4e7bfb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a256e232f11e25bbedf3cb8082458146a56a633152def6786bfaa06d17a27487
MD5 9d3d0b728545da9c8519e1807d2799da
BLAKE2b-256 eefa06bb7f85ed6020e63406bd55fbff416da82b6d83f6b1c723deab6b307be1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b9c86a2aa0b909eaf0ac75a10fbe11c978e2016a6ba920fb82acc4934ea4cb65
MD5 cc20de25d8ace6e8cdc374dc0d8f0eeb
BLAKE2b-256 47f5c51546f618d2a7b742639ebbdbeff910027f5b3ba9969a5f2daf89a35568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 99506c068b1c17ea87d39b3ccde17b9a383238e208ccd18b1110c9e0ad727591
MD5 27b0bacd53c5541df5beb56a73c59b64
BLAKE2b-256 909cc26626b09d35ba8353163c5c48b3f5ee7b6848b291c760afabf14acfccfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 dab9f5173adfce831547e342fd51340cdca28d744f472e124fa8f084672d414f
MD5 5bd8cc3709e884a159a5d3d1f5ea37af
BLAKE2b-256 d2d3c5f6f8136b4a7b21525d5b4156011e0b30e17a2f71e8f0cec88713114bff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6ee1fdd3dfc1b797b26f201e4727de7e2d6499ef2564d8e1604c9abde07f9fca
MD5 6b55311cfff35a0a19e6fe9f5942515a
BLAKE2b-256 2ce7e91dca7efb157362c6bf3e6e6599a5ac90a93e43ad34998e2d95da02e621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a9996aa21ba93922a3c0f44f8085638cf5e96eb17f53167d7c41869ee30c9451
MD5 9eab5849ecabf0c6233f910ed052e408
BLAKE2b-256 ecc352f9ea12c0d6ba24955025186da6b5489fc9272dc4b0b5e957a397265af2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 82b75b65f4d9e05dab768721768bfb3b0bbccfd6f50c1c5f24fa8d13f2697af5
MD5 b3aa4fd68bdab55d38eeb0b201d29ea5
BLAKE2b-256 8f56ff731fd3f640b4db103660adbdcc4ba1f1bbb21aba701972de1857995be8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7887176a3c203ad19150c8724e2c9e325afbf20ff03538888bd30dec82b5716b
MD5 57a78ad63d919a6e5213315d27ec597d
BLAKE2b-256 d9ff68a49bd14e95a6afec5f5c03fd05ac44f1636bbd745da116164c14eeff66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aa0def66c21f70754fa37a7ec82a1e75d0588a0f40f48f2ece950e7ad670385d
MD5 1f301b7215b96df4bb0d4fa455323602
BLAKE2b-256 569dbb666c47c76e2a0f1c250f24ec5a8a8a1e6695a926cba2d00c51434853b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f759032ce1b18633c19a5e3236569d480dc1467debe5553ecba954397b88f41b
MD5 d62bd2716c52413cdd48628b1a490ab3
BLAKE2b-256 ee7d2aee1d7c7a35d30d2194c8768a0f0e2fb23775b95d21d7a067edb82e0b54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 06cb903997f3c7489d83833d95342a096af02b888f939e7837823f8f39029f2e
MD5 da8f97bf6f71538aad81d19769831039
BLAKE2b-256 17c3b7d811fff52654c1939d3a9926533db1cf60578710f5bb96b5dcaa923b57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f23ed6e9dfcc03a8d0c675fa8e0e016d74dfcfca319848f5bfea4f982689d3ff
MD5 ed30c8e3d493177ac3b501421802d86a
BLAKE2b-256 f21603ddef0b42655974b574c6d4455a725f60354719c92ade2ce94e60bcbfe8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3388862a399e0ce803c5022eb633337248c097d0203b62db6f7da87618705bd8
MD5 d849050e3526b5a765ab86a2eac2c0cf
BLAKE2b-256 9f1ffb6cbb23f266a4601700fc8c1ddd80878ac86f5119a155f138e9639301ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 99f37ac291768150cf7b474f36d693722d43bdd53c65cb7a4896d226cc0ea381
MD5 0c14d3c757747ed2e4f22e62cdbc11c8
BLAKE2b-256 77f080fa79d3940c2327cc0a6d5902c6f3d28e5ec0eb9ccef97009a81353fdb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57eb44f6d4b1d6d3c5f253fc9fe5a0fcc79666e93abf28de12bf193a95b8979a
MD5 a95722105eaab0698227d3f9a12d3009
BLAKE2b-256 30a84696e662134b21c8c1e123145eec4b7224e9dfb40002f2d888f44ee06153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc4c164f875da7aa29634c9b701e26f70773eec43e3c214f35ec447439a99e86
MD5 4a47cf31b393761379ac61f4140f5128
BLAKE2b-256 357dfff41ad7232136122bdff91d1ef92ddbe307a4bb1296600c6586b0e4d302

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a42-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ad55a109d9495e0b3f5c20da1b650cd8d455b295175ef436e1043f19af745c6
MD5 5f2a814f3078594789e95e71d423eafa
BLAKE2b-256 55c3f639c6c9278374ce8791c05ac28856f142e9563f611f0c320a8cc17b141f

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