Skip to main content

Easy Graph

Project description

EasyGraph

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


PyPI Version Python License Downloads

Introduction

The framework of EasyGraph is composed of four components: EasyGraph (Core), EasyHypergraph, EGGPU, and EasyGNN. Framework of EasyGraph.

EasyGraph is an open-source network analysis library primarily written in Python. It supports both undirected and directed networks and accommodates various network data formats. EasyGraph includes a comprehensive suite of network analysis algorithms such as community detection, structural hole spanner detection, network embedding, and motif detection. Additionally, it optimizes performance by implementing key components in C++ and utilizing multiprocessing.

👉 For more details, please refer to our documentation page.


EasyHypergraph is a comprehensive, computation-effective, and storage-saving hypergraph computation tool designed not only for in-depth hypergraph analysis but also for the growing field of hypergraph learning. It bridges the gap between EasyGraph and higher-order relationships. EasyHypergraph is developed as an integrated module within the EasyGraph framework, maintaining full compatibility with its core architecture.

👉 For more details, please refer to its documentation page.


EGGPU is a high-performance GPU-accelerated network analysis library that supports essential functions such as betweenness centrality, k-core centrality, and single-source shortest path,as well as structural hole metrics like constraint. Built on top of the EasyGraph library, EGGPU features an efficient system architecture and native CUDA implementation, while providing a user-friendly Python API and significant speedups for large-scale network analysis.

👉 For more details, please refer to its documentation page.

📢 EasyGraph News

📣 Media & Press

🚀 Releases & Milestones

  • [05-07-2026] EasyGraph v1.6.1 released (Add OpenMP-powered path-based functions)
  • [02-01-2026] EasyGraph v1.6 released (OpenMP-powered functions for large network analysis)
  • [01-16-2026] 🎉 1M Downloads! Thanks to our amazing community!
  • [01-01-2026] EasyGraph v1.5.3 released (The Hypergraph Interchange Format (HIF) standard)
  • [11-23-2025] EasyGraph v1.5.2 released (LS algorithm for effective community detection)
  • [10-11-2025] EasyGraph v1.5.1 released (Python 3.14 supported)
  • [07-27-2025] EasyGraph v1.5 released (This version integrates the HWNN model and supports 11 representative network datasets)
  • [06-29-2025] 🎉 800K+ Downloads!
  • [11-22-2024] EasyGraph v1.4.1 released (Python 3.13 supported)
  • [09-20-2024] EasyGraph v1.4 released (GPU-powered functions for large network analysis)
  • [05-27-2024] EasyGraph v1.3 released (issues related to hypergraph analysis and visualization resolved)
  • [04-09-2024] EasyGraph v1.2 released (Python 3.12 supported)
  • [02-05-2024] EasyGraph v1.1 released (hypergraph analysis and learning for higher-order networks)
  • [08-17-2023] EasyGraph v1.0 released
  • [07-22-2020] EasyGraph first public release

📈 Publications

  • [05-30-2025] 🎉 Our paper "EasyHypergraph: an open-source software for fast and memory-saving analysis and learning of higher-order networks" was accepted by Humanities and Social Sciences Communications (Nature Portfolio)! [PDF]
  • [08-08-2023] 🎉 Our paper "EasyGraph: A Multifunctional, Cross-Platform, and Effective Library for Interdisciplinary Network Analysis" was accepted by Patterns (Cell Press)! [PDF]

Stargazers

Stars

Install

Supported Versions

3.8 <= Python <= 3.14 is required.

Installation With pip

    $ pip install --upgrade Python-EasyGraph

The conda package is no longer updated or maintained.

If you've previously installed EasyGraph with conda, please uninstall it with conda and reinstall with pip.

Build From Source

If prebuilt EasyGraph wheels are not supported for your platform (OS / CPU arch, check here), or you want to have GPU-based functions enabled, you can build it locally.

Prerequisites

  • CMake >= 3.23
  • A compiler that fully supports C++11
  • CUDA Toolkit 11.8 or later would be preferred (If need GPUs enabled)

Installation

