Skip to main content

Easy Graph

Project description

EasyGraph

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


PyPI Version Python License 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.

New Features in Version 1.1

  • Support for more hypergraph metrics and algorithms. Such as hypercoreness, vector-centrality, s-centrality, and so on.
  • Support for more hypergraph datasets. Static hypergraph datasets and dynamic datasets can be both loaded by calling corresponding dataset name.
  • Support for more flexible dynamic hypergraph visualization. Users can define dynamic hypergraphs and visualize the structure of the hypergraph at each timestamp.
  • Support for more efficient hypergraph computation and hypergraph learning. Adoption of suitable storage structure and caching strategy for different metrics/hypergraph neural networks.

If you need more details, please see our documentation of the latest version.

News

  • [04-09-2024] We released EasyGraph 1.2! This version now fully supports Python 3.12.
  • [03-06-2024] We received the Shanghai Open Source Innovation Outstanding Achievement Award (Grand Prize)! News
  • [02-05-2024] We released EasyGraph 1.1! This version features hypergraph analysis and learning for higher-order network modeling and representation.
  • [08-17-2023] We released EasyGraph 1.0!
  • [08-08-2023] Our paper "EasyGraph: A Multifunctional, Cross-Platform, and Effective Library for Interdisciplinary Network Analysis" was accepted by Patterns (Cell Press)!

Stargazers

Stars

Install

  • Prerequisites

3.8 <= Python <= 3.12 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},
      pages={100839},
  }

Project details


Release history Release notifications | RSS feed

This version

