Skip to main content

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!

Release files for Python-EasyGraph 1.6.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for Python-EasyGraph 1.6.2
File Size Uploaded
python_easygraph-1.6.2.tar.gz 453.2 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for Python-EasyGraph 1.6.2
File
python_easygraph-1.6.2-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
python_easygraph-1.6.2-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
python_easygraph-1.6.2-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
python_easygraph-1.6.2-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
python_easygraph-1.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
python_easygraph-1.6.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-32 Details
python_easygraph-1.6.2-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
python_easygraph-1.6.2-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
python_easygraph-1.6.2-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
python_easygraph-1.6.2-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
python_easygraph-1.6.2-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
python_easygraph-1.6.2-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
python_easygraph-1.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
python_easygraph-1.6.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
python_easygraph-1.6.2-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
python_easygraph-1.6.2-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
python_easygraph-1.6.2-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
python_easygraph-1.6.2-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
python_easygraph-1.6.2-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
python_easygraph-1.6.2-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
python_easygraph-1.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
python_easygraph-1.6.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
python_easygraph-1.6.2-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
python_easygraph-1.6.2-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
python_easygraph-1.6.2-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
python_easygraph-1.6.2-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
python_easygraph-1.6.2-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
python_easygraph-1.6.2-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
python_easygraph-1.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
python_easygraph-1.6.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
python_easygraph-1.6.2-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
python_easygraph-1.6.2-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
python_easygraph-1.6.2-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
python_easygraph-1.6.2-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
python_easygraph-1.6.2-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
python_easygraph-1.6.2-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
python_easygraph-1.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
python_easygraph-1.6.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
python_easygraph-1.6.2-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
python_easygraph-1.6.2-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
python_easygraph-1.6.2-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
python_easygraph-1.6.2-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
python_easygraph-1.6.2-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
python_easygraph-1.6.2-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
python_easygraph-1.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
python_easygraph-1.6.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
python_easygraph-1.6.2-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
python_easygraph-1.6.2-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details

Total release size: 58.5 MB

Release files / python_easygraph-1.6.2.tar.gz

Download URL python_easygraph-1.6.2.tar.gz
Size 453.2 kB
Tags Source
SHA-256 checksum
How to use checksums
a8eaa270a85165d377c4121456c81f24926669a72e6f027e3ed85ba32c11d54e
BLAKE2b-256 checksum
How to use checksums
79608054752dfe4beeb74c7cafff5c86440315bf6e8c9c60ec7133882c00d842
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp313-cp313-win_amd64.whl

Download URL python_easygraph-1.6.2-cp313-cp313-win_amd64.whl
Size 860.9 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
af40d7e80000f954a34f4406afda033cae752f37aa0328f26f78d9b93a8b7836
BLAKE2b-256 checksum
How to use checksums
a99aa7ae2beaab12954e7f53e8bf940db36614467b3616f98f9a638729810a87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp313-cp313-win32.whl

Download URL python_easygraph-1.6.2-cp313-cp313-win32.whl
Size 801.4 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
232f7565fef705f1163d3438ec3be1cf4a17a5a4be778e95aad729707801c0a7
BLAKE2b-256 checksum
How to use checksums
cd9b0111f37070a732d31d3a589c4c9a383c5da0a355a5f6084d514633ea93c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL python_easygraph-1.6.2-cp313-cp313-musllinux_1_2_x86_64.whl
Size 2.1 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b17abd6557f80c5c680db43657165f7fa239b7df869ee123bb2fb1566a7347f8
BLAKE2b-256 checksum
How to use checksums
93d880f38337e2708689555f145512ac46ea4931b3d0fdd4550dedcbe08ca612
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp313-cp313-musllinux_1_2_i686.whl

Download URL python_easygraph-1.6.2-cp313-cp313-musllinux_1_2_i686.whl
Size 2.2 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
36108208c24ce5007e9f28556c5df64f34489d5e5d9f133398a4f22a7574cdcf
BLAKE2b-256 checksum
How to use checksums
cba3d74550a4e9fba8b97e2020ce693771873d03d12a4f8b70a450f04d090b0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL python_easygraph-1.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 956.8 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ca560d8c0ab89d20b30cf1836b672957b410633149e23f747d6882b0d6ba6fed
BLAKE2b-256 checksum
How to use checksums
d1c79314cb7b5f5f3757f9ce11260757aa1a7b4398f5876590ffe8962d67793a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL python_easygraph-1.6.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Size 979.6 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
21ddc80545872dce44042df097ae99f4a0227b2267d3ab615b7ad1615bca77d7
BLAKE2b-256 checksum
How to use checksums
c9c5af3f32cebf0cfe21ad476b57ad04c6eb96fc1e561a4c94ad3c8e44ebb302
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp313-cp313-macosx_11_0_arm64.whl

