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

Uploaded Source

Built Distributions

Python_EasyGraph-0.2a40-pp39-pypy39_pp73-win_amd64.whl (501.6 kB view details)

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a40-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (610.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a40-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (624.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a40-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (547.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Python_EasyGraph-0.2a40-pp38-pypy38_pp73-win_amd64.whl (501.7 kB view details)

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a40-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (616.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a40-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (626.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a40-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (547.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Python_EasyGraph-0.2a40-pp37-pypy37_pp73-win_amd64.whl (501.6 kB view details)

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a40-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (617.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a40-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (627.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a40-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (547.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Python_EasyGraph-0.2a40-cp310-cp310-win_amd64.whl (502.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

Python_EasyGraph-0.2a40-cp310-cp310-win32.whl (469.3 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a40-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (625.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a40-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (628.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a40-cp310-cp310-macosx_10_9_x86_64.whl (556.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

Python_EasyGraph-0.2a40-cp39-cp39-win_amd64.whl (500.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

Python_EasyGraph-0.2a40-cp39-cp39-win32.whl (469.5 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a40-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a40-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (628.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a40-cp39-cp39-macosx_10_9_x86_64.whl (556.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

Python_EasyGraph-0.2a40-cp38-cp38-win_amd64.whl (502.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

Python_EasyGraph-0.2a40-cp38-cp38-win32.whl (469.4 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a40-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (625.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a40-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (627.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a40-cp38-cp38-macosx_10_9_x86_64.whl (556.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

Python_EasyGraph-0.2a40-cp37-cp37m-win_amd64.whl (503.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

Python_EasyGraph-0.2a40-cp37-cp37m-win32.whl (475.6 kB view details)

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a40-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.9 kB view details)

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

Python_EasyGraph-0.2a40-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (640.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a40-cp37-cp37m-macosx_10_9_x86_64.whl (547.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: Python-EasyGraph-0.2a40.tar.gz
  • Upload date:
  • Size: 260.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.2a40.tar.gz
Algorithm Hash digest
SHA256 cccd9a9bd527554be4a5bbc2b6edfaa69cde95413ec7a901b0dba9f66d98d2db
MD5 7c4df6cc10eda5fff1f0e7c6876b9e93
BLAKE2b-256 41b6e594243ea0860fe14b166b9a174afac63a617a05508997d729f6127384ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cdfaf09ea4f162645069f622f41e5e49b6bbed97425d45a986ca41baecafee1d
MD5 9af98c64961a7864e9049ee1421614a0
BLAKE2b-256 51ea3f388e2071d7359d121a35481433c9f32c30fb83cf8249bab62d877fc99b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 103e12e515fe6389c1b5e67bc1c3908c6630bfcc3c2bb31698633c76ecabeb8d
MD5 648883466ed11addd8969ffb44129c8f
BLAKE2b-256 2d82685d2fd0d4dc6f85e1c874ccf31fa702a2c09ed01bf451cddcbd77998d6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e7f0184e26dd52a971c73cef62b2fc3ebdbcab1f276eff6acc6541c95fb98af
MD5 353b3a5ce83368b27fdc8acd57b23b18
BLAKE2b-256 d605e6d09106ee95f9f1496e6836e8f4b39c17e67afb5337c9fbe07b33fa1078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8dafff97f1a97d87b17c9436f15954a5859f7ac9de27a1c1a49b26070a5bade0
MD5 7afd0dd7b3722d031c2495ef33411ce4
BLAKE2b-256 ec11d0525fd4e809d52e0df5c53eca2b33010386ff309c6131244fa33c8b1885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d1f4839618945be7e587128c2a169fa1d487812d38a7080a40e7a0b4575281cc
MD5 a1e577f63d0ccbd5248be146c17255b3
BLAKE2b-256 59390ad2db972ff0a8793088e20b2ae825041fd5ad086d1cf887f22ad0e234ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e295e5ccd14d46175b655ac6428cdf86ebfe9117aa5edaf6b61e95a59de865b
MD5 f2fcce15e32a84dd33b5f14d234d5ab7
BLAKE2b-256 6ff8b2929c3acadef004e82342d5c689b00f4ee1eec2d03d689751225fe03736

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 155c4f1d1caeffd6e39b0121722f3b7d79abaa2f27622c9ffa7dcd47aa120958
MD5 94bcc595b037c64507c29daa58c62b36
BLAKE2b-256 3cf418a8454be40890dfe1d37ae60d72e411b692cabc264a34e4357ffe033d6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7ca5f18cb1d28c84414b460238a0fe3b65265a6eff3a74a1a1afbbafb442e2c1
MD5 dc4ac827796952de324e2e969856ba04
BLAKE2b-256 504ae691d210894b8a3f86f65dcb39149ad8d4825ca9c50806a1efbc0ea4b48b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e8f1e52026ed902d4fa9a6f16777608cdb38223ce44a05b44c14dc8ae3ca52f3
MD5 50a10a2079ec465c3906750b8641bdc3
BLAKE2b-256 4d952844bce9ee35fdd1c8cff445c08d351ce83331c1b08153ce14ac94edfd9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e55fbaea0ef8588ff6fad9c2c4ef50908892eb84960a1e484fba9b70a7bcb2b1
MD5 db88d72cb33d3dc45a0ff096c015fb87
BLAKE2b-256 985b6206b0a8b3cbdf807c00b5acdeff79b57679a5862bbd498ec8dae98761f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5e0df0e7b64590373de43818a03d6bbdb75c669bb8e352343e84d8de9ba2811c
MD5 7e5650af697c437f9096e195a8881504
BLAKE2b-256 1cad7e9fdae1061325d58e9b375c66a96f15f4269320f79ff64b3bd26363461b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 90853b328c35bfe1a2b5453c76af219ae668c8f5080ea34996263381380496ad
MD5 28271e8d44f236d905c5abfe8476c250
BLAKE2b-256 15bcd47383665fc3d19cca8239958e27f4eaf0f4aa8873f8ad202fc59c50deb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eca8cd30ec978ccba8d28f05cf6ce1ae56353c123e026d359af3d6f3320c50b2
MD5 ac0bd9cde0ac18ab4462385122c75067
BLAKE2b-256 8880988c288b5b061fb5f90426ab5f142b39dbd78ec47df70740fcdc80776ef6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0567170230fc0a48288e64250d198da3f5299760425077c3d877ff9ff86730f1
MD5 2e6dfceca9d2c6ccfe3a0111ce6282bc
BLAKE2b-256 0750fe6d975ed1f3038ec3dc97801e3c1bb6ed716f719509c845395d1d93a0ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 963324d62945ade1ad381aca83bce2390e3753e7afb2e0f4cd58e3680f5293fc
MD5 344528cade6651f720971c6c8ac6d5d6
BLAKE2b-256 d8b8b641288cd84fd7b49e6af3de94b336ba5322bab40397ccad611e4b8a4297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 83e58487a0ac19805255f1d3e051c0ef4d5179cb70fec8edba380ab4d46b9a53
MD5 868320ebd3b1b5e97c5001d62d24c1c0
BLAKE2b-256 2b712eed0859c6558fa4081b2b9a18a50e3f7eff92530ff9e852e3865d2f1ad1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3439e6af08411fe62de91d2debc151386f7cc730ab8f9af5b79f9ce9b3b3ab93
MD5 e3033c254dea4d01856082c370e816d6
BLAKE2b-256 7008715875ff737fbdc451caff6345b06ed5da0433171a7916143a2f60be63c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9bf48c38a69d6fc5e7bc43707bbdf7618283b3f242b41e9f3487c0da151b1e50
MD5 2753d098ae8bada82161ea0bde0906bf
BLAKE2b-256 8f5214591bf6509775113684db592eff43a749c516a44a03e3f21029daf219ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4d0cabd3bbc769a6f7069dfc4a90bd0c41c8bf56f312da6bfae4ef678919b4eb
MD5 713a27374ffb187c28ae0204de727cdd
BLAKE2b-256 59fefa99fc6dc2066e63bbb2ca19ac1e518961026eb9173274d7b4e44cffb449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5cce0845baa073aa04eddfcba52e1871148dbd259ed4d8fb8ffb5621848b6476
MD5 875060c13fca97a47f9c382442e3b229
BLAKE2b-256 209a2aaa6bedd02bc45c564b574e2826fb20b9bf6e4bd9553177b481822c86f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a008230d43666991a2d12e8e47d222fc94e60a46cc9309eb8d6e078237910c4e
MD5 c4753d2aca12c995dadde01f55dd126c
BLAKE2b-256 2a813ff98439abf306b7428c86be8885873fd27b620b925174375617d44e9061

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 576769cd1cb6406b29a37b2f13ea73a7f149db389051ab8ab9379fe758743fb6
MD5 b43754adffbe95f1dcbef8f5cc9c9b96
BLAKE2b-256 235036134af8d27058aeca97639f4ff7fb0b982b0cc1baf00e852c4776446ac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bfc09d60f498a0b95d46932b50926da0c2947f3d6a5139fc3b2b273e9e0d25f7
MD5 11e30b7a1ad83de2ec8813e93b94bc24
BLAKE2b-256 de244c2740dad2cd48bc83f0265c9684d061fe7f574e77d578de1aabcf002f10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd77c831148f5035d2edc345a93ce36c150868197606f939fcc74a837fdc0ff3
MD5 6c48836a18aa72b86b70c548dc587441
BLAKE2b-256 1b0658631643e2baa3dffaf41b1e07abbc050f4702a3153fe6832113c38ea126

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 969da4f0d6e83734aa7cf205ed0f44be08453f09ffa08e003c41fb915317c2c4
MD5 5fa19154f7ee751095daffc017b1768c
BLAKE2b-256 28a3df0e6ad0123b624742b184a86d8b0ef1cac68653d63e20ea949076f946eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dd2d55873b8dbf02aa6ef1ddf8e94a1562f08358d6d17df063582a12f973ff70
MD5 a95ecfabd1c8322c725c1aa1876a15ff
BLAKE2b-256 de4797b786e389390d0ea92096d318439a6bd3dc47aa08cba5883e37b8c3af56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fc6f76375786249c5ac502394a1ce2b96d0e39a6989afd38ebddf2a339bbf4c6
MD5 97914c6bbcd923265995115000ed6446
BLAKE2b-256 d98ff676d9346d574ebd529b59edbad6d77ba773c93054ed24b3b2a0b8df3566

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2a04ceccb049e8752ceda739411cae5566450bc05dba19b08640223c426b2f99
MD5 23a318a71848cc4fbb82daa5577506be
BLAKE2b-256 b411c26a0127042a8bbed5521b4ff5ffc51aae35339e33ef27c2c1d25a863005

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7ab4f2eac9e6089c0dba897be95b16fb6d10ff95668c2d12423b6d5c8f030c0d
MD5 87f8758552f3f6746f0c0c45d0a0eeb2
BLAKE2b-256 eeb6acbabfe0a9a4a51bc11aa6d1ef52bcbab039977771d79dedb1f6cb04dbb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4f4ddc336804b72ed050d38ce72be80bb8a4aacf93260e66332a586868c99bbc
MD5 09ddd182753645bfebb246f1e50d05b8
BLAKE2b-256 98f3c02895dc63c1cbde53abf4c6330735a25cb418cae539195b6ae89eb9e363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df18ee17a91a370c53d07c107ea93891c8f7ea9dfd7000c9022b1377f4a5a529
MD5 9a9a043b02817114c0a17440019a140a
BLAKE2b-256 8a874602ba77fc9949fbcb5d5d31cfaecb3de85b9c3a1722dccb63e0abbde411

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a397cd3fdf442b2fd998b4356e352695edbeaf04c05bc732976299d7235de45d
MD5 33947ae04c6e19363e04dc2465005d47
BLAKE2b-256 71f97ad71a3d1712ba98da2dcba571e793eff5132b68302014d4cc1404e2eb5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b2279b0ee630ea40f64afc0577abbb902dc500b566a838172d8d6451467a212
MD5 e32a9997b829104e67cef75af9607828
BLAKE2b-256 8b408f51e9e1a1b68c1673d7001a60424f9cd9b8afbfc4b4bf095ec9daef7be4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 30618420651013edc402bdec548c6190726abf0315d33d074366618520fba55b
MD5 e4d308cc7bc901032686e464309c5eb1
BLAKE2b-256 7b9f52112b7583798a2b651971237c345b1c341772da5341228c3102a9beec5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fef867208ee397f52be6d996494c8ab70898dfa05a4bfd788111362e82a75f87
MD5 e8fc10cefa084eedda78c2e928b5f50c
BLAKE2b-256 7004e1985b8fd0e482ae656b52806d1c4d1153682e58c7a90a9a60d9c8afb8d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e77cd6782344e9d0fd4aefe2cc5a2ef1e8a0a98b4238f588fae41f679ac440b3
MD5 24f33161967797fad942a7629b96b6db
BLAKE2b-256 c5dc2396ca285758f80c35a32a7abf8b4cbc8369a7859394ad98e7e12ae05461

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 031a1cb273a397fcaed00528053fa9f6e9dfabd9ba7e2c25e2735649e0d62d64
MD5 8e795ba6a2e937859d99d78c267a0549
BLAKE2b-256 3bd4e26b7f0ce421f92604c518fdd0b3d239290dbe2eb8393b4e5d5d56d71e60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a50012d33fb0a1fc4bbf9ba705e27766d9365710c1d1623f2a5ff31f1d673bff
MD5 b955c9bbd7f25de929e556cc074d7a2a
BLAKE2b-256 f316844d281e6c64c7750b3abd021b9f339e24398a867278cbb67a1ab4685fcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b774f33bcead0b51a22709097b22d6c88e3574d7afb5625ea5dc8843802e79f2
MD5 a8dc8030971284d5c7d260dd51035feb
BLAKE2b-256 a9811068d3bf508ba0039b03df82061063afac4cfb745dd420949e203d7f3084

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a40-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2bf0d2a5c7de0b0da4b464b2ce66d6512ba1938973e1564d1af10976d9e65ad6
MD5 0698647bb9bb2767756376ce9c2defba
BLAKE2b-256 90be6d69d0f61d5dafdf2151c0d046dcaacc3afb8a87c75eacbd131d8158b20f

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