Skip to main content

Easy Graph

Project description

Copyright (C) <2020-2021> by Mobile Systems and Networking Group, Fudan University

https://img.shields.io/pypi/v/Python-EasyGraph.svg https://img.shields.io/pypi/pyversions/Python-EasyGraph.svg https://img.shields.io/pypi/l/Python-EasyGraph

Introduction

EasyGraph is an open source graph processing library. It is written in Python and supports analysis for undirected graphs and directed graphs. It covers advanced graph processing methods in structural hole spanners detection, graph embedding and several classic methods (subgraph generation, connected component discovery and isomorphic graph generation).

EasyGraph integrates state-of-the-art graph processing approaches and implements them using Python. EasyGraph covers a series of advanced graph processing algorithms include structural hole spanners detection (HIS, MaxD, Common_Greedy, AP_Greedy and HAM), and graph representation learning (DeepWalk, Node2Vec, LINE and SDNE). Besides, for a number of general graph processing approaches, EasyGraph optimizes the algorithms and introduces parallel computing methods to achieve high efficiency.

Install

Installation with pip

$ pip install Python-EasyGraph

or conda

$ conda install Python-EasyGraph

Simple Example

This is a simple example for the detection of structural hole spanners using the HIS algorithm.

>>> import easygraph as eg
>>> G = eg.Graph()
>>> G.add_edges([(1,2), (2,3), (1,3), (3,4), (4,5), (3,5), (5,6)])
>>> _, _, H = eg.get_structural_holes_HIS(G, C=[frozenset([1,2,3]), frozenset([4,5,6])])
>>> H # The structural hole score of each node. Note that node `4` is regarded as the most possible structural hole spanner.
{1: {0: 0.703948974609375},
 2: {0: 0.703948974609375},
 3: {0: 1.2799804687499998},
 4: {0: 1.519976806640625},
 5: {0: 1.519976806640625},
 6: {0: 0.83595703125}
}

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Python-EasyGraph-0.2a37.tar.gz (120.5 kB view details)

Uploaded Source

Built Distributions