Download URL python_easygraph-1.6.2-cp313-cp313-macosx_11_0_arm64.whl
Size 872.5 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3e224cab5c4e081101bee70d98fb6a58c53da19902677cb43543a2c937217dca
BLAKE2b-256 checksum
How to use checksums
704d6981683cfdd385713d7fc98aca5341e960c4ef5dd39f0600126c87290740
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp313-cp313-macosx_10_13_x86_64.whl

Download URL python_easygraph-1.6.2-cp313-cp313-macosx_10_13_x86_64.whl
Size 921.6 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
6cb8aba6521572c4a33a0c21c7cc53ce9baf236914dbbca270d48eac5a325bf3
BLAKE2b-256 checksum
How to use checksums
f4a35ccbba199ea436d37fc45007992b0e4530798dee2bc95ce32723016cd083
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp312-cp312-win_amd64.whl

Download URL python_easygraph-1.6.2-cp312-cp312-win_amd64.whl
Size 860.9 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
ccc13e6da551ea55a6b1edeeecd641f044d420bad112505f71cc10c8b82063bc
BLAKE2b-256 checksum
How to use checksums
20ca21774fad19f66f70e528a6b36b44412a5ec122e29fcbf4b1eba36031dba4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp312-cp312-win32.whl

Download URL python_easygraph-1.6.2-cp312-cp312-win32.whl
Size 801.3 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
b29bc00c755199bbafc06aa8a7a3f7df0bfac1438e16c2093348dbf863d18f18
BLAKE2b-256 checksum
How to use checksums
528a8ab3467ace10475f097c4763393fd1f6a5325dbd32dcefabc3c5c5ed7d06
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL python_easygraph-1.6.2-cp312-cp312-musllinux_1_2_x86_64.whl
Size 2.1 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7040ebd7c1718d15ca5976277783d63dad5496e3482c4784f3ee24e4043043c1
BLAKE2b-256 checksum
How to use checksums
f2bf793778cc82583068793aa641af298bc1a80904047696d8203be44c6d4a7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp312-cp312-musllinux_1_2_i686.whl

Download URL python_easygraph-1.6.2-cp312-cp312-musllinux_1_2_i686.whl
Size 2.2 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
289cc647489809e9d76fbdda0f1bf565f1e7c9aca69d4c400ac46b242d102b4e
BLAKE2b-256 checksum
How to use checksums
f3cd58fd5c2a1279e5954b8c31964d5fa8ef72d14af78f9e3862fac5bf25b56b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL python_easygraph-1.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 957.2 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
53c69e74b9461d4318e901ff8df9deac4e20da285da61ab43e7fff445a63ae91
BLAKE2b-256 checksum
How to use checksums
996a9c29ae6a12e046436cb0b80295245a209ddfa58510c5c1c3bb95b2c08a75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL python_easygraph-1.6.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 979.8 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
e1acd5c534e3f2f725a450680b72677d33ebb69702da12aa9b822adecfafabb4
BLAKE2b-256 checksum
How to use checksums
8073bc78a7aaaa978baeb5db2a47b68ade6c7ae3cebdd95455c99f108a8bf45b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp312-cp312-macosx_11_0_arm64.whl

Download URL python_easygraph-1.6.2-cp312-cp312-macosx_11_0_arm64.whl
Size 872.4 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
70eb24ce7960da51acb18739e92c3b9284ae4f6c28a04a4ccf2a12438d6cfb77
BLAKE2b-256 checksum
How to use checksums
58d68e0ff47580905a47c9cfa79b1c16ac211da54ac5a8717dd0199a8819aea5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp312-cp312-macosx_10_13_x86_64.whl

Download URL python_easygraph-1.6.2-cp312-cp312-macosx_10_13_x86_64.whl
Size 921.5 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
189620267a7f96c14c66582beed277fc644ea244f6afb28c4125c518ec3d528d
BLAKE2b-256 checksum
How to use checksums
e4c630a7efdc00e55519bf736306fc47dd061a75c11fb1ab89e75eded1debd60
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp311-cp311-win_amd64.whl

