Skip to main content
Archived

This project has been archived by its maintainers, and is no longer receiving any updates.

retworkx is a rust graph library interface to python3. For right now it’s scope is as an experiment in being a potential replacement for qiskit-terra’s networkx usage (hence the name). The scope might grow or change over time, but to start it’s just about building a DAG and operating on it with the performance and safety that Rust provides. It is also a personal exercise in learning how to interface rust with python.

Installing retworkx

retworkx is published on pypi so on x86_64 and i686 Linux systems or x86_64 on Mac OSX and Windows installing is as simple as running:

pip install retworkx

This will install a precompiled version of retworkx into your python environment.

However, if there are no precompiled binaries published for your system you’ll have to compile the code. The source package is also published on pypi so you can also run the above command to install it. However, there are 2 preconditions for this to work, first you need to have cargo/rustc nightly in your PATH. You can use rustup to make this step simpler. Secondly, you need to have setuptools-rust installed in your python environment. This can can be done by simply running:

pip install setuptools-rust

prior to running:

pip install retworkx

If you have rust nightly properly installed pip will compile retworkx for your local system and it should run just as the prebuilt binaries would.

Building from source

The first step for building retworkx from source is to clone it locally with:

git clone https://github.com/mtreinish/retworkx.git

retworkx uses PyO3 and setuptools-rust to build the python interface. Unfortunately, this means you need to use nightly rust because PyO3 only works with nightly at this point. You can use rustup to install rust nightly.

Once you have nightly rust and cargo installed you can easily install retworkx into your python environment using pip. Once you have a local clone of the repo, change your current working directory to the root of the repo. To set the compiler for retworkx to nightly rust using rustup, run the following from this directory:

rustup override set nightly

then, you can install retworkx into your python env with:

pip install .

Assuming your current working directory is still the root of the repo. Otherwise you can run:

pip install $PATH_TO_REPO_ROOT

which will install it the same way. Then retworkx in your local python environment. There are 2 things to note when doing this though, first if you try to run python from the repo root using this method it will not work as you expect. There is a name conflict in the repo root because of the local python package shim used in building the package. Simply run your python scripts or programs using retworkx outside of the repo root. The second issue is that any local changes you make to the rust code will not be reflected live in the python you’ll need to recompile the source by rerunning pip install to have any changes reflected in your python environment.

Using retworkx

Once you have retworkx installed you can use it by importing retworkx. All the functions and the PyDAG class are off the root of the package. For example, building a DAG and adding 2 nodes with an edge between them would be:

import retworkx

my_dag = retworkx.PyDAG()
# add_node(), add_child(), and add_parent() return the node index
# The sole argument here can be any python object
root_node = my_dag.add_node("MyRoot")
# The second and third arguments can be any python object
my_dag.add_child(root_node, "AChild", ["EdgeData"])

Release files for retworkx 0.2.0

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

Built distributions (wheels)

Table of built distributions (wheels) for retworkx 0.2.0
File
retworkx-0.2.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
retworkx-0.2.0-cp38-cp38-manylinux2010_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-64 Details
retworkx-0.2.0-cp38-cp38-manylinux2010_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-32 Details
retworkx-0.2.0-cp38-cp38-manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
retworkx-0.2.0-cp38-cp38-manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
retworkx-0.2.0-cp38-cp38-macosx_10_13_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.13+ x86-64 Details
retworkx-0.2.0-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
retworkx-0.2.0-cp37-cp37m-manylinux2010_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64 Details
retworkx-0.2.0-cp37-cp37m-manylinux2010_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32 Details
retworkx-0.2.0-cp37-cp37m-manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
retworkx-0.2.0-cp37-cp37m-manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
retworkx-0.2.0-cp37-cp37m-macosx_10_13_intel.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.13+ Intel (x86-64, i386) Details
retworkx-0.2.0-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
retworkx-0.2.0-cp36-cp36m-manylinux2010_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64 Details
retworkx-0.2.0-cp36-cp36m-manylinux2010_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32 Details
retworkx-0.2.0-cp36-cp36m-manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
retworkx-0.2.0-cp36-cp36m-manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
retworkx-0.2.0-cp36-cp36m-macosx_10_13_intel.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.13+ Intel (x86-64, i386) Details
retworkx-0.2.0-cp35-cp35m-win_amd64.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-64 Details
retworkx-0.2.0-cp35-cp35m-manylinux2010_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-64 Details
retworkx-0.2.0-cp35-cp35m-manylinux2010_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-32 Details
retworkx-0.2.0-cp35-cp35m-manylinux1_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 Details
retworkx-0.2.0-cp35-cp35m-manylinux1_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32 Details
retworkx-0.2.0-cp35-cp35m-macosx_10_13_intel.whl CPython 3.5 CPython 3.5 pymalloc macOS 10.13+ Intel (x86-64, i386) Details