1.3

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.3-cp312-cp312-win_amd64.whl (644.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

Python_EasyGraph-1.3-cp312-cp312-win32.whl (605.1 kB view details)

Uploaded CPython 3.12 Windows x86

Python_EasyGraph-1.3-cp312-cp312-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

Python_EasyGraph-1.3-cp312-cp312-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

Python_EasyGraph-1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (785.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (795.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

Python_EasyGraph-1.3-cp312-cp312-macosx_11_0_arm64.whl (698.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

Python_EasyGraph-1.3-cp312-cp312-macosx_10_9_x86_64.whl (726.4 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

Python_EasyGraph-1.3-cp311-cp311-win_amd64.whl (643.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

Python_EasyGraph-1.3-cp311-cp311-win32.whl (603.5 kB view details)

Uploaded CPython 3.11 Windows x86

Python_EasyGraph-1.3-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.3-cp311-cp311-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

Python_EasyGraph-1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-1.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (794.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

Python_EasyGraph-1.3-cp311-cp311-macosx_11_0_arm64.whl (697.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

Python_EasyGraph-1.3-cp311-cp311-macosx_10_9_x86_64.whl (721.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

Python_EasyGraph-1.3-cp310-cp310-win_amd64.whl (642.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

Python_EasyGraph-1.3-cp310-cp310-win32.whl (602.2 kB view details)

Uploaded CPython 3.10 Windows x86

Python_EasyGraph-1.3-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.3-cp310-cp310-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

Python_EasyGraph-1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (790.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (791.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

Python_EasyGraph-1.3-cp310-cp310-macosx_11_0_arm64.whl (696.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

Python_EasyGraph-1.3-cp310-cp310-macosx_10_9_x86_64.whl (720.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

Python_EasyGraph-1.3-cp39-cp39-win_amd64.whl (640.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

Python_EasyGraph-1.3-cp39-cp39-win32.whl (602.5 kB view details)

Uploaded CPython 3.9 Windows x86

Python_EasyGraph-1.3-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.3-cp39-cp39-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

Python_EasyGraph-1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (793.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-1.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (793.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

Python_EasyGraph-1.3-cp39-cp39-macosx_11_0_arm64.whl (696.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

Python_EasyGraph-1.3-cp39-cp39-macosx_10_9_x86_64.whl (721.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

Python_EasyGraph-1.3-cp38-cp38-win_amd64.whl (642.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

Python_EasyGraph-1.3-cp38-cp38-win32.whl (602.4 kB view details)

Uploaded CPython 3.8 Windows x86

Python_EasyGraph-1.3-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.3-cp38-cp38-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

Python_EasyGraph-1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (791.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-1.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (792.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

Python_EasyGraph-1.3-cp38-cp38-macosx_11_0_arm64.whl (695.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

Python_EasyGraph-1.3-cp38-cp38-macosx_10_9_x86_64.whl (720.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

Details for the file Python_EasyGraph-1.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7ac76975c52d6b0069e22457f2e4e4cabf54a6c3d65962c70217d296ec3670fe
MD5 405fb7a096ee6276ec064bd052e1c2aa
BLAKE2b-256 6dcb971e71d8cedcdae212d2f7c216905bbc185e8d07ac6b9f6b99a93761f506

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.3-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 314136e32c05a516209ee49dfc89692bd1d2a52931f8d409112992e01bd7889a
MD5 24b5864536bd9769420f9d2b96e7d892
BLAKE2b-256 69c15b96e11a0593f7c25076585bd87d2998ccfd886b02c368da7934e3dbb9fb

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.3-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dec1f677df02366ae4568ff7f6a06a80bff4041a2e78a5f8c6729d9756e23b6c
MD5 2a0167cc51e8ff697d05804d12418fdf
BLAKE2b-256 7dd723933d659127aec1f5b42d803e7e9b330a7d1286ac744aff4be3d9459a77

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.3-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4adf490ea062132f5fcc185a1df7f103d371cb3a70b3edff637662624f3c141f
MD5 390fcab7a1823bf03677bb1a70ab5b6f
BLAKE2b-256 aaa3fc69ed9395f04ae35ef584a3b9e4a192384a645b25a5995d15a1b24ada66

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de6b401cf1a680516ae4767b333f6c11cfda72f08d60693bc0473cc6a6b7e411
MD5 ca934a7c5dfa3f6160677e6eee2f371e
BLAKE2b-256 5eafac8428460931a03c355daae2c0e21939d22cd1f3c2a2312f9a423072bb77

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 938001f7d10a2864a6b2b666d5b2d21261fcbff550a8337646d2373056018ab7
MD5 ad8bc5020f4bf62e1281dcfc2e59dbae
BLAKE2b-256 32c49292e3cd7f26b648e3c5ae8a99a3ec2f67fe3954307ca2d4d5a44a152c51

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7982f9fa466b3e17fa7116dbd25fcc472880730a1356aefc6b0b8f7c39fd2916
MD5 27c27a78458f4bd2db57765e2dd2e497
BLAKE2b-256 ac1a3bc217c04999357795b2fafb049704db318922d94fb0b7823d2036aa2dd1

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.3-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3be5e6a6f5e92b84ffb01e97f60170c0305dab4251383aba98d364d3b87d8d4
MD5 2e9a77d6e03bd2a46134195075c9709a
BLAKE2b-256 413ad99460f5d344a1fd03c51f851f8523f53903f0448bafd2dd4d2c6d041ee8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 76227c3182b626cac20611cca542febb47a408be3764a5fdfbe13021dad09052
MD5 e525d9911d9f9a5f5d3a69d22f5d1ff4
BLAKE2b-256 7e109d45c0dd6f9c871cf335c127d63adecc616c66cb2fc163162c6fc1f63bbf

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.3-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5e960883aa3043f75340457300069c96ff34815a8162e4bbbf5a07a69ec251ce
MD5 a1bca0200d6d014615997db09a69c2db
BLAKE2b-256 45f1298f94a035f781a117b572444a6c61e1dcc70798733d7c7e34e61e93791b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c559a166097d29963fa2e5f630c09154a84398a1534c737832b5b2df77a6ef94
MD5 f1e64715ff7d68d2419dd85b4fcebadb
BLAKE2b-256 f0e22c2f78b7c4f56e0806f13130131eb9ad47876ece7014dececc13a2ca1746

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 60a431aceca7f6b3b53941fd35e2c5e4725a88bd7c283482a5820a23eb880f35
MD5 89d1b0027520fb8889d242050aaae7c3
BLAKE2b-256 8c2e46dce5a75d501ed308b8b1d1683b52bdd4c9c3a0a2f6d15d3454a70d53a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c606d13f7900d0b53ce1d38a830b642a714a560c0c40eba1568e3ed9720cbe8b
MD5 ebde59eaf9f950a1493971cdb803d79d
BLAKE2b-256 2b0602f0b49b3fa34efe51b246840293f69a59b429da694d3b62c3b8bd91175c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5946890971d5bf44deaf73fdef94b0cf64e40e74dc0c04aca24640e9aeb3cb27
MD5 4c94d9f77609db6cb46c8d8761c97499
BLAKE2b-256 212c40b0d968f4ac3711acebb8a5a9cb4e1f016b9a226c29764fd3f4863eb2ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 477733d5bfdcb3aedce743ad928427d56ddd475e6931a5b07ebb942d4d3119ff
MD5 62d2a3150cafae88294ee85e04c7257c
BLAKE2b-256 5f027a07f2f5b47d621976bc3adc29fb6dc5b435abfbc2e7d362b67615a4925f

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fcd68462d55b87f72f69e10bb7ed858afbd3ea6db846de7f1c13ef716053b0a3
MD5 2dd0e7ab05e062ca68c38f3fa5d09989
BLAKE2b-256 9ad808b46b972e5f38b83f722d2aa9d302e74b3ac3913402e328b3119e225d4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4b59019a7453b7582900e5bc739defaa9e47af76db741b51d97b9bce64be8c4f
MD5 797990396f4245cca66edf1a97565d1c
BLAKE2b-256 afb8b260bd338330bb9eda1cb4a5c951e1f73bcc02d702262ddd4c380277de39

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.3-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9e27b44b91af7decd845d697798df13d660c8f66c92999fdbb9ac204fa2da632
MD5 c9da93b168ef41218510accbd11a11a8
BLAKE2b-256 6ababe2c3ab6ce790b654ca6f587004df48b32a2a881898b92a1d7f927ebf70f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6b200030aeb78149646bc22e5e23572290536b033cc0caa00534b3a900cc0962
MD5 92a5ba9f5a3cc6e3d8c822c604fe9e95
BLAKE2b-256 e8652614d37077e62b19604b449997d5f69746dafd5b6e3121cd6a0fb4d6e52f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 12d7d88ab7e9c775532744eb88488b07ca803b3fd7cf112fd322e3a0d68568e9
MD5 9c99bbd6161d2032f73e2639ff815ff9
BLAKE2b-256 bfaf7dcc30f787f0e734eb5a38445c517fd057aee6eda266df7a2ac19f46362e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2cb75a020bfa29215085101e24da5b8a6c109a1d3865416878c39ad71f10841
MD5 acabc612c8664de0a978fea165acab6e
BLAKE2b-256 c0dc22095e9ef1c2b55e9085eca82d99628d2e3557e13a6c353e39de03e569ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d42585a7f3f80f2a1fe9e8b3d55a05124f628edd70670268352effef97dd0b55
MD5 7ba0307067d3661d1450a448770f58ff
BLAKE2b-256 2eb84a5a68cf2c4eaee112c385676a579780ad90f3a32e4442d576d7287a8551

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c73f77407b7a235970bab8e0b30ed2ba7a8c619f2fd0d9473dd86aa10235f5c5
MD5 690ee32acc7e737850791b8ae9b14204
BLAKE2b-256 0625938a8b563b9fc5621de5b1caedf3bb7ecaccfa7c509d71ec9cc0176f7ec7

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a32604e0de9759587f7ee675d4c37f6e058f01a02d09426edda633af0b28329f
MD5 74313e6b3bf8aa4dd4090b774b624cdc
BLAKE2b-256 c28d7882507f315b1eca2dc334be575d20e5656fae0591a565ef8e1cd0f09aa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0898ff7ce0880c178603d69692919d47f8711b91591f98ff6b2b1f10c7cbee39
MD5 0833312d53e6a4b749c399aebfa6fff5
BLAKE2b-256 b2bf64173658e37ae0bad7af78e8c9128bda70843992663a3ad26c685c3ccc9b

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.3-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d1f30c528ddc4351566edee99643d2822fe6b9b53ca0f54e8cfe4e1496655169
MD5 150c4246101f672d0960fb6e2a29be57
BLAKE2b-256 3f275f4ca309a96e9d67fa702efd6171a4c484a1ffa865f167b488be3ee329ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 16e14e060e51caa21ecd7a1657baf9167dc7968f5b72ddf623fbfe9a4eba8188
MD5 4b397db4293b3d8e971cd36e08bf3b0f
BLAKE2b-256 df8f757de2204703b1e39446deff12f7d8353341f91786bc07965b3a96081109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 67b4619247d03e9d33a76b5eee4bc7f8f7e7b3727707c2196f55557a94a2c677
MD5 eb429107aeb061b881da6f9780cba281
BLAKE2b-256 7907c63817cb6110263775f982b356ae9acec6e315c3ac0bb8fc2081cbeef55b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b11f77cbd2425339574ee689bf0c9f9dd6eb4dcbddf6670d39c33b14ce242b53
MD5 02fa2eedc77472ffa89235901eeb3b14
BLAKE2b-256 359ce1c3d323eaafa61f9de0f209c6e16c74b9eb96fb9ff97933c9826578ebe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 efadf801982ca1e9a480b92de28cfce6f156f9d9f5e89d83608a77d64ebbd254
MD5 e04f3eae40fb8e9ce8194ad8d3865d6f
BLAKE2b-256 79d36e6e9bf3ebb16761732aafcba5f5db087f2b9e50aae912f24439277971a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a42f29fa4fda1c7643f795c230f9b3464ad46485619bfb35c0b0ee1a6c636ca
MD5 be340c203f7fd66cd30990fa96dd5c92
BLAKE2b-256 243ea5528ebe3f445ff3a969b5a404b0469fc4ad5f09e12f151ebae3ebd4f7d2

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56ef2c8218ccfcf71a068082d027ae7f4ceab57b60ece2f9d751ad6f0b219982
MD5 1b4fd7c506906caf45878fd533ac9ab1
BLAKE2b-256 b8fd37bb3466f1862253796000d85d30174662e5b8a71d4c23c81d6310c467ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7122307ac5bd3d21e6ffde9dab1e4445b48fe5a2c4c6abdc9b59faaf3b694a1f
MD5 8e07720483098bb03babe7ace62f3857
BLAKE2b-256 1ca1a85c55835f321ff8208ae07571812d4078d019f5e43817f4ac9b0e4a8c38

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.3-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7bb41ea2b802c887a3c8f7b536ec12dd30821d09f9bc517949414f3b26403167
MD5 b4080033e59576073ce8b4a8b36ac5d2
BLAKE2b-256 411c195e61c1ec447dc8d84936536780a6583783babb3db038e8fb375a4cceff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cc2b1512b269f41f8e96cb28ceb0870c017bfd681c46c130ef111bff1953e8e1
MD5 e7e3714e5a02ec719dd1444d3bd8ba07
BLAKE2b-256 625dffb7f9366db60c436725b905edee366ba0b76bb5febdc2b264a768072db3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3083f0227e56a5bf2ed261c61e044395a755f60ca7cf49c2712cf60dc06d9b0c
MD5 b37daeb6e5e651b93670bd53de5f7778
BLAKE2b-256 15b0c8e7e06857f11823a2651f68abb41de45fa88e0681e1a902f660d0dc8976

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 111258352a96847bf8472b64e7cc786d3397e8ec31cd8afa004dd17aa3b4d83f
MD5 e80237f463651685db279a11f21690c3
BLAKE2b-256 6df3bc6f88954de3283c0619eb2d26388b0b0fd3693e83bce67696b9df41bf2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 59d71cc8326728b3c89fc3e96f8b6f4fc4adfacab931d697274f0182510e74b1
MD5 4538dd8737d6c7a2c2a862aa5276173e
BLAKE2b-256 23048627e2779ccbd29c56176ea4c86f7dabd0c38cf07e55e6fcb2f61dcc4ca8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 133f3cbc8621bd6f39218ab5c58ddd64342c68647ad579051be0eac83332b361
MD5 9da943646e14cd9a0614fdf0bb51bf4b
BLAKE2b-256 179d68638496d39630c3262cb7566cd268f3ba0eccd4f0cef98a2d725426e541

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-1.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for Python_EasyGraph-1.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2ee611f1962c2cde93cf056cc18b6f0a6d8725651efdf1792bc6bc44137225d9
MD5 a1b6daaf247d7f3609d39076735e0b14
BLAKE2b-256 12098a656ced331110872abc310a64e9525edaab894eb16db18c3068914e6426

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