Download URL python_easygraph-1.6.2-cp311-cp311-win_amd64.whl
Size 858.4 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
67bf285835460f4b6758314c14e5c8f4cd4f791a8a21a726eae6455be7d3da4c
BLAKE2b-256 checksum
How to use checksums
cd7418daa090b670f1029905f38ec63158e2f206389f3667ed85d213a9dab5e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp311-cp311-win32.whl

Download URL python_easygraph-1.6.2-cp311-cp311-win32.whl
Size 800.2 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
17b120ca2b82df23e0b3d4a124e82f6ce6c942589e41547e61791e4e872f6664
BLAKE2b-256 checksum
How to use checksums
e051aa7bbd0ae3eb0e8337630282545f32d923ef992eede15f0038d6563de162
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL python_easygraph-1.6.2-cp311-cp311-musllinux_1_2_x86_64.whl
Size 2.1 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
fe45f07fef3228d181ff1689ff3dbc058514e9762a751d4ed858d70d73d3e91f
BLAKE2b-256 checksum
How to use checksums
0335b327db604127d3b5ca86503e188d4cea6e60a717b3415d4435d814c6e6e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp311-cp311-musllinux_1_2_i686.whl

Download URL python_easygraph-1.6.2-cp311-cp311-musllinux_1_2_i686.whl
Size 2.2 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
3bbb3ce105b4f2564cdb2959076dd45681e1595a4d5ce83d839720ebe7c21be6
BLAKE2b-256 checksum
How to use checksums
c6181fdb65a28eee25cc898f6cafd6c1bcd778d258bbd9503bc96cf3db3962ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL python_easygraph-1.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 959.2 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
cfa1689126e6ade12113b6d0d9ad00e5c625419baa0755eef439ad869ed6f6bd
BLAKE2b-256 checksum
How to use checksums
e9cd0fe5490fa2b590aa14cc93ff1fbd886357dcac1464e24ee3c429b471a25c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL python_easygraph-1.6.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 978.6 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
e88407ab31602c2145e40989ab6b487b409aa94d772ce8bf4d4521387c610704
BLAKE2b-256 checksum
How to use checksums
f8d015505cce4605d5a6fe77a27e818bb62ae5c9c31c442a9f2910ada98fe484
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp311-cp311-macosx_11_0_arm64.whl

Download URL python_easygraph-1.6.2-cp311-cp311-macosx_11_0_arm64.whl
Size 871.2 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6a88551bd0aa17fd8bda2f9f2dcdf6bb253bb5f95ab7a4df2824ddc3e617b15f
BLAKE2b-256 checksum
How to use checksums
7e0e158dc49b98e262527d1471af7acc9d8cbdb1a2ae41b68b5a1a788610afc9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp311-cp311-macosx_10_9_x86_64.whl

Download URL python_easygraph-1.6.2-cp311-cp311-macosx_10_9_x86_64.whl
Size 912.6 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a685b5295599c33b0ca57396c740ed170bfee68077bef4f4451f88bda6b598d1
BLAKE2b-256 checksum
How to use checksums
2670915eef3534aa1f109e93c61dce6869e85ad2d8428a1ea84870f8e4441b80
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp310-cp310-win_amd64.whl

Download URL python_easygraph-1.6.2-cp310-cp310-win_amd64.whl
Size 857.8 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
7704355d86beb91c98af176d8c889e321715db212c40d48b11123e59de00d58a
BLAKE2b-256 checksum
How to use checksums
b9406b439a6fba897cd7406431ddf6d8f86b1496cb0451f12b8c389d795c733d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp310-cp310-win32.whl

Download URL python_easygraph-1.6.2-cp310-cp310-win32.whl
Size 799.4 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
6d35dc56cbff72aec45e37dae754abde0504fbe792220288e4f3b62691a4ea37
BLAKE2b-256 checksum
How to use checksums
2c61509fa9a87ac75a902b71c4a7ad8cdd3d793ac3cc7cfec3cd6ec432ab8a80
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL python_easygraph-1.6.2-cp310-cp310-musllinux_1_2_x86_64.whl
Size 2.1 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f82cdcb7c83dabfe1e1dea2f1fe2c226c93358488577fea7ff1542fd757a1ce6
BLAKE2b-256 checksum
How to use checksums
a72df7d6d58ab7745c9b902c8f3799a358189fb369e2f8e975b78d08b1c27b2b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp310-cp310-musllinux_1_2_i686.whl