Python_EasyGraph-0.2a37-pp38-pypy38_pp73-win_amd64.whl (183.9 kB view details)

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a37-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a37-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (184.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Python_EasyGraph-0.2a37-pp37-pypy37_pp73-win_amd64.whl (183.8 kB view details)

Uploaded PyPy Windows x86-64

Python_EasyGraph-0.2a37-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a37-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (135.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

Python_EasyGraph-0.2a37-cp39-cp39-win_amd64.whl (183.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

Python_EasyGraph-0.2a37-cp39-cp39-win32.whl (176.5 kB view details)

Uploaded CPython 3.9 Windows x86

Python_EasyGraph-0.2a37-cp39-cp39-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

Python_EasyGraph-0.2a37-cp39-cp39-musllinux_1_1_i686.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a37-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a37-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a37-cp39-cp39-macosx_10_9_x86_64.whl (184.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

Python_EasyGraph-0.2a37-cp38-cp38-win_amd64.whl (183.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

Python_EasyGraph-0.2a37-cp38-cp38-win32.whl (176.6 kB view details)

Uploaded CPython 3.8 Windows x86

Python_EasyGraph-0.2a37-cp38-cp38-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

Python_EasyGraph-0.2a37-cp38-cp38-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a37-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

Python_EasyGraph-0.2a37-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a37-cp38-cp38-macosx_10_9_x86_64.whl (184.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

Python_EasyGraph-0.2a37-cp37-cp37m-win_amd64.whl (183.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

Python_EasyGraph-0.2a37-cp37-cp37m-win32.whl (176.5 kB view details)

Uploaded CPython 3.7m Windows x86

Python_EasyGraph-0.2a37-cp37-cp37m-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

Python_EasyGraph-0.2a37-cp37-cp37m-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a37-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

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

Python_EasyGraph-0.2a37-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a37-cp37-cp37m-macosx_10_9_x86_64.whl (184.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

Python_EasyGraph-0.2a37-cp36-cp36m-win_amd64.whl (183.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

Python_EasyGraph-0.2a37-cp36-cp36m-win32.whl (176.5 kB view details)

Uploaded CPython 3.6m Windows x86

Python_EasyGraph-0.2a37-cp36-cp36m-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

Python_EasyGraph-0.2a37-cp36-cp36m-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

Python_EasyGraph-0.2a37-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

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

Python_EasyGraph-0.2a37-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

Python_EasyGraph-0.2a37-cp36-cp36m-macosx_10_9_x86_64.whl (184.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file Python-EasyGraph-0.2a37.tar.gz.

File metadata

  • Download URL: Python-EasyGraph-0.2a37.tar.gz
  • Upload date:
  • Size: 120.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python-EasyGraph-0.2a37.tar.gz
Algorithm Hash digest
SHA256 3360d4f7b19b34d51c150e46e23e35f220f4b06644c3f415e4225730651b5fc7
MD5 206fd483354fdac6f492f1ebc4b43c94
BLAKE2b-256 f0e0807a5163097c651c86dea0c670f6dbd092a3f577c7cba4bec57f408b0cc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-pp38-pypy38_pp73-win_amd64.whl
  • Upload date:
  • Size: 183.9 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1ca937085d07cd99451e1d43fca77543ad09a13b0c0f4bfaa88dace8d8f5adb2
MD5 87fad0f2ed80a5bfc149292dc216d86d
BLAKE2b-256 2fe96a5b907036d7bf09f84066d658cdb1377fb7531134d23856b32f45718bbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a37-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b386d9532ac274c9f31c955b3c143ac043a97112958e70d4965d590afe00777a
MD5 ebf8021e42807035c575103f7a0e7349
BLAKE2b-256 acd21f21d933671ab7eb32d49f7dc5b5485a88600bd587117dc4e5a0e925110b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af1f2ac74c7c14716520354823f1be739845ef05aba4c3bfd8bdd647256e61a0
MD5 64006099ba82052204922385a8ba7f01
BLAKE2b-256 86361447b0e810873054ce2f643b05d984902993be9728c86f8dfa73e59e91ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 184.2 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 114282e150783d65a57c7faaeaf23eee8a02e538b5fa26e3a83d84d58aa50a4f
MD5 ef83979f6160013cea0f44fc4b2124df
BLAKE2b-256 6ec2ed6b6bcaad865b8702da699bcc8a45db1db59a521117ef30b682b5893e2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 183.8 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0da1f29f9036470e1a725a8d7e75e53c9c27e6515e9faeb0cbd698622f6d419b
MD5 0b6072baadee25ba214160af0a30b02a
BLAKE2b-256 44dd33be56d4b3eda1d862f792fb78eca7796c4bf5bc5b075d0f3bc71388a359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for Python_EasyGraph-0.2a37-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a098405a6d9f239c4aa6455c7e6c6915d59377c61a385f66e09bc1a2058772f6
MD5 0f158e4906e5a2b5cc6d1c8bd9742640
BLAKE2b-256 ad520b37d0a6166f1d8a4573446a264d40a1cf97e06c8beccbbe5f71ae743405

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 05ecb018038aa6caee7d2a548e683e1d8931aec47a3a106d3fcf743a7e2106a1
MD5 a2a8a34a2b6b5ed24da2f465f6c23130
BLAKE2b-256 50293fe9f67eb3c5cfc8673141c6d96f53ef23eb7d1158a29018bb258ec3728e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 135.6 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eca768efc4ef9852aef1ee01d39dde2d1526ff86fd1fa7ee6ba357123077fa4b
MD5 382db0e1bd4ff90122953de3acc29895
BLAKE2b-256 cb97b12ef73e0fbf744861f93c37a123350fe88c57f588a1457be0bdb3712122

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 183.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2f175ccf876eaabfbde5891881c77b73b2b2c720a7fde2c87bfda9c54015252d
MD5 7e257993052089c98d24133a277b2a5b
BLAKE2b-256 357e0e1862afabe6451450e893a94e2682ac4bb8de2e041de1a8549ae8be383b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp39-cp39-win32.whl
  • Upload date:
  • Size: 176.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 941d6660f81d2ceb1dc2580e794bbad7e284036a78fa35a326bb7a6f976bafb6
MD5 d0116b63ac66ab54dc8737c2018a4919
BLAKE2b-256 f89f0fc851a78b63b88f80e88598eb31676ce041ca5966e8b6a1fc9f11291952

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f91b0e98536bc5d9838eb0fd45c09f8a50904ed2d5abb74cbcfcff65b5f6ba7e
MD5 b2b0f6e7bfcfd60740ce3d490c4b6cde
BLAKE2b-256 54de4db2b78f01432b47afe03faca2d0fd2dc003b51ee7f4e9fdd30f52acd9b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8b1ebce8a13ae025c4ee52104abc164c22882fbd2b15fcab7ea5b56feb17470a
MD5 a55aaa65817416fbf11cfe63f173b9aa
BLAKE2b-256 dd8a08c4a73e4e44dc6e1b93f314fb2585e62da79d6979b5526c0b2ecf8a6b6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 900abff200bd9a24f33770e14ab43d4f217e66dfba8ee4da22903eda4d520d3d
MD5 da52e150a5e893ca80056a5e6fe9b892
BLAKE2b-256 16316e9b91b554af40082458216db142935a508efc65e9cb03a52c5cd1efeb6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a0d9163c754bb3c443511cff5fc41783b718ee1dafe12909ee487df98b433b6c
MD5 174459cfdcf28e7eba635d069707dc59
BLAKE2b-256 0e041f045380521149d95cd7bf76bc71e794764135d2611b4bc4e14a6c8e3fd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 184.2 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 18bbcc6379b11aaf8fb44aeb6af75d276bb7ad9343df47771a3b255f8a2d5cd0
MD5 27d1821bc6f7d95a054881f5cf0167fa
BLAKE2b-256 ef535edb449185a3bd7b03960a9040cade6661df015b5580c0577f3a87255fc3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 183.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7fc9c23884f68746a2e60c9c84ac07b423c34d1b062e40cdf346da5918356e61
MD5 962bfb366a7353bb1d03088c564bcd46
BLAKE2b-256 3ef254bb725ed56bb8c03170587ea91588cd17599292ad930f1261aff448fe7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp38-cp38-win32.whl
  • Upload date:
  • Size: 176.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 773d183b9e7aadbcca4224a6988cb022a3e0f536ef375b41151e13ebfe4de521
MD5 4fe696e75f7b2f3305605c9d2d7a6bb5
BLAKE2b-256 fda1c554f8a7151d7ef009b250e1c20c154e5aff2304af7606cecf5d3509af25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 67a5e99229f9082f102810119a6e2f216ba405ea350a640a9243f38b0fec91c3
MD5 079234485dac9fc05a8672f4eddaf3c3
BLAKE2b-256 4f4ea6fda487c0d8fea1e7ba91b477ffd98e3006a32d82adb78d707663324432

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d0f83dc868053b708058545ef60080001e4255248547b7dae003e42494a2dd4e
MD5 627a6aac3cd0102a9f57fbd4aae2d4af
BLAKE2b-256 84f4a28c22e01b4864a60074d992bbab5cd5c4c900cd88c0c0b5499865c54109

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ad4b8a5d9b623c77c8271a1d09fb06a545253080c8d47156203f2ec6e45f378
MD5 6ad3127bf8a4e95ac95f13e4690bf3e6
BLAKE2b-256 e27677a8ed9a1bdb5a1b89cfbdf09e3f92bf6c719691e192fb357aa69a35f9bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b018596ba7f9984a60ce2a4a6043e4b0e50a82d8503c70ee777d13d2598ae3b
MD5 39edb2d5504536d35baebf84958c2a25
BLAKE2b-256 4eff38b360ea32058fbdef6de47f765ac7d6e9a49c52bc31e86f08eadbd3842b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 184.2 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fc925e44253d2913663b1845f42f12e597522510c45e1745b9a19ad6d2891f86
MD5 21c98bb1f421e805dfddb4d85314354c
BLAKE2b-256 e92b416b1075b720952bfb587c8037985d6bd8b7408c151adf1e390051431615

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 183.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 df5e048ca69c4e80789e32bb27ad859310e0e0aebd7afc0084b87cd1b8069018
MD5 181b14db2c63993edf7bab9937cb3a99
BLAKE2b-256 68250ac0a6c039cd86b111798caa6581b314fed7ee30596ebad80d04d4f63138

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 176.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e8cf66260d4fdd9a6e5bb71f264d271a0e22ada60a90d1b7f81846e05a34de72
MD5 96edaa90a79e1742fef6eb9aa325cf18
BLAKE2b-256 3fb8d01bb6246322f77cb08da6fa8896703eca6ebc2d82ccb113af79edb86d5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2f625bcd8b61ca17c0c3710a9208f66c5aaa43624fd40ad1c239a8cf1d98646c
MD5 578f4e9f9dda840374b495b4e58bf9f4
BLAKE2b-256 24b98281641b85efe75114453ef03188fa11588f8475a42d733115202e7b4b0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 da709c1ec948a70ff4733b004b5c2eae2c50814e44866295f6e439fedb78d02e
MD5 379e51a5ac7cb4eb0a64f66e7543cdbe
BLAKE2b-256 705b873756047a1b001a7468948f38cb5e15495b634f9c193786fb078a048605

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49aad032e1040d565cb9b3d9e5a6c2634fb4f02e9146d4b4f6e42b0d6f64d312
MD5 e8ee5b2b7093bfcdb12da8f1ce5b712a
BLAKE2b-256 129fdcf92d0f8a800573e835b6d08bda4ed7a6a7e36b2e6e22ff197734d290f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a4df8208654b34754df44ec07cc489816c3c9e56540e056cf7383070a2b0292a
MD5 7c69ba8a683f973e40d173f8e32da716
BLAKE2b-256 10c0611ab256cb9a8b8e7fbbdf2a149f2627864e9aca775d8add5945db5f4770

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 184.2 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e558b99511b4459e84f4a65c485112eea75bffcced17a1551ec055bcd3181818
MD5 d466deb2be31d87ee3031b01d0e04be5
BLAKE2b-256 0aef9e74fe202f6bc830093a5b371852fc6ec8bf005506da498c7a60d1523699

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a37-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 183.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ffa2521a299b4c35359db96cc6f596ebf9f2306be224e30883e0ca99e708d567
MD5 e51c25540d0c17738fd0d6d654176464
BLAKE2b-256 0d58f59970b672c801469190080aa51e74002e79450a9fb7e03c551ad4282677

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a37-cp36-cp36m-win32.whl.

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 176.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 19fc3f1bd7df8eb810d99de23317825c9fed6055265ba567f7c86373964feb60
MD5 885c3c55607225ae04c03fb62409b989
BLAKE2b-256 3d9b2eb94b5f0b61b2505a66d2162246084997145d3b874187db81bf475c5d67

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a37-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1b021f8880c22df55c4f9b1b2e6d3520031fd21729322978872592082ae07a2b
MD5 0a7c992000867a7530aefe34f51ed627
BLAKE2b-256 e394a23ded5fc221be8bcefc78e42077e7d52f090a2ab8d5521964661ca4a534

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a37-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6faa5ddbf00083967aba9cbb91aae238ca32a22faca1cd63be0d51148b07816e
MD5 ee65462288d362460fdc366503c21af7
BLAKE2b-256 3cb33bb72e5d9b5a8f6d8e9c3c3bcee9b2d2cdf38b7cc4bcf1551fed4e50cb1e

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a37-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f7cfa4ee14b513409d3c6935268a28d189dde23948d06d758e04bee584eb7ac
MD5 6247201d5ed8aa9cbb0028e06f873370
BLAKE2b-256 1e086371a96fbab93f59a9e8d2efad248826a15c86e889dff380de66be159abe

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a37-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 160e9d4fdd6b9ef1bb55d031e56b5ac8a277e022c8f25926382a0fb781b6fefa
MD5 120e6246f017df23f58af31cdf3f8f4f
BLAKE2b-256 59db5e070e23bfc7fd69c0cfe9fdb781b019481eccd87c16c61b079d4fa676e9

See more details on using hashes here.

File details

Details for the file Python_EasyGraph-0.2a37-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: Python_EasyGraph-0.2a37-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 184.2 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for Python_EasyGraph-0.2a37-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3f5c47f77827434cb2481f48f319bd4e700787f38817b605ebbb17231ebba31
MD5 40961bbb5379351ce5a5c022a98f48c4
BLAKE2b-256 f5a2171b665df9edb9c4110ab6f0479350ed5dde0e9b549e80e7168379975bf1

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