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 written in Python and supports analysis for undirected graphs and directed graphs. It covers advanced graph processing methods in structural hole spanners detection, graph embedding and several classic methods (subgraph generation, connected component discovery and isomorphic graph generation).

EasyGraph integrates state-of-the-art graph processing approaches and implements them using Python. EasyGraph covers a series of advanced graph processing algorithms include structural hole spanners detection (HIS, MaxD, Common_Greedy, AP_Greedy and HAM), and graph representation learning (DeepWalk, Node2Vec, LINE and SDNE). Besides, for a number of general graph processing approaches, EasyGraph optimizes the algorithms and introduces parallel computing methods to achieve high efficiency.

Install

Installation with pip

$ pip install Python-EasyGraph

or conda

$ conda install Python-EasyGraph

Simple Example

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

Uploaded Source

Built Distributions

Python_EasyGraph-0.2a38-pp38-pypy38_pp73-win_amd64.whl (256.6 kB view details)

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a38-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a38-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (256.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Python_EasyGraph-0.2a38-pp37-pypy37_pp73-win_amd64.whl (256.5 kB view details)

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a38-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a38-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (207.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Python_EasyGraph-0.2a38-cp39-cp39-win_amd64.whl (256.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

Python_EasyGraph-0.2a38-cp39-cp39-win32.whl (249.2 kB view details)

Uploaded CPython 3.9 Windows x86

Python_EasyGraph-0.2a38-cp39-cp39-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

Python_EasyGraph-0.2a38-cp39-cp39-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a38-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a38-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a38-cp39-cp39-macosx_10_9_x86_64.whl (256.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

Python_EasyGraph-0.2a38-cp38-cp38-win_amd64.whl (256.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

Python_EasyGraph-0.2a38-cp38-cp38-win32.whl (249.3 kB view details)

Uploaded CPython 3.8 Windows x86

Python_EasyGraph-0.2a38-cp38-cp38-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

Python_EasyGraph-0.2a38-cp38-cp38-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a38-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a38-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a38-cp38-cp38-macosx_10_9_x86_64.whl (256.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

Python_EasyGraph-0.2a38-cp37-cp37m-win_amd64.whl (256.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

Python_EasyGraph-0.2a38-cp37-cp37m-win32.whl (249.2 kB view details)

Uploaded CPython 3.7m Windows x86

Python_EasyGraph-0.2a38-cp37-cp37m-musllinux_1_1_x86_64.whl (1.7 MB view details)

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

Python_EasyGraph-0.2a38-cp37-cp37m-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a38-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

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

Python_EasyGraph-0.2a38-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a38-cp37-cp37m-macosx_10_9_x86_64.whl (256.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

Python_EasyGraph-0.2a38-cp36-cp36m-win_amd64.whl (256.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

Python_EasyGraph-0.2a38-cp36-cp36m-win32.whl (249.2 kB view details)

Uploaded CPython 3.6m Windows x86

Python_EasyGraph-0.2a38-cp36-cp36m-musllinux_1_1_x86_64.whl (1.7 MB view details)

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

Python_EasyGraph-0.2a38-cp36-cp36m-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a38-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

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

Python_EasyGraph-0.2a38-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a38-cp36-cp36m-macosx_10_9_x86_64.whl (256.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for Python-EasyGraph-0.2a38.tar.gz
Algorithm Hash digest
SHA256 f60f76d58b540f155d022f87afa3a33d6f1b3c332c4ee99063910bdb2a769950
MD5 74e580e397eb0cd3b891751e6ab47e0a
BLAKE2b-256 e521a9c4646122b00292f5b85b34ebba9d1206bfad4fb668a68d71a5fdc19011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3ab9e2c60e4c7f476b592c2898f19b029a8ee25052584dad52eb7d8dc436dba7
MD5 372ee4cd6e43d0dbf2d10a8b91eb76b8
BLAKE2b-256 bec547920d3f5945881c1cd538b0887f675c600b7248acb70f3f481487a74b01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0bb84c04848f3a4845f53679d109764f0c21e5a4c13fdbc63cf024f578448337
MD5 e8078898d75ad198429c6cbef70cb428
BLAKE2b-256 a215d7a69e7820014f0835376f74946ce94fafa0ef4ab25a6d1080c92c0687d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1eacf6ba5dc2d2a9f38923b3e7a7ad24b747f8a3203fec999ab3917d4dddc998
MD5 c981f612b34ceaf02cc20c469a8d72e1
BLAKE2b-256 0984c9b01a25dff7146531c26eebf397f27ec3a4e7c84f7e91c6ca536a14513d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 612713fc486a0c0397bd8424b2227578137f32bddb895c9b7dabd804832341e1
MD5 8049fa6eb096ecf7e77f11b5a12350b6
BLAKE2b-256 9af452c21222079af9dcb4ae12acceaaf6357319f9163eae515299babdcdb254

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a3ff99c8df0bf19112bcd0794860d6931fa0fa14551ae1f2783e8daf8329b169
MD5 c5a9edf742d05a77b061f65971ea8c6e
BLAKE2b-256 dfce3b19e9d2696d85c429b393ad1e5328c751e3ecea1586cb15e8a57e4cb651

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e27be4b1924090b381d3d52b28039380bf9b9ddfc59054cef6f9352a52ad035c
MD5 7a906dc4f6d685dcb5c18e9cdf762b40
BLAKE2b-256 67ca59c288c23c28718d14cd6f13b70f16724e3107e75ca8e2fc693cac7bfaea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 438751e0edb562a1395fd7c48615adf3e475563314fb7546d874bc220a87da3a
MD5 345a1a3862ce2ca1e82997087e9ef95a
BLAKE2b-256 11248c5e2af4e177bd3ffef1c5496902a63162b65d5442af44ee2e7e6982c5cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5de8f2a9ecdd50176d0c1a41f76d042cb098205794b8dca467689d1c742eef16
MD5 447bf3b44ce7838cb4cbc84e90b3589e
BLAKE2b-256 9014af8ba9a39a01b1555e0f60e0c946101765787d591e946198fc7f6e523420

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5ad864ea5302a5a5930427ebf0043c5cad8064cf1e26946ec111976748fcd5fd
MD5 b3d795144182afefb60de2c083b2e3eb
BLAKE2b-256 01f096ff82ea7d0df7f27972e70ac00a52dbba5b6acc269b224c02f64407262f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f8fd7cee1f17bd8f81063f9668fab27925730e78634d5a27fabad8e42dfb29a8
MD5 bb6337d8dcbafa9bf916778f47fd17de
BLAKE2b-256 f1dbf01b6c85d4cfa8616452f0f3d270b81b968ce74cfd0544889f10b5046be8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 69e79ac68caf224132356ea5ff18c987e82b272cf644bca77b58d6c46e98085a
MD5 f55685b5b82a9793c775f5a10a3cd372
BLAKE2b-256 cb7673813de20ee0b09352a126bfc77d56633acc76ae61618f44620e68d2a577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 45521ccaade76d123a78229f7d3c3a36e855250a5c9e3b3116976294ef7e4bb3
MD5 608895ee2e79f57ed3bd36eace577669
BLAKE2b-256 25e273d8b90bdba361e7479f3616d68e49347d693ada9a4a82d8451963f6b747

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23d5526b7782b770a539a464246e86160f85a743be4f676b7c5da279b1e9c505
MD5 8bcce9a65bf56a677c94c88c678d2930
BLAKE2b-256 ca0413b72fa342237a7b5f439da026c49f09ce88658e416f40d7d953fbc67e61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 faa083f4c93d64da3877803bc8264c54e925202db6547c895ccaffdbc536b5f2
MD5 af552bf55372fee6ecd70f85ef4cd89d
BLAKE2b-256 4b702f58833b765405a24343a9c19407e0b4bb69c7e3be14b4f6fe05cbfa69ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 94552af965608a13a7017d78e50f2cf0342981c5405b9e610668029cb97fa429
MD5 c2f0c0999bd442ee8a07a4f3cd720085
BLAKE2b-256 32c204c80aa156144bb03259d86e24f55389a7d59e1406139b567028886dd35e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0f7b39bd5b317565e5cfdf1d6adf999b8cca882e5f3a7f720722d7d9af0ed5d9
MD5 8baa7bb4657d421be7b8d7852fc47879
BLAKE2b-256 bb5648a1e88b0d5dab021a409c4bc9b66c6cc3a2f76f0ff260842a3fe8f63f3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 62c4b73a97b55b154d8396306d74af4ebebad82dea5420cbca5fca85f5054b08
MD5 b8824aa410838b040a14d919b1c93772
BLAKE2b-256 6ec9aa615143f451c253be00d87946e57e49da36e6ef26d6a0bac2863204f5b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ac95f1b8be75d60f1f2d3759563da814d4e50e073f452e3cbc287e867d37aabf
MD5 0a0bf4f2ddedacf93b7c164557214d1d
BLAKE2b-256 7aa83c3c82869bc6e1714861bcc6b8b73f555d3e867febc49a4711e0c1f7b6b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c92e61c95d03e796c2eb7a6b40a8d0c374b9afd72e52da38539a3dbb0899f722
MD5 9b328c3ad87c59930aa6434032d9d569
BLAKE2b-256 d3eb8347f11f5188ef06940033a7a68642e48b677199f92d127d300b923cf50c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b96552b0f240a46185abdaaaf9c75c5a2e9c385dda7dbf9825e173dc8b219eda
MD5 ea84cdc0f82e4ee9b80c62e54275a9c5
BLAKE2b-256 3247336cca7d1e177b78a06af49ca5b60d5cbb9bc72acbf3cc4e68552f85d926

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 43047cdd772c31de8a22939e1a22801d957d24ebdb56e3d6e601b91a2849d2ab
MD5 fdb4075c9b43ee3b32d10a530c45e852
BLAKE2b-256 20d6ace70ad3363149974757c5cc47263b62ca1d0b40ce600307c52f1c0a0d3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c2c3994a89aaf95d34214cf63bec154dab5ae13212f11849e8ae5c5443da73ea
MD5 9568b46e006c5848401bcf74c34cb156
BLAKE2b-256 04adbebd4fc7e93af78c3bce978483d22d1e1ea2f75223f5fc6763462d7f2e69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6c533c506bd84ef68072b9a9be293ecc93f00ad1de4dd0a4a958587c3070ae9a
MD5 108feae9143478e1cff520cbc03eeea8
BLAKE2b-256 a10805238b805e047a2c80e4a00a47d2092ddc5a6d2f0e7d93d0bda083f69b15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fe9bea3d27346638f059bfd0ce00a68bced799b5f5de24dbf3709ff668a9ae44
MD5 70c2adb9b27bb93b58842faa57d13048
BLAKE2b-256 01de804c60e5789c889d597c9c6f871c99629b96c76d5c9dd6591ef4fe3df939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5a4a95f0d2b51bc65d2a0a9c60dbd208ce94abe5a431a4ede94777b10dfd5fec
MD5 6adb23a7d3478017ab2361c4fb488930
BLAKE2b-256 545ef360f4dbac5ed268d6adc5a3b56aa3af990951bcb66a0cd5082fd481dcb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8fc3f719acd878ab8fef5da180900f049b96570e09c116a79842fd0fb6a0b9d1
MD5 688d17156e330b628ea9c019b2742b91
BLAKE2b-256 0fc551fa1e2885e15bc50501506bdb3644b1fcde38dbb5ed4c85f9c3475afac9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 480a2446e9a3a7e580f6abcdd6df0fc496e020798c827791cfb8ede6d0ec61c9
MD5 dc6ec6e6ded8986be4124e5a8a7bd40e
BLAKE2b-256 dab5a94bc31ae2f6a3f1d701f53dd42a1e6ec308e29b038972d8dcf44c06717d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1be7edc8a5e113ec16b41bd2a160d5fa56ba6739f14e83e57048e95b58bc385d
MD5 c665d1de077a79ac553dd92090c1c5ee
BLAKE2b-256 06e092df676f1a3c30b734feed94357f7149f5cdc9566dd79e608e8401d0c523

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 826a3a3420496c370d6a5a938771b082a8a57f318ef668cd62cbfc3cb4ba1e81
MD5 eb186d8c299979b021a8d90054ad9a80
BLAKE2b-256 2b6d248d2c9162612234dff5fb3f60983dbbc08601ae5a967e38f04874c76d88

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a38-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c59f3d97a93ec6762ec55e22d9add819b2d215155173cac955af8296f3e6c566
MD5 ee162dd2c55d52580cd15f735f672682
BLAKE2b-256 f8437ca4b1350819d8098cdf7acbeca4a5cafece3c5d742cb4e21a5b564e5fa8

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a38-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 65e3ab51d976f842d780a40283d0b791df122c08705a85d2e20cbd22ba61b94f
MD5 2ccf035bb7200755338e9efb5a340b1d
BLAKE2b-256 1d76d5f83f827a6eb1e5dcea15f60684b6732fcd528f9312afe1952c81e943ca

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a38-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a1d06a25af67c52e20099b00b879c8806db2e0780e06e0dfa2a2502f1fb7c755
MD5 0256e7bbabbc26769af0a3fbf4c4c178
BLAKE2b-256 411bdd97ce73ec1a32893f277f1cab9dc437114b7c2ab8da3e24be8365118415

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a38-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 cd9063f63cb558e656e4755b07bb5387b94fe691f81c98b17ddaa8ea9002f955
MD5 01d6c91d9762a701767b0c97c6656b76
BLAKE2b-256 06ad9727d035c614852979953a2660dab400036558b59ea2364dc95290457147

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a38-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69c425349655f6c89aea956618d0b482c8ef92217ef6fd026f4a7c2fe8e1bd47
MD5 564a0d0a165df11a14b5f321cf05f629
BLAKE2b-256 d2f2040b9ab067e2c56762c55aca67fc3dd8da78507bb601c18b2cdcd60ef638

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a38-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33d59fb720ee4cb2d6db2c46acd61b5a989e41911ade0ae46c5cb056dadc923c
MD5 bc948babae54124d58852af0eeacac91
BLAKE2b-256 2cfc6bf5486a379db1b32d97a2662354b715da494b15c8a7b00f8827a25a6d08

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a38-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a38-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c30d47fbf230dfc90ad3f9b4299d4881ffb91fa36798a3d0cd095cade5a8bb0
MD5 05468d7a7d2d90f66256e79a6542717e
BLAKE2b-256 eeb184989e5d879261f5d1da6425c3a9b89ba4dd903538c76fd41e4f06571c29

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