Download URL python_easygraph-1.6.2-cp310-cp310-musllinux_1_2_i686.whl
Size 2.2 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
4febddfd652a64e450082b400557dff6cbd44db15352f2923ff3d078ec06b573
BLAKE2b-256 checksum
How to use checksums
a6d90f3c619110b46d77bd4246d561721847d46bcfc6cf3d1f1156689860b73d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL python_easygraph-1.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 958.9 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9fc2d3b3c47da19fb836071b2e40572d5c0ad2addf7eefc755477d7768ead549
BLAKE2b-256 checksum
How to use checksums
b663f092b24d6a7392c0d3a12ccdbb8c2abd16e5b69f17a6b06311ba3b558e62
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL python_easygraph-1.6.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 978.3 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
130a5a09357a5b017f964d22bfc7a8fd823dc7359c281b877bedb4cae2ded5d4
BLAKE2b-256 checksum
How to use checksums
75d1a7f77c3607cb909895311d273c05e48de0bb356c342159f530a79b3b4b45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp310-cp310-macosx_11_0_arm64.whl

Download URL python_easygraph-1.6.2-cp310-cp310-macosx_11_0_arm64.whl
Size 869.9 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d1c22f8a5868ab7312b552146b555e5556f2b2f5950607c576c25ee3ac0ccd37
BLAKE2b-256 checksum
How to use checksums
579ecdabae06e2d0f0daf1ef4c8ee5745cdcdafd6384ee2c90755e2cef0ff047
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp310-cp310-macosx_10_9_x86_64.whl

Download URL python_easygraph-1.6.2-cp310-cp310-macosx_10_9_x86_64.whl
Size 911.0 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
4b8b78c8c942cdd85e4b1d54104134326e5347d88527082311e703327d5dc573
BLAKE2b-256 checksum
How to use checksums
8b7caaca30260e567ba8ca6186503bf83cd2eaa70b69789d129349fd67dfaa0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp39-cp39-win_amd64.whl

Download URL python_easygraph-1.6.2-cp39-cp39-win_amd64.whl
Size 857.5 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
5b065619944c3a9b027bac1a5f70d7ddb23518aaa4a73e57eee436850b11970c
BLAKE2b-256 checksum
How to use checksums
80aadd28071867c13d30c8b17387f8bd160e88daf2a0c03897bfd843150f54b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp39-cp39-win32.whl

Download URL python_easygraph-1.6.2-cp39-cp39-win32.whl
Size 799.3 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
9d2320d8e41e5b639c8056ae6ec875a65367f45129d64e9684a42c255bda11b8
BLAKE2b-256 checksum
How to use checksums
55dbfa8e4e6ca2d16667c777b5fc401ff612fcf60919a521cbf40f5b5a0d04b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL python_easygraph-1.6.2-cp39-cp39-musllinux_1_2_x86_64.whl
Size 2.1 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7020e7a4b3502607227ab23162f54408a819aa07b86884701db82b37c5f20a8d
BLAKE2b-256 checksum
How to use checksums
4a81d6402c8eada2a08440fb00ff2ae4b9dd437f90251eb96e998e3de078e7f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp39-cp39-musllinux_1_2_i686.whl

Download URL python_easygraph-1.6.2-cp39-cp39-musllinux_1_2_i686.whl
Size 2.2 MB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
6610243a2cb3760be2a96dfe358083b7b5f33a4ea0e67f1c514a8c117dd612d2
BLAKE2b-256 checksum
How to use checksums
10148cdb4ce34163aa0d42dd31e0ee79d8ae34b50f6242fb9db7731b67dee797
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL python_easygraph-1.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 958.6 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
53d8d917fc39f8a042ecb5041a353c86eea071625f841e1a364237b73ddc1fb6
BLAKE2b-256 checksum
How to use checksums
d16ca126f4a52dfb92603a98f7a931d7ae74059d027a941e7cbf2be3f1819dd5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL python_easygraph-1.6.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Size 978.8 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
20987c948d6ff358fcc83e937e8e2140e9fef4f3f0b31649c67ad53c95053127
BLAKE2b-256 checksum
How to use checksums
9612bf9695237d676ff5f3dce72e88761c4f166ecbb1a14228bb8d868b453954
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp39-cp39-macosx_11_0_arm64.whl

