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

Prerequisites

3.9 <= Python <= 3.10 is required.

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 build_ext
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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

Python_EasyGraph-0.2a48-pp39-pypy39_pp73-win_amd64.whl (528.8 kB view details)

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a48-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (652.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a48-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (668.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a48-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (583.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Python_EasyGraph-0.2a48-pp38-pypy38_pp73-win_amd64.whl (529.0 kB view details)

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a48-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (658.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a48-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (669.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a48-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (584.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Python_EasyGraph-0.2a48-pp37-pypy37_pp73-win_amd64.whl (528.8 kB view details)

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a48-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (658.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a48-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (670.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a48-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (583.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Python_EasyGraph-0.2a48-cp310-cp310-win_amd64.whl (529.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

Python_EasyGraph-0.2a48-cp310-cp310-win32.whl (491.7 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a48-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (673.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a48-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (673.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a48-cp310-cp310-macosx_11_0_x86_64.whl (592.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ x86-64

Python_EasyGraph-0.2a48-cp310-cp310-macosx_11_0_arm64.whl (561.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

Python_EasyGraph-0.2a48-cp310-cp310-macosx_10_9_x86_64.whl (592.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

Python_EasyGraph-0.2a48-cp39-cp39-win_amd64.whl (527.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

Python_EasyGraph-0.2a48-cp39-cp39-win32.whl (491.9 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a48-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (674.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a48-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (674.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a48-cp39-cp39-macosx_11_0_x86_64.whl (592.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ x86-64

Python_EasyGraph-0.2a48-cp39-cp39-macosx_11_0_arm64.whl (561.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

Python_EasyGraph-0.2a48-cp39-cp39-macosx_10_9_x86_64.whl (592.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

Python_EasyGraph-0.2a48-cp38-cp38-win_amd64.whl (529.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

Python_EasyGraph-0.2a48-cp38-cp38-win32.whl (491.8 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a48-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (671.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a48-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (672.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a48-cp38-cp38-macosx_11_0_arm64.whl (569.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

Python_EasyGraph-0.2a48-cp38-cp38-macosx_10_15_x86_64.whl (592.2 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

Python_EasyGraph-0.2a48-cp38-cp38-macosx_10_9_x86_64.whl (592.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

Python_EasyGraph-0.2a48-cp37-cp37m-win_amd64.whl (531.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

Python_EasyGraph-0.2a48-cp37-cp37m-win32.whl (498.7 kB view details)

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a48-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (675.4 kB view details)

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

Python_EasyGraph-0.2a48-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (686.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a48-cp37-cp37m-macosx_10_15_x86_64.whl (583.6 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

Python_EasyGraph-0.2a48-cp37-cp37m-macosx_10_9_x86_64.whl (583.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4fc4b99b3678047dd23ac5b67008ede1a63f286a2c83ed91cda0f1f5c678a1a8
MD5 a4012b6c7814628078dc00304b6e8951
BLAKE2b-256 e3a339457020cbfcab3cbb4dfcc772eda7ba1d87c869f2e265c9fc57de1d9eac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 afb9da8dae92f007350e0d4761eac98c72ee118c73cb7a968adbb25147ad840e
MD5 45ab20b3bf95437b1bc9189e69af53b1
BLAKE2b-256 44a1d036e72979c2403da6aae7cc7908611896007f7ea5295fb6c724d046bed7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c5786db18ab38aa120fd3b08eca4e3b57b1d2f4eb9db4d5443012b2b8c016327
MD5 258f29c6ae099557bc8df90aac65ae65
BLAKE2b-256 07b6cbf2b70cbb2b347fb2ec92d1e1779ec741ae477c864ac5e5ceaf851b6619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 980166e318737d31d7935fe20cdebf4087b3e179c0c9208ea30c6589d8af5c2e
MD5 59207c7c6d926edc46bf12d0f12f6a10
BLAKE2b-256 936be660d72ddd22da5e7a328037f4947e4db7f62fbf50cabedb68c8ee729f1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1fac0d5582461233a0058d4f7a93f00937cbd65f22d1fd099b9d1de12fa30e2f
MD5 e0fd5467e1cf0113750e482a47480cbe
BLAKE2b-256 74821e2cb4c8bddc118aecd437e665d8651c667eb086163c119a0e7683760019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64a6c85f08ffdf5e0f7e2c33c5ce9c5e4eca38201623fca288e16f6e2112c4b7
MD5 e5cc706b4bcca11330010e9a33a5a59d
BLAKE2b-256 c39ec83c915fba7456b31abeb3ffa2acf8093957f38e90b788024d0781127cef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6f6de75ae79efac89ffa01529d64ab7b51c94fcd260f2e10a03c3f91d481a4c4
MD5 b4014876203b5dfa16479a93a69327c5
BLAKE2b-256 0eec7f17363d04cd6b0db98be3eb41b01b344b70c99d521aecef5b3b3c475c81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b48a8c0cddcd6c2f7dc5cebf8a77eb69e62313d6e10c76be44fd4c36d2eff6ac
MD5 44fb584977e9b9a80bdb5f1c29a35395
BLAKE2b-256 264b509abd82e8a24bfd921c9052902ca8703c05cd8d92b4baa2987c17a6cbf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c9c7aceff18bc72484a8d571b99b19f8cf2a8894200adb80e60d7c9302841e76
MD5 1a92412e2fc75a4cda6d39e3a1802ac8
BLAKE2b-256 3ef3957439e2ec6fe4195e1326b2fd7f559829d89d706b2ce33c6d0c59529d3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6aa02e9441435d9ed7d429a5c904cfa1416ed5c3b0221773e7dded3850e7f10d
MD5 94651567082a452b34bec3f081c53b3d
BLAKE2b-256 5f07b75da55dc8d8ccd30a5c9372b94962f662b76ff4c1844ab190f2a2a60adb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5903cd11973b2d4aa776b6961759883cc57a40b23d1cd61c8f4ce1916e471280
MD5 b8acdbe5b37179cd0b406e7a81312a28
BLAKE2b-256 19a788815f64f875908bbbdcd06260f4965d47197f1f4a1de81b644c2b56a3fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 70669a4e9048b0cbe8f87dcef7f6ae9eb1ad47e9e8bb33a3aadd1c9248da7b28
MD5 1f563d70c06293ca88282a8bb5cdd474
BLAKE2b-256 91740991aa433917e89639da46756c054f0d4298da1685354fc7b75ed4cde17b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dabfa882c9fe3f8e7fdfca3787724e07e04a6b61360442cab0e80516fcc68f03
MD5 1d78da8667d0ff0ce50798962309eee6
BLAKE2b-256 51f14714a8970874ba32d382e31e21244f784acd829937c9209b9ef633e41b33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 607227cb0656f34ecd83de6883be25c53750681976a6fc283d8477988e1d4157
MD5 680d8bd3a45e5cdfc197733674872ac8
BLAKE2b-256 0817d4cd92c756cd5aa3655ee6ea3ab7235c9768c7fb8e6acc2cc68a0a49309a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 53f8100a34ce3619d0883b833c9121e260ba799f5d267a4e6dbcde5bb5de5ccc
MD5 83159f7d96b4ea101c2dc0aa4d7404a7
BLAKE2b-256 0c37d8cb3b8a97b32468db32c28230837cbb86d0bc309cd3654bce07dc89f8ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 edc3ee7256ae559b7a71c297ea999bca92508b6f818868f8a71d51e5e7946ebd
MD5 2555443c1472dbbca25959e8545d8da0
BLAKE2b-256 769506045d2bc160451360ab3f3b3b3247624b11f72012956311061f9ffc51db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a9ba620dfefd41ebb8e83c3701cdc8d14ede591df86e61a8c628dfe6234934c
MD5 74553ca831d919db3f7c36cac54149c7
BLAKE2b-256 df9e560c5109e4f2534ffdf854b08e3b26d3c4b558d2680ea0972f5edbf91978

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b34dc6c2e4876004f0febf9e7ba42cde6c045597aa8a575d9136aff7aa41be20
MD5 a117f62a66a4ce1832a963e3a594cd36
BLAKE2b-256 b919ddd3d9df4ddd46d7e5f1575ca3c558952b03090a399a549a339437d9ae8e

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a48-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ce2851495da4947fe5d1faf783ad5a135c432df118d33dee2db1ae64fbed9f2d
MD5 b242c8c564490d2aa754ddd4d2ab9402
BLAKE2b-256 a36eec7dcc21a2a7fe4d80d16b48d89a630cfa58b8517a3313d02e9c54d963d3

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a48-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 402de38694ae4b17e31d6794dbcd0bd2ee7674f6adb17cac00b43dd26bf36ea0
MD5 cfa72f79112ebd10ccb8d54a32dbffeb
BLAKE2b-256 beaf9953f33b7e365ccb3b13329c95dd94f38e032ff7480ae8ec322c95675456

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a4e55c6aa4fcb5b56777d76818a9503dba7d775fdf62d419e0d0d7ae04d5d00
MD5 d73c0ab3e37e459b67a9b8da9924be0f
BLAKE2b-256 0358c52e79d5897f4e06705bc9e368e25d3f39baba59511743f6b2fa65092b4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 143abbbe709d4848aefefac4758148452523a2f27b228dec45ee8341796ade44
MD5 cca03964c09d395c20850f21f0145bdc
BLAKE2b-256 da6423c0d25dc8d8ee582de786b39c6920239091b417e2db135578b6d5fe8f44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c51f632fc22094e79aba13bf88a9748a4837c4727925a5dc42092518c4c8c016
MD5 af2ae2ba4b33a46048f4c9514d77b6af
BLAKE2b-256 25ffe4dac4495f4a8727355f92f439e151a76b379c52acbbf3358b3819426338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7a47ef8ecfae9ba3f52362b640dc3ea97c29c1ba7a0ff3c185052471cdfe7b81
MD5 ca3961cb74af9c53db17dfaaf1edd810
BLAKE2b-256 303f0325bbbc25c754e55ad832cf43f2c7c1bba6ab233e68acb7ce8ed199f797

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6e3fea371437ea66afbdd753c27e714f13ae73acedf21b10d7afe09457aef580
MD5 2a3e156765477f0c37b0ffa0664da1e6
BLAKE2b-256 7fe74c194d8ddffd46524bbbbde51e96c95022a37185eb05ec58e7552058bf96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da1a9b0b9c2e5fba234e72abefb843ccf3d7cbb29f0a0a0e1281101b2c93319f
MD5 e946dc4b057d7444d639eabb66d4c927
BLAKE2b-256 b95781919e8f5d07d1cfcce5975889b43b31e257a8f886107d45bf9d28f874b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95a655775f065ca41a04fd2623da2011a87545a7bae4dc0698d62716d51a3ecb
MD5 95ceeefb64900858117330133efbf8d2
BLAKE2b-256 fd9655a9e65b72e7b7414c448d9593ed10dcd8bcbd4d29310490c68fd6c334f4

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a48-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 10a644cf0231f389f65dd919765802fe4cc259d8aebcc9c91436a237b8296189
MD5 f05007f3d4366c52990ff24c57a2fa07
BLAKE2b-256 1467ee4cdcb783ff2ab3526cf763bdb5ef5b642a9a9b713d51b7824161b2b3f4

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a48-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdb831ecbe624b242faedb47e7142ed5c57651fb05ba3426a1abdb5c9ae5c9e1
MD5 a88d30c3738f748f8bb2484df1613bdc
BLAKE2b-256 08b07d91f68b3be22839be8df2b7e1a192ea42232c305262698bf9c29a02e5f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6ede169903af42a2c21ac018cb09fbe23e5918225156af4c8bc32955435664e9
MD5 d3419c32674ff0f4d40c3e9f90ed641b
BLAKE2b-256 39855f20440ced455de1f3ed7a2d83451feea3a359772080064280f949650be2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 20829cbed6a7f1f4b4e4f272eae0a934406e611a36fdd6b6da9d49e1fd0896b6
MD5 ec03e9a96239708007d19556add1c2a3
BLAKE2b-256 a22911216da8210709194a07c33379bdc59fbb27dde308b429519ec95d7581c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 db4999b9b7b0b3d07729d514b56b1cfb7820826b1c37a7523afec813e600f5be
MD5 d61ecc13f9ed1c298de8ca715cee3ba8
BLAKE2b-256 da35bb41f9bc08b61f64510ca0049763a3931d4db127a10d370798d6db2e958d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3600f330f76c2a63b1265dd8bc11a2c8c7f96e5448f8775c4a7029d653e8f9bf
MD5 83a65547af08b4e7f90c21b6a7349f64
BLAKE2b-256 f7fc0724446672e6a55adeee4ede0fa1d71142490d11f3482e81c9423b97c6f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7d4316d1649bd1d57a61a4ac05f01e1131cde75c5df1bd153b54ffdde2f13f5f
MD5 058764262023021bb792994b707367d6
BLAKE2b-256 9653796566d1c7efb0fa6fbb8d0d78f3e9a5a5de6506bc28f79b10aaa9246151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d98b5f403549be11c6fb94116803702084e0eebe709bc8d94a96c0bf8fb94401
MD5 75ab6f79f1d09ffbac02d33af423d694
BLAKE2b-256 b2ab116b6f034496a05a2d63539aa1e85eeda5b5e13801a88b4d63f4a1071102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 84edd62c9b40f13de5de710cdafa120bfe12f8480fdd2e55adb2b90c173239b4
MD5 e374754d33e4b715ce79edf21cc29db8
BLAKE2b-256 6fb1dfef95109cd27a1729424bd7f5afe776560a445aa7d3904d48a8a6164d3e

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a48-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f5c601847d9a45715c8d6ea1bd3d933f76d906fe1be7070a3a4b8079368b6dc
MD5 826b2d053c701e26c6c2da0f3b3bfd28
BLAKE2b-256 b97f89c4d47aa9f371f5d5efe20bc869ce457414c11a6b22db4b0be28aaafeba

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a48-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8b8f244474603425df5d69d150b890b2f909ff22f5163a2dce3e5dcc129474b4
MD5 7088a880fb3932072207b89ac59af9a9
BLAKE2b-256 0246facf8d507d7c4a082bd8e6128597160921e2821bf83b58f01aa280bf6768

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a35bab53e097ffa4921b850ba20025db43b64e56b572fc4837ef278caee6e546
MD5 0c952c4b5fea972ed2480e8827b65122
BLAKE2b-256 1c82730425e0bcbc6534ef1746a79f4150cae3bb52c46f400a7de09a05348393

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5c109a5f7394800ca9d5c41e1f49a44e699b2433ca6515fe1fbf240bd054bef1
MD5 1bc73b031b1a338265876307a4fafac6
BLAKE2b-256 f030fc281ec7385bfac69839ef220e1b9eef4ac1485fe5dac1511c1cc7199378

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 943bb156cace019c1acaa53e7d9173346e0e1be0139c8018102aa4a53a6ad960
MD5 18e03c16cc4a64b1fdb36ef63234257a
BLAKE2b-256 337abd744ea608b0ec06ee23f1149b5dea400c0851d7e2cc6423f09c32c36616

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0cb4a013b409dd0750c31bd9fa274de4ef65d4bfa63831600831d2e10c3df3c4
MD5 61a5597af4ae3dc01fc624f213f46f7a
BLAKE2b-256 ff1ecf504eb74d50f5ee8e78e3c0ca5c3b46da5d0c3dea5cd663cd88d369a012

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4b8cec6135df282d013da1b800544a1df9778a2bea5fed8a7026fbb563f3e33f
MD5 c9dae7a6e153d382fb8f72b29420631f
BLAKE2b-256 76e56b8155098bcdff44c206775c97386f8acf4cad95516f856817719ed74547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a7237001b912b3b23527c7e04587131b917bed01b9a4f999f9b30d8f66e6b40
MD5 0bf7d56c96e263ac06a4334600e2f33e
BLAKE2b-256 0291319aadac4e13e69780a61586322a9ab555aaba00efcc9509b7415f48d01a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bd1db8ff9e5e4d8771a7cb898ceab9b518c495f36d906c1eacececd2976340d
MD5 1846bc4b961f5180599cd8252c0d6d0f
BLAKE2b-256 acd1fb9652037d0e93735e143e591499f0e63518f38b100350b744ef25e8c930

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a48-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 69a0fe27230c5dda87bc1d746726228bf77855099acd2472519ccd889c3ef3a1
MD5 7248bab7eceb607adaff297ca3a40b0c
BLAKE2b-256 86f0a213f8266123c1264905e2a690ca92735f4bfe270b8d1205146e605cb034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a48-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c5e3b5d016f534d87c019ed641e4322fb9221458be76c428fe7a24765d7c3a8
MD5 e5069e7b64625ca58ee5553045ade42e
BLAKE2b-256 0ac621b3db73aa822aefa933f4b79e0cee9b56a5d8ec0efd6fd447f97ab3c1ed

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