Skip to main content

Easy Graph

Project description

Copyright (C) <2020-2024> by DataNET Group, Fudan University

https://img.shields.io/pypi/v/Python-EasyGraph.svg?label=PyPI https://img.shields.io/pypi/pyversions/Python-EasyGraph.svg?label=Python https://img.shields.io/pypi/l/Python-EasyGraph?label=License https://static.pepy.tech/personalized-badge/python-easygraph?period=total&units=international_system&left_color=brightgreen&right_color=yellowgreen&left_text=Downloads

Introduction

EasyGraph is an open-source network analysis library. It is mainly written in Python and supports analysis for undirected networks and directed networks. EasyGraph supports various formats of network data and covers a series of important network analysis algorithms for community detection, structural hole spanner detection, network embedding, and motif detection. Moreover, EasyGraph implements some key elements using C++ and introduces multiprocessing optimization to achieve better efficiency.

News

  • [08-17-2023] We release EasyGraph 1.0!

  • [08-08-2023] Our paper “EasyGraph: A Multifunctional, Cross-Platform, and Effective Library for Interdisciplinary Network Analysis” has been accepted by Patterns!

Stargazers

Stargazers repo roster for @easy-graph/Easy-Graph

Install

  • Prerequisites

3.8 <= Python <= 3.11 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
  • Hint

    EasyGraph uses 1.12.1 <= PyTorch < 2.0 for machine learning functions. Note that this does not prevent your from running non-machine learning functions normally, if there is no PyTorch in your environment. But you will receive some warnings which remind you some unavailable modules when they depend on it.

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}
}

Citation

If you use EasyGraph in a scientific publication, we would appreciate citations to the following paper:

@article{gao2023easygraph,
    title={{EasyGraph: A Multifunctional, Cross-Platform, and Effective Library for Interdisciplinary Network Analysis}},
    author={Min Gao and Zheng Li and Ruichen Li and Chenhao Cui and Xinyuan Chen and Bodian Ye and Yupeng Li and Weiwei Gu and Qingyuan Gong and Xin Wang and Yang Chen},
    year={2023},
    journal={Patterns},
    volume={4},
    number={10}
}

Project details


Release history Release notifications | RSS feed

This version