Download URL python_easygraph-1.6.2-cp39-cp39-macosx_11_0_arm64.whl
Size 870.0 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3ae6f4c200a30d619d0c105ed0a32776e76f59e4c13f1bc62dabc76c03a27e5e
BLAKE2b-256 checksum
How to use checksums
6cc76e169196403755a635361a200f78216f000fe02c4d7bc31d727728b5336a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp39-cp39-macosx_10_9_x86_64.whl

Download URL python_easygraph-1.6.2-cp39-cp39-macosx_10_9_x86_64.whl
Size 911.2 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
89c7f1c9469b280e8c7f6815b2746a132c699b80634dc8cbb62ed4643039c04c
BLAKE2b-256 checksum
How to use checksums
4a5db1c219457bd2c1f0fb3209abfe485348ab19a9a76701820c91ed9d8cb59e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp38-cp38-win_amd64.whl

Download URL python_easygraph-1.6.2-cp38-cp38-win_amd64.whl
Size 857.5 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
a700b8da8c19d7204a6911da7c14ffc26759818c6d56f980900b8188efee32a0
BLAKE2b-256 checksum
How to use checksums
3b5f69e98296ed302d1e484d874ed1a8d0efe5d9317adb3acad1964c88d80d56
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp38-cp38-win32.whl

Download URL python_easygraph-1.6.2-cp38-cp38-win32.whl
Size 799.1 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
b5e3f23538c8d543236034b225b74bb2fc93d26f97e4a5b3528fd11974e8a5be
BLAKE2b-256 checksum
How to use checksums
87ed35d4fcca793a4e32146420040698d4689c2fdc5685c096dcc9da690b53c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL python_easygraph-1.6.2-cp38-cp38-musllinux_1_2_x86_64.whl
Size 2.1 MB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4c22e16d748ca249b0e2797bab49651b13d8e10abc1c6679a19aed8321a55426
BLAKE2b-256 checksum
How to use checksums
cb9ed9b52f867756b1569230dd8b74cb67664dd71a9b04f544be2e315dc77ce2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp38-cp38-musllinux_1_2_i686.whl

Download URL python_easygraph-1.6.2-cp38-cp38-musllinux_1_2_i686.whl
Size 2.2 MB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
103a725b5851ebab7ddac0eeb381db1be8322a5d1be21d3d4374d134abed7ab5
BLAKE2b-256 checksum
How to use checksums
42865325c8a3783b036487c1c3f824385a7272bb8510594d15aa4745b2c606e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL python_easygraph-1.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 957.5 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
294e1a092bfb63abfd3b13c5e2b9bffd469102a568ba5c5c2433be0a725b4ad6
BLAKE2b-256 checksum
How to use checksums
8a5c4a17f7d25b21ae7c32a5d382ae8ba0f3f16fda83d2441504379c3269af0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL python_easygraph-1.6.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Size 977.9 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
e273273df03b7942d44c2d35ce97a00ba3a9ea2cdcf7a2593bd1fc5cd932bb26
BLAKE2b-256 checksum
How to use checksums
a0bb5db03f2f510f4aa789cb975366f723ce011d8bcf439b0617eedc5e874517
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp38-cp38-macosx_11_0_arm64.whl

Download URL python_easygraph-1.6.2-cp38-cp38-macosx_11_0_arm64.whl
Size 869.6 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b880a9b53bc898b5b38837612ec516d03e1ebdd1884208249c905c6b26719438
BLAKE2b-256 checksum
How to use checksums
b0de852fe667a74aaa5924329d2be2cb39d00da3f59c0030a0dbdd86e02a95a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / python_easygraph-1.6.2-cp38-cp38-macosx_10_9_x86_64.whl

Download URL python_easygraph-1.6.2-cp38-cp38-macosx_10_9_x86_64.whl
Size 910.6 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
d731796e5100ff17d9fba152e6bc157570f54f94b5079badc4b8dcf2cde5efdf
BLAKE2b-256 checksum
How to use checksums
990fb28bc8526c7f12f795080eedb23456fb3c104a2656582df3ff9f1ba82d4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release history Release notifications | RSS feed

This release

1.6.2 This release

49 release files

1.6

49 release files

1.5.2

49 release files

1.5.1

49 release files

1.5

49 release files

1.4.5

7 release files

1.4.4

49 release files

1.4.3

1 release file

1.4.2

21 release files

1.4.1

48 release files

1.4

40 release files

1.3

40 release files

1.2

40 release files

1.1

34 release files

1.0

34 release files

0.2a33

5 release files

0.2a32

1 release file

0.2a31

1 release file

0.2a30

5 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page