On Linux

    git clone --recursive https://github.com/easy-graph/Easy-Graph
    export EASYGRAPH_ENABLE_GPU="TRUE"  # for users who want to enable GPUs
    pip install ./Easy-Graph

On Windows

    % For Windows users who want to enable GPU-based functions, %
    % you must execute the commands below in cmd but not PowerShell. %
    git clone --recursive https://github.com/easy-graph/Easy-Graph
    set EASYGRAPH_ENABLE_GPU=TRUE   % for users who want to enable GPUs %
    pip install ./Easy-Graph

On macOS

    # Since macOS doesn't support CUDA, we can't have GPUs enabled on macOS
    git clone --recursive https://github.com/easy-graph/Easy-Graph
    pip install ./Easy-Graph

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 demonstrates 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 kindly request that you cite 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},
  }

📢 If you notice anything unexpected, please open an issue and let us know. If you have any questions or require a specific feature, feel free to discuss them with us. We are motivated to constantly make EasyGraph even better and let more developers benefit!

Project details


Release history Release notifications | RSS feed

This version

1.6.2

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-1.6.2.tar.gz (453.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

python_easygraph-1.6.2-cp313-cp313-win_amd64.whl (860.9 kB view details)

Uploaded CPython 3.13Windows x86-64

python_easygraph-1.6.2-cp313-cp313-win32.whl (801.4 kB view details)

Uploaded CPython 3.13Windows x86

python_easygraph-1.6.2-cp313-cp313-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

python_easygraph-1.6.2-cp313-cp313-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

python_easygraph-1.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (956.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

python_easygraph-1.6.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (979.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

python_easygraph-1.6.2-cp313-cp313-macosx_11_0_arm64.whl (872.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

python_easygraph-1.6.2-cp313-cp313-macosx_10_13_x86_64.whl (921.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

python_easygraph-1.6.2-cp312-cp312-win_amd64.whl (860.9 kB view details)

Uploaded CPython 3.12Windows x86-64

python_easygraph-1.6.2-cp312-cp312-win32.whl (801.3 kB view details)

Uploaded CPython 3.12Windows x86

python_easygraph-1.6.2-cp312-cp312-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

python_easygraph-1.6.2-cp312-cp312-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

python_easygraph-1.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (957.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

python_easygraph-1.6.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (979.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

python_easygraph-1.6.2-cp312-cp312-macosx_11_0_arm64.whl (872.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

python_easygraph-1.6.2-cp312-cp312-macosx_10_13_x86_64.whl (921.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

python_easygraph-1.6.2-cp311-cp311-win_amd64.whl (858.4 kB view details)

Uploaded CPython 3.11Windows x86-64

python_easygraph-1.6.2-cp311-cp311-win32.whl (800.2 kB view details)

Uploaded CPython 3.11Windows x86

python_easygraph-1.6.2-cp311-cp311-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

python_easygraph-1.6.2-cp311-cp311-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

python_easygraph-1.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (959.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

python_easygraph-1.6.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (978.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

python_easygraph-1.6.2-cp311-cp311-macosx_11_0_arm64.whl (871.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

python_easygraph-1.6.2-cp311-cp311-macosx_10_9_x86_64.whl (912.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

python_easygraph-1.6.2-cp310-cp310-win_amd64.whl (857.8 kB view details)

Uploaded CPython 3.10Windows x86-64

python_easygraph-1.6.2-cp310-cp310-win32.whl (799.4 kB view details)

Uploaded CPython 3.10Windows x86

python_easygraph-1.6.2-cp310-cp310-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

python_easygraph-1.6.2-cp310-cp310-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

python_easygraph-1.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (958.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

python_easygraph-1.6.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (978.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

python_easygraph-1.6.2-cp310-cp310-macosx_11_0_arm64.whl (869.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

python_easygraph-1.6.2-cp310-cp310-macosx_10_9_x86_64.whl (911.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

python_easygraph-1.6.2-cp39-cp39-win_amd64.whl (857.5 kB view details)

Uploaded CPython 3.9Windows x86-64

python_easygraph-1.6.2-cp39-cp39-win32.whl (799.3 kB view details)

Uploaded CPython 3.9Windows x86

python_easygraph-1.6.2-cp39-cp39-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

python_easygraph-1.6.2-cp39-cp39-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

python_easygraph-1.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (958.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

python_easygraph-1.6.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (978.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

python_easygraph-1.6.2-cp39-cp39-macosx_11_0_arm64.whl (870.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

python_easygraph-1.6.2-cp39-cp39-macosx_10_9_x86_64.whl (911.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

python_easygraph-1.6.2-cp38-cp38-win_amd64.whl (857.5 kB view details)

Uploaded CPython 3.8Windows x86-64

python_easygraph-1.6.2-cp38-cp38-win32.whl (799.1 kB view details)

Uploaded CPython 3.8Windows x86

python_easygraph-1.6.2-cp38-cp38-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

python_easygraph-1.6.2-cp38-cp38-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

python_easygraph-1.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (957.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

python_easygraph-1.6.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (977.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

python_easygraph-1.6.2-cp38-cp38-macosx_11_0_arm64.whl (869.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

python_easygraph-1.6.2-cp38-cp38-macosx_10_9_x86_64.whl (910.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file python_easygraph-1.6.2.tar.gz.

File metadata

  • Download URL: python_easygraph-1.6.2.tar.gz
  • Upload date:
  • Size: 453.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for python_easygraph-1.6.2.tar.gz
Algorithm Hash digest
SHA256 a8eaa270a85165d377c4121456c81f24926669a72e6f027e3ed85ba32c11d54e
MD5 d036eb6097d006055a77ba1b408fcccc
BLAKE2b-256 79608054752dfe4beeb74c7cafff5c86440315bf6e8c9c60ec7133882c00d842

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 af40d7e80000f954a34f4406afda033cae752f37aa0328f26f78d9b93a8b7836
MD5 d447abf3dd90fb5809a395ce3f5345f4
BLAKE2b-256 a99aa7ae2beaab12954e7f53e8bf940db36614467b3616f98f9a638729810a87

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 232f7565fef705f1163d3438ec3be1cf4a17a5a4be778e95aad729707801c0a7
MD5 8bc8253b1e90649f81bc662f02a38a52
BLAKE2b-256 cd9b0111f37070a732d31d3a589c4c9a383c5da0a355a5f6084d514633ea93c3

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b17abd6557f80c5c680db43657165f7fa239b7df869ee123bb2fb1566a7347f8
MD5 4d3747e694479e62778cae30c6433f29
BLAKE2b-256 93d880f38337e2708689555f145512ac46ea4931b3d0fdd4550dedcbe08ca612

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 36108208c24ce5007e9f28556c5df64f34489d5e5d9f133398a4f22a7574cdcf
MD5 33b9cdce1f1bddae742086454dede730
BLAKE2b-256 cba3d74550a4e9fba8b97e2020ce693771873d03d12a4f8b70a450f04d090b0f

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca560d8c0ab89d20b30cf1836b672957b410633149e23f747d6882b0d6ba6fed
MD5 7eb080f50be4dc231fd4995a9f6f5fa7
BLAKE2b-256 d1c79314cb7b5f5f3757f9ce11260757aa1a7b4398f5876590ffe8962d67793a

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21ddc80545872dce44042df097ae99f4a0227b2267d3ab615b7ad1615bca77d7
MD5 3c13685a94adecfc2fbcabfbc9233c85
BLAKE2b-256 c9c5af3f32cebf0cfe21ad476b57ad04c6eb96fc1e561a4c94ad3c8e44ebb302

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e224cab5c4e081101bee70d98fb6a58c53da19902677cb43543a2c937217dca
MD5 df0be09784f6b76afaf31db0b8f9b33e
BLAKE2b-256 704d6981683cfdd385713d7fc98aca5341e960c4ef5dd39f0600126c87290740

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6cb8aba6521572c4a33a0c21c7cc53ce9baf236914dbbca270d48eac5a325bf3
MD5 cc56cd8d7c8bd038932b7d8e1e747065
BLAKE2b-256 f4a35ccbba199ea436d37fc45007992b0e4530798dee2bc95ce32723016cd083

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ccc13e6da551ea55a6b1edeeecd641f044d420bad112505f71cc10c8b82063bc
MD5 d66d04ff2e44fd4b303e302141edd424
BLAKE2b-256 20ca21774fad19f66f70e528a6b36b44412a5ec122e29fcbf4b1eba36031dba4

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b29bc00c755199bbafc06aa8a7a3f7df0bfac1438e16c2093348dbf863d18f18
MD5 c05c18878bbd031d0e6e32d349b120af
BLAKE2b-256 528a8ab3467ace10475f097c4763393fd1f6a5325dbd32dcefabc3c5c5ed7d06

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7040ebd7c1718d15ca5976277783d63dad5496e3482c4784f3ee24e4043043c1
MD5 06eb3b62a5272f38170b5339436616c7
BLAKE2b-256 f2bf793778cc82583068793aa641af298bc1a80904047696d8203be44c6d4a7e

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 289cc647489809e9d76fbdda0f1bf565f1e7c9aca69d4c400ac46b242d102b4e
MD5 5922c732285f98874e5bcd55828e4e75
BLAKE2b-256 f3cd58fd5c2a1279e5954b8c31964d5fa8ef72d14af78f9e3862fac5bf25b56b

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53c69e74b9461d4318e901ff8df9deac4e20da285da61ab43e7fff445a63ae91
MD5 63aa4ab40fd9e55085ff4f9b846d19a0
BLAKE2b-256 996a9c29ae6a12e046436cb0b80295245a209ddfa58510c5c1c3bb95b2c08a75

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1acd5c534e3f2f725a450680b72677d33ebb69702da12aa9b822adecfafabb4
MD5 b24e988771a9e4d1cbd01f089c9e26a4
BLAKE2b-256 8073bc78a7aaaa978baeb5db2a47b68ade6c7ae3cebdd95455c99f108a8bf45b

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70eb24ce7960da51acb18739e92c3b9284ae4f6c28a04a4ccf2a12438d6cfb77
MD5 dd98efe2a402b41b759c559319c3bb63
BLAKE2b-256 58d68e0ff47580905a47c9cfa79b1c16ac211da54ac5a8717dd0199a8819aea5

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 189620267a7f96c14c66582beed277fc644ea244f6afb28c4125c518ec3d528d
MD5 6ae0cf5880b341dcaf2c90cf40c8fc3e
BLAKE2b-256 e4c630a7efdc00e55519bf736306fc47dd061a75c11fb1ab89e75eded1debd60

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 67bf285835460f4b6758314c14e5c8f4cd4f791a8a21a726eae6455be7d3da4c
MD5 fbe6e2d2f67a61c349f0bb203c954c0d
BLAKE2b-256 cd7418daa090b670f1029905f38ec63158e2f206389f3667ed85d213a9dab5e7

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 17b120ca2b82df23e0b3d4a124e82f6ce6c942589e41547e61791e4e872f6664
MD5 15c8994284b665b0853a86f07338c2fa
BLAKE2b-256 e051aa7bbd0ae3eb0e8337630282545f32d923ef992eede15f0038d6563de162

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe45f07fef3228d181ff1689ff3dbc058514e9762a751d4ed858d70d73d3e91f
MD5 ed7f8814aeee21514aab5772f817de21
BLAKE2b-256 0335b327db604127d3b5ca86503e188d4cea6e60a717b3415d4435d814c6e6e1

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3bbb3ce105b4f2564cdb2959076dd45681e1595a4d5ce83d839720ebe7c21be6
MD5 0580f670ee3a7aa72137e12f6cfeb29f
BLAKE2b-256 c6181fdb65a28eee25cc898f6cafd6c1bcd778d258bbd9503bc96cf3db3962ab

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cfa1689126e6ade12113b6d0d9ad00e5c625419baa0755eef439ad869ed6f6bd
MD5 39509faa7b71b5187eb11fedcb4f0692
BLAKE2b-256 e9cd0fe5490fa2b590aa14cc93ff1fbd886357dcac1464e24ee3c429b471a25c

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e88407ab31602c2145e40989ab6b487b409aa94d772ce8bf4d4521387c610704
MD5 704df1f8e40be3a582a4c7bbfbdc1881
BLAKE2b-256 f8d015505cce4605d5a6fe77a27e818bb62ae5c9c31c442a9f2910ada98fe484

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a88551bd0aa17fd8bda2f9f2dcdf6bb253bb5f95ab7a4df2824ddc3e617b15f
MD5 c102fa19b47602c567287269f9ce8af3
BLAKE2b-256 7e0e158dc49b98e262527d1471af7acc9d8cbdb1a2ae41b68b5a1a788610afc9

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a685b5295599c33b0ca57396c740ed170bfee68077bef4f4451f88bda6b598d1
MD5 3cad31a039253cc5257672b6da09e180
BLAKE2b-256 2670915eef3534aa1f109e93c61dce6869e85ad2d8428a1ea84870f8e4441b80

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7704355d86beb91c98af176d8c889e321715db212c40d48b11123e59de00d58a
MD5 b2f8e146f785295b92b811be7ac88133
BLAKE2b-256 b9406b439a6fba897cd7406431ddf6d8f86b1496cb0451f12b8c389d795c733d

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6d35dc56cbff72aec45e37dae754abde0504fbe792220288e4f3b62691a4ea37
MD5 8835e27866e46279b0278c1cfb07a88f
BLAKE2b-256 2c61509fa9a87ac75a902b71c4a7ad8cdd3d793ac3cc7cfec3cd6ec432ab8a80

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f82cdcb7c83dabfe1e1dea2f1fe2c226c93358488577fea7ff1542fd757a1ce6
MD5 88d562008dbcbc25a5505cb24ffde2fc
BLAKE2b-256 a72df7d6d58ab7745c9b902c8f3799a358189fb369e2f8e975b78d08b1c27b2b

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4febddfd652a64e450082b400557dff6cbd44db15352f2923ff3d078ec06b573
MD5 40debf9e20480470493ace4f0d4d771e
BLAKE2b-256 a6d90f3c619110b46d77bd4246d561721847d46bcfc6cf3d1f1156689860b73d

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fc2d3b3c47da19fb836071b2e40572d5c0ad2addf7eefc755477d7768ead549
MD5 44baad1fa34ef0983e50ad891fff509f
BLAKE2b-256 b663f092b24d6a7392c0d3a12ccdbb8c2abd16e5b69f17a6b06311ba3b558e62

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 130a5a09357a5b017f964d22bfc7a8fd823dc7359c281b877bedb4cae2ded5d4
MD5 9abc3c1ccbafc696f22725c67e888f19
BLAKE2b-256 75d1a7f77c3607cb909895311d273c05e48de0bb356c342159f530a79b3b4b45

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1c22f8a5868ab7312b552146b555e5556f2b2f5950607c576c25ee3ac0ccd37
MD5 4e43f42aba0f0a940b58a92139f68bc1
BLAKE2b-256 579ecdabae06e2d0f0daf1ef4c8ee5745cdcdafd6384ee2c90755e2cef0ff047

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b8b78c8c942cdd85e4b1d54104134326e5347d88527082311e703327d5dc573
MD5 35c969011ea516c349a3f6204e932603
BLAKE2b-256 8b7caaca30260e567ba8ca6186503bf83cd2eaa70b69789d129349fd67dfaa0f

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5b065619944c3a9b027bac1a5f70d7ddb23518aaa4a73e57eee436850b11970c
MD5 6116e18b11c297f23c9c04be395ec246
BLAKE2b-256 80aadd28071867c13d30c8b17387f8bd160e88daf2a0c03897bfd843150f54b0

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9d2320d8e41e5b639c8056ae6ec875a65367f45129d64e9684a42c255bda11b8
MD5 1f5e33682883008380bdd568ccf20a7c
BLAKE2b-256 55dbfa8e4e6ca2d16667c777b5fc401ff612fcf60919a521cbf40f5b5a0d04b5

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7020e7a4b3502607227ab23162f54408a819aa07b86884701db82b37c5f20a8d
MD5 2fe1f4b138ed05a9e66105254d8c7012
BLAKE2b-256 4a81d6402c8eada2a08440fb00ff2ae4b9dd437f90251eb96e998e3de078e7f6

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6610243a2cb3760be2a96dfe358083b7b5f33a4ea0e67f1c514a8c117dd612d2
MD5 aadf5b21903df69e4e575dde1cef90db
BLAKE2b-256 10148cdb4ce34163aa0d42dd31e0ee79d8ae34b50f6242fb9db7731b67dee797

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53d8d917fc39f8a042ecb5041a353c86eea071625f841e1a364237b73ddc1fb6
MD5 af85df0d00c5f4643c222eff14e742ff
BLAKE2b-256 d16ca126f4a52dfb92603a98f7a931d7ae74059d027a941e7cbf2be3f1819dd5

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 20987c948d6ff358fcc83e937e8e2140e9fef4f3f0b31649c67ad53c95053127
MD5 e6e8d537bbf6874e008ae37dd84da806
BLAKE2b-256 9612bf9695237d676ff5f3dce72e88761c4f166ecbb1a14228bb8d868b453954

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ae6f4c200a30d619d0c105ed0a32776e76f59e4c13f1bc62dabc76c03a27e5e
MD5 e792492df9296d8d18b8ab24158cf67c
BLAKE2b-256 6cc76e169196403755a635361a200f78216f000fe02c4d7bc31d727728b5336a

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 89c7f1c9469b280e8c7f6815b2746a132c699b80634dc8cbb62ed4643039c04c
MD5 921b350ae17b5cce88f09e29897144ff
BLAKE2b-256 4a5db1c219457bd2c1f0fb3209abfe485348ab19a9a76701820c91ed9d8cb59e

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a700b8da8c19d7204a6911da7c14ffc26759818c6d56f980900b8188efee32a0
MD5 929c142e4799ef4618e341a008a9bcb8
BLAKE2b-256 3b5f69e98296ed302d1e484d874ed1a8d0efe5d9317adb3acad1964c88d80d56

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b5e3f23538c8d543236034b225b74bb2fc93d26f97e4a5b3528fd11974e8a5be
MD5 9ed6f22a43e977d467f37117f620e66b
BLAKE2b-256 87ed35d4fcca793a4e32146420040698d4689c2fdc5685c096dcc9da690b53c5

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c22e16d748ca249b0e2797bab49651b13d8e10abc1c6679a19aed8321a55426
MD5 21f4d31068263009614fef883297b5a3
BLAKE2b-256 cb9ed9b52f867756b1569230dd8b74cb67664dd71a9b04f544be2e315dc77ce2

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 103a725b5851ebab7ddac0eeb381db1be8322a5d1be21d3d4374d134abed7ab5
MD5 010df2c4727a0c79633643fdee74b22a
BLAKE2b-256 42865325c8a3783b036487c1c3f824385a7272bb8510594d15aa4745b2c606e5

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 294e1a092bfb63abfd3b13c5e2b9bffd469102a568ba5c5c2433be0a725b4ad6
MD5 91f817d16380db8b03373788b5019eed
BLAKE2b-256 8a5c4a17f7d25b21ae7c32a5d382ae8ba0f3f16fda83d2441504379c3269af0a

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e273273df03b7942d44c2d35ce97a00ba3a9ea2cdcf7a2593bd1fc5cd932bb26
MD5 36490ec8a00c87fe94d12e48a972df81
BLAKE2b-256 a0bb5db03f2f510f4aa789cb975366f723ce011d8bcf439b0617eedc5e874517

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b880a9b53bc898b5b38837612ec516d03e1ebdd1884208249c905c6b26719438
MD5 f350ce974764948e9cf8ead6b17da6e9
BLAKE2b-256 b0de852fe667a74aaa5924329d2be2cb39d00da3f59c0030a0dbdd86e02a95a7

See more details on using hashes here.

File details

Details for the file python_easygraph-1.6.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for python_easygraph-1.6.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d731796e5100ff17d9fba152e6bc157570f54f94b5079badc4b8dcf2cde5efdf
MD5 b16b60c6d8248ea7802f680203deb968
BLAKE2b-256 990fb28bc8526c7f12f795080eedb23456fb3c104a2656582df3ff9f1ba82d4b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page