1.1

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-1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (775.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Python_EasyGraph-1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (791.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (775.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Python_EasyGraph-1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (790.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (779.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Python_EasyGraph-1.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (794.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-1.1-cp311-cp311-win_amd64.whl (642.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

Python_EasyGraph-1.1-cp311-cp311-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

Python_EasyGraph-1.1-cp311-cp311-musllinux_1_1_i686.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

Python_EasyGraph-1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (795.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (794.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

Python_EasyGraph-1.1-cp311-cp311-macosx_11_0_arm64.whl (658.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

Python_EasyGraph-1.1-cp311-cp311-macosx_10_14_universal2.whl (972.8 kB view details)

Uploaded CPython 3.11 macOS 10.14+ universal2 (ARM64, x86-64)

Python_EasyGraph-1.1-cp310-cp310-win_amd64.whl (645.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

Python_EasyGraph-1.1-cp310-cp310-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

Python_EasyGraph-1.1-cp310-cp310-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

Python_EasyGraph-1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (794.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

Python_EasyGraph-1.1-cp310-cp310-macosx_11_0_x86_64.whl (704.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ x86-64

Python_EasyGraph-1.1-cp310-cp310-macosx_11_0_arm64.whl (657.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

Python_EasyGraph-1.1-cp39-cp39-win_amd64.whl (643.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

Python_EasyGraph-1.1-cp39-cp39-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

Python_EasyGraph-1.1-cp39-cp39-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

Python_EasyGraph-1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (794.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

Python_EasyGraph-1.1-cp39-cp39-macosx_11_0_x86_64.whl (704.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ x86-64

Python_EasyGraph-1.1-cp39-cp39-macosx_11_0_arm64.whl (657.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

Python_EasyGraph-1.1-cp38-cp38-win_amd64.whl (645.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

Python_EasyGraph-1.1-cp38-cp38-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

Python_EasyGraph-1.1-cp38-cp38-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

Python_EasyGraph-1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (793.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

Python_EasyGraph-1.1-cp38-cp38-macosx_11_0_x86_64.whl (704.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ x86-64

Python_EasyGraph-1.1-cp38-cp38-macosx_11_0_arm64.whl (678.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

File details

Details for the file Python_EasyGraph-1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5b975b9645cd60117c6aa7ba760128e0aeba40a2203a9a126e56501c7548bc3
MD5 747d63cf4d43d8627c348bdf986d2b4a
BLAKE2b-256 767ec0ca203bca3d4d0358804449ac487c0a76029ad6293bb1dbca98a35cfa49

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4eef376827e2dea928b9b501dbfd549e647834019c94e4674500004e0b958ca5
MD5 72d5afaea9935e30650ad5751030fdb8
BLAKE2b-256 faf6e3cd94313b3a55c2d1234dc13332f7dd81967754e17862bc5eef82036ba1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a7e87c271c0372cb19e888ad18132f078753df35e78a9c59435c9dd3720ca64
MD5 04c861f0d732b7f63af03e632bc1c2d7
BLAKE2b-256 c9cc734cff4b6c7d4b1bc00f2a17efa7b146612bff88ca9c0597bf2e9923bec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ccb5c2c9676d90bbfdaeb5b19f591a63e796efc9a9ab6c24b007dc8cfdd38213
MD5 4dc5aa8c5c1ea2c0f7bc3a139eaea82c
BLAKE2b-256 53466e2216a8ed51397fbfbfc91ba04a096a001102c30e91594df6a5231ee115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 adf5aac2331fdc9410fe0df9ae00137f0800fb2bfa67f49b0027a6d63220e563
MD5 f95eacefdce1f2203e66b2a80513b1f9
BLAKE2b-256 041bf79a89c069f829c2c061817f7570bc65365ccb045932b770ebfd78af7c93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 03c387219e2637228aa8eae6cf823a208515b20034e6f6ed6e82a0e48a3be5ea
MD5 8f40afcbef4e61b699935e72e8d27718
BLAKE2b-256 f18ae3fe9bc4097c999334262b6895aaf064333269d2336eb05c37ac0a8a3cb8

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 04a1844735bb610ef43d575a6811d7222d01bd9f296486f5b588e3489d5ef1b9
MD5 01cd1110e9ff0a34ec303c9d1c5f2564
BLAKE2b-256 616c9b5e4ba8450010cd8d7e3170715aed6d08ec55cb2691edc72bf667cc8b5a

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 50a927a4e611d0679190a1c65a44bd20ed81631cb736011ed05e56a396fba52a
MD5 f67f11b9962eb122f8df28532947f457
BLAKE2b-256 5fda66a1c61e206eb0e8dd497a397c8c1297856983a119cd24c294ee85499762

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b25e9712392a88c94f60f46141673f47b00d17414912d7b554cb0d113e8211a8
MD5 afd72f27ad5f9e18a790ac00155dc93d
BLAKE2b-256 cc682cd9da764bea82cda15a4007dedfbe2e8f6cb3756e9062b020141fa47651

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e33f7801aaef9f66bdf1776190a9ca077ed059bfc1227c5428971f23173ed4e
MD5 c506f04fe0772e46c4b1be0098ca4b96
BLAKE2b-256 93ee669b085c69f4a2322ed56b954633ce6126be9d732da980411a19ee76aad9

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 75134bc3d1a3e2e584ace8e7f0383e2a10c0159c9a81dec7d3dbe35bf55f6019
MD5 e730d8553743edc66cb91def28f6a8de
BLAKE2b-256 9dfa24d6674e7605bcbb69b0d0f9eef0a2710e3ca106da216b9038c131161d2d

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 daa7408fe72ae37c087f64907b5f59f937ef718e594e29e3d7da524a00d847a8
MD5 9f43a4fc7676d5205f3e2cac67149c01
BLAKE2b-256 7a8f6c457b3a78ce93eb65b3a2e0e6edd588fdbf3ee5474ad1637497782da5ff

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp311-cp311-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp311-cp311-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 9cd9a546bb95826746e766c90162fa49d896a9eae6ff6ab928d42a30480ebc48
MD5 49fc0ee6c765a2ded0db14a6a8920bef
BLAKE2b-256 cd8aab2ae1ac0fb6abddf90fbec665a97bab1b0197516d6e4a968116d13e193f

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1d02e101488fbfe6128c5ebd0efebd4ed65dd57cb1eee0d5f4e8081eb7df86cc
MD5 535e2f150c0157441c40e70f2a3edac5
BLAKE2b-256 de1b349c5fda0b63731fb0a1532a8b3ad1c8c82fa380be85caefb100da32bab4

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bd90218e5a0c3a4f3af194035afc0a2af058cdfdef23f316ad122cf822672b2f
MD5 5de1974f244edcde879f35c60c495b5e
BLAKE2b-256 dd9bb6e11cfb2c50d4fc1f8e546aa51595fd0be527c27fe908c2050686108029

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 13c4e0d496445faa0bd0cda8c24146cac800304f96cc156649c2e9698c71213b
MD5 7251f10942f7a539b2285667afc63f13
BLAKE2b-256 59f89604ea403629d7f308e2d371c6d03c2444cd3f59eefe8560619efe8b5517

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c878b25dad14059c3949b1bc04ef3127bc1bfc4989e80711a9cc0f61ef9740e
MD5 94f989b9da6fbf3eb698f3dc8016edfc
BLAKE2b-256 dc8de4395f661835c2777f71d077dc281921a1b1e7f7a4cb6dcef51e9d18e603

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2a962fef8ccba1ead9516e3ad7dfd1c07b88acc742a801ed21649d2a062d1cca
MD5 2bc63a2c21d4198ad521b9b9678f69bc
BLAKE2b-256 34a9e4045c2d01320d313a36945d8d269b95174af76fb8fab8868a1126db4136

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 976a00f364aba9357a344db5a5d5f13769481ad010d78c1be35dfa9beb5ecc1a
MD5 bbf20563ad5467501b9714fbf6757296
BLAKE2b-256 9d84c482777b492baa2dd0b265ebe46e6097997d48f75b5c640ecb584a422641

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1258f9e9531cd720aab1a750d2c2208f1167512793bacc9d8ef65ba34e0b281
MD5 b256d17b2d5753b2a182ebc9cc9031a9
BLAKE2b-256 ed9517d1cb0a2b59a9b9431e65753a86a43a83062b6d9438ab256b8507b7c391

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 85eef8fd15d6618075207307adb51a74bbfd651c1d6f2f47b065190ccd6eac08
MD5 06f5c0613fde968f870daa92f8c62369
BLAKE2b-256 130d9290e5156b671928f0d770c412e2c11d764718e450a0c5a34054a2668d4f

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f1a6ccbadeb39475ba6f3c035228ed75e89911b1e815c268e029b80b1f5bdafa
MD5 c2a1f6bccc0bbf5c6e0f176ccfe47594
BLAKE2b-256 869bb93a8921cd7781dfe9a5b0cccb2d6145578cfd50d8b2371160162997b72e

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 113540302e36cbdc79d0aa95d331caf354c662d76bc428c5121b2c8ac05f8529
MD5 56af5cc9eb592665d0f5ae17df0cc366
BLAKE2b-256 36e1fc90dd307157267f70f4b30846d53184eaf950125b67e9e2b403337d5052

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1717d87d755c5b8e544602694ff02ef76ec40f2ef676a693972b6b2856c6f8d4
MD5 8ca34624fc77d5b509435f249b495299
BLAKE2b-256 caa3a20601c51c79e4debac125bded3d94f0c01793a64b57b1f604614b9b5c47

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ccf8d18a8f834f3e09372489cbb55cfa18cad05debde6d6edbcd611ee2af919d
MD5 265e5b4e6ff8178f83ad542612bf886c
BLAKE2b-256 26707f47f9a9b34d44aede937af459c3496ae521aca49be1cb3134c25d2d980d

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9bf06ff1b3374cea814cce89b4377824126473a88d4e3d54ac128848475f65a5
MD5 c62996ee7d175f01ddcbd1c9f142df88
BLAKE2b-256 d09eba3cf04f398b5bcbba09bcc0624dc07fad363bff00b4ac1623ed9d5e0369

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c21de7261965e879c9448b328a878a2428da355f9dad3741be73ac9a78b4642
MD5 ddd6af6a32e994cb7dc66b70df567950
BLAKE2b-256 2f48655b18217d66fbce8681eaa85748a07fa494177d66c0a20d68a148e17cc7

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c480fbc1728f10ae60878ca216b5b89913f6c8c4008a5ed643cfa860f07850ce
MD5 a8dfbc1c0078cce1a6b2fbb061fa8ecc
BLAKE2b-256 c3b9ab38d2b26d9d93e8cf5b1cabde07967cf0b59e90a17b7a819923ca834d2d

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 889895f47248074ebb611122d0817ede5ddb39c218624a690e8dd1799ed8bb32
MD5 a9be3a0e8e990def019b29c0eea4a21f
BLAKE2b-256 3816aa775ff95d0e1fdf94cf4dd062b72b1046ffbd972fd9f28d88d8d41e73b9

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2fa6cbc6d0022973c6c0e20ebbcd6eda9692711c7d03647efc47ed4d94d1587b
MD5 abd9f81ded322d6f7359eb8fcce3f335
BLAKE2b-256 4414736931c00e8a4c83b8dc90a9f232f56b5471ad36cf5470cc3fd30af485ad

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc6859d4e1dff6709f5f554cfefe13f5994e5a1b15bf97fa2b0ada059239cdf0
MD5 087589e471c18f43be1396094d5c873a
BLAKE2b-256 6de4ad5d730812f36334311b41ece8d84aebb8d1c9af311e603fef27d32e6e90

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c6234cff93b69b950a9ecf9a4bd9ffcfaa5582c05ae1be95da775bf5f6b3b723
MD5 c0c2515293bbaa14ca3c0388b84deaac
BLAKE2b-256 a9cdc6a9b9a3097a6363c118517091193e6f13d60c77f5ccb18c9fb0aece75ee

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp38-cp38-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d7a4e7fa88808f385b42bb1a88e1094f9cee77154201183f4c27e92594604c5e
MD5 0d6bb7e6ba8ce7858575b1454dbf6843
BLAKE2b-256 9628329d5964b24b5ad24eda28a421fb8d613fcde0f5c90c1b43370ecdf034b8

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df113dabb7a2e9e632111d8dc19acfb94ab0f4c4fa93717b86a788d3c9d63701
MD5 765e3d158e9f751953ad43ab21cfcf84
BLAKE2b-256 94135143364c421eba1a631651c9782f3aad95e949668c03ff72adebdb34bf3f

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