Total release size: 14.3 MB

Release files / retworkx-0.2.0-cp38-cp38-win_amd64.whl

Download URL retworkx-0.2.0-cp38-cp38-win_amd64.whl
Size 154.0 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
b90873f482961b329d1d68c55e6cb192f8eed01c39f493ec54ac50ce7fee0c3c
BLAKE2b-256 checksum
How to use checksums
0b1380d1d8dc1cf1a8bec011b3dc998be3d29fc8c41a4032a35d00b58ab86594
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp38-cp38-manylinux2010_x86_64.whl

Download URL retworkx-0.2.0-cp38-cp38-manylinux2010_x86_64.whl
Size 769.2 kB
Tags CPython 3.8 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
64a1f23b1f9e3e33f66cf01dfa10eeaa6f532f0f0fc0d5f6fdbe4279f5d113c8
BLAKE2b-256 checksum
How to use checksums
affc9172420b64920a4c33dcaac1dc592e78cc076eaa541750eac866307b548c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp38-cp38-manylinux2010_i686.whl

Download URL retworkx-0.2.0-cp38-cp38-manylinux2010_i686.whl
Size 839.4 kB
Tags CPython 3.8 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
9e34cc985dd128c8be3efece56c53038ed70742d8fdebd4495d65a148bb2a34f
BLAKE2b-256 checksum
How to use checksums
caa901a29a28fd4d2e57c8f41d17c7b29fda0bd8eb08a34bb21c5b9a18f80c86
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp38-cp38-manylinux1_x86_64.whl

Download URL retworkx-0.2.0-cp38-cp38-manylinux1_x86_64.whl
Size 769.2 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
20ea676fc50df67a22129c7f4e6570a5e1218d8f625715c66693630918aac351
BLAKE2b-256 checksum
How to use checksums
0b2e57ae095c31e3edd2d171c18a07c676595b9622fc6e7660d616be719d7ecf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp38-cp38-manylinux1_i686.whl

Download URL retworkx-0.2.0-cp38-cp38-manylinux1_i686.whl
Size 839.4 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
814188c3177a75be90a5d1ec693ab96e72071c6df3431a0bb509bdc5a3c5d7e6
BLAKE2b-256 checksum
How to use checksums
7f82a5ffd8025a0402f7f7181630de9360580dbf426af05bdc00e1cfdd1651cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp38-cp38-macosx_10_13_x86_64.whl

Download URL retworkx-0.2.0-cp38-cp38-macosx_10_13_x86_64.whl
Size 198.5 kB
Tags CPython 3.8 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
499f902cded9f122dec3d4f4b151102bfda578ec56ffa3c52df3cc42c788d352
BLAKE2b-256 checksum
How to use checksums
c41c1ee1cdb51af90012ce83f3137288acc54c9a88b3cce6300055c31239c0d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp37-cp37m-win_amd64.whl

Download URL retworkx-0.2.0-cp37-cp37m-win_amd64.whl
Size 154.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
39a4eec73acb9a710b41b98c6cedfa0f61be126367fe64a2a93b53c9656840d2
BLAKE2b-256 checksum
How to use checksums
5d265586ed0917a13a0a719a6f99cb53b498d3e1763fcf870edc67ea21a48329
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp37-cp37m-manylinux2010_x86_64.whl

Download URL retworkx-0.2.0-cp37-cp37m-manylinux2010_x86_64.whl
Size 769.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
080d43dfd5712f3ab865437817b5843adab9c71562517ee09aecc0c16f21092f
BLAKE2b-256 checksum
How to use checksums
3000a07b7ac840296dc033327e972d0c5f0d32eae5bd261e9a90faf92f336481
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp37-cp37m-manylinux2010_i686.whl

Download URL retworkx-0.2.0-cp37-cp37m-manylinux2010_i686.whl
Size 839.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
d26c4b44dfb13b5021d0b60b0b5099d0ddb304595f80231e964c92d931f9c1fe
BLAKE2b-256 checksum
How to use checksums
7f11b6f731c85180d857fef9fed36428d6d43a28bc0de05815b2fd774ff6594f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp37-cp37m-manylinux1_x86_64.whl

Download URL retworkx-0.2.0-cp37-cp37m-manylinux1_x86_64.whl
Size 769.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
669475aa895d65f892749377670db6dcae205c2f44d0f27029c61a0e22a48aa0
BLAKE2b-256 checksum
How to use checksums
b733bd2f28f2d502b2eaf2647103a8903fdd66e2f72623eb81f9e331c8841348
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp37-cp37m-manylinux1_i686.whl

Download URL retworkx-0.2.0-cp37-cp37m-manylinux1_i686.whl
Size 839.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
2eb0b271b8d546e7e42cb2177714a45e4a339c856e1ffa2feea02107c131aa18
BLAKE2b-256 checksum
How to use checksums
e3b2358a5e5fa142486681526cd0caed76df483cebc3846cc05e348d2d15b2a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp37-cp37m-macosx_10_13_intel.whl

Download URL retworkx-0.2.0-cp37-cp37m-macosx_10_13_intel.whl
Size 198.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.13+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
cafc21d3ae8a4162b6af3835b5119929471b03c12e5f85b1ab226f3a5f569cd2
BLAKE2b-256 checksum
How to use checksums
893d9e7508e5bad44b8fbb6385a21fe282f01b2669ddaefb05efcfc1473802e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp36-cp36m-win_amd64.whl

Download URL retworkx-0.2.0-cp36-cp36m-win_amd64.whl
Size 154.1 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
a75f974176ab87c74eb72ef782cde55ed29da9b22ecf4d4f82887fe8b5405cc0
BLAKE2b-256 checksum
How to use checksums
4fbb70d865665fa69cda4527cb8a855e07091f258a2070f0b96c235e8d491566
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp36-cp36m-manylinux2010_x86_64.whl

Download URL retworkx-0.2.0-cp36-cp36m-manylinux2010_x86_64.whl
Size 769.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
776385d0fcd66bd17b0b067a88f940deab05047a99e8c11e3f0e7309a502a4c3
BLAKE2b-256 checksum
How to use checksums
84a50871c8a7068127fc6fe5f7c02c19539e3ac7caf2208fb857cb7346b42383
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp36-cp36m-manylinux2010_i686.whl

Download URL retworkx-0.2.0-cp36-cp36m-manylinux2010_i686.whl
Size 839.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
efdc1b2a99edf9c298b1b6548ecc55eaec21d4de606a55c2bc6a9144804ccabb
BLAKE2b-256 checksum
How to use checksums
cafd10cea6bb5bfff11fe339b56c419fb338203b6f33e7339dfb128368ab034e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp36-cp36m-manylinux1_x86_64.whl

Download URL retworkx-0.2.0-cp36-cp36m-manylinux1_x86_64.whl
Size 769.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
7914cb390677e4dd11faeb6ee24f0e233b05c0fd98381603df83a11acc53ae7d
BLAKE2b-256 checksum
How to use checksums
61239b02c28a5b9b5292ebc48b467c17d0fd00bfc95eeed4ad81be1997105219
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp36-cp36m-manylinux1_i686.whl

Download URL retworkx-0.2.0-cp36-cp36m-manylinux1_i686.whl
Size 839.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e62496e14fa20471b21b6e5c0547f91279d15cb1bfc37b53688cda1c78deaeee
BLAKE2b-256 checksum
How to use checksums
d6c40303647911d08859b43ba7cb43d738c54bfae944faad141784f564c4557d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp36-cp36m-macosx_10_13_intel.whl

Download URL retworkx-0.2.0-cp36-cp36m-macosx_10_13_intel.whl
Size 198.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.13+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
562d8d082d3231fe053ca6d7b19aa09a63b9f590a5099c5ea1deec0abcd60879
BLAKE2b-256 checksum
How to use checksums
db72c5bb3e84e640226a276c0a6c2a4206c847af0afb0d3f078b86276e31f8b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp35-cp35m-win_amd64.whl

Download URL retworkx-0.2.0-cp35-cp35m-win_amd64.whl
Size 154.2 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
7702aba253b177bf50b9d14508f7622ee8d07b0e63c5fd8d8bcb7e194b9ae877
BLAKE2b-256 checksum
How to use checksums
733629e384e7f5366561dd8c23df602de458a673ca6a80aee961b8e5ff029003
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp35-cp35m-manylinux2010_x86_64.whl

Download URL retworkx-0.2.0-cp35-cp35m-manylinux2010_x86_64.whl
Size 769.5 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
535954aa60d2b7fe9bbc1e8ffe2fa6e3244f712da054489b228b542b977f6e1a
BLAKE2b-256 checksum
How to use checksums
742da284703b7382180e9d6f2ad893e34eae45e4fce1a3dc7a5005997920b466
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp35-cp35m-manylinux2010_i686.whl

Download URL retworkx-0.2.0-cp35-cp35m-manylinux2010_i686.whl
Size 839.6 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
e984a26e1ad5a545d9bc0162d4b2c0a6e7260b0b62133f1e8b700ce6cd23dd35
BLAKE2b-256 checksum
How to use checksums
feb203065e8a726807c274d903b28141486056e3c283405b4cf0c150d349603a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp35-cp35m-manylinux1_x86_64.whl

Download URL retworkx-0.2.0-cp35-cp35m-manylinux1_x86_64.whl
Size 769.5 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
cf0ad2b78072343e40b71f781b990808453e98876a53a045c289b0bad99a9fd1
BLAKE2b-256 checksum
How to use checksums
23a6225ce2a3803e34bf2b98249eda1d3a5c4f54a39655a3105273173fe5fd0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp35-cp35m-manylinux1_i686.whl

Download URL retworkx-0.2.0-cp35-cp35m-manylinux1_i686.whl
Size 839.5 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
818f0126e6e36d5f6e99887bf129de7f4625e7a3da0c9eb9195fb9902ec59583
BLAKE2b-256 checksum
How to use checksums
ed16ba7cf0d3476f9016828d6fa15f72fb91f7a83d37818572c7dcf32385dab9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release files / retworkx-0.2.0-cp35-cp35m-macosx_10_13_intel.whl

Download URL retworkx-0.2.0-cp35-cp35m-macosx_10_13_intel.whl
Size 198.7 kB
Tags CPython 3.5 CPython 3.5 pymalloc macOS 10.13+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
42749176954810de8ec82ad7e14d8e945ebb58e289912ae1df7459912e966a87
BLAKE2b-256 checksum
How to use checksums
2ded845df29bbec1b08465f7a3b7602bab46973e65684951af063d768873a1af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.17

Release history Release notifications | RSS feed

This release

0.2.0 This release

24 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