Skip to main content

Experimental library to visualize complex networks

Project description

Helios

Helios is a python library implemented in C for layouting and visualizing complex networks.

Layout

Helios implements a force layout algorithm based on the FR algorithm [1].

Install

Requires python headers and a C11 compatible compiler, such as gcc or clang.

To install it, simply run:

pip install helios

or clone this repository and install it from master by running:

pip install git+git://github.com/heliosnet/helios-core.git

Usage

Currently only the FR layout interface is implemented.

Example initialization with a small network.

import numpy as np
import helios

positions = np.random.random((4, 3))

edges = np.array([
  [0,1],
  [2,3]
],dtype=np.uint64)

# positions is required to be an contiguous float32 numpy array
positions = np.ascontiguousarray(positions,dtype=np.float32)

# edges is required to be an contiguous uint64 numpy array
edges = np.ascontiguousarray(edges,dtype=np.uint64)

# speeds is required to be an contiguous uint64 numpy array
speeds = np.zeros(positions.shape,dtype=np.float32)

layout = helios.FRLayout(edges,positions,speeds)

Two APIS are available to iterate the layouts, synchronized and aynchronous.

Example of the synchronized API:

print("Initial positions:")
print(layout.positions)
layout.iterate(iterations=100)
print("Final positions:")
print(layout.positions)

Example using the aynchronous API:

print("Initial positions:")
print(layout.positions)
if(layout.running()): #False
  print("It is running...")
else:
  print("Not running...")
layout.start()
time.sleep(1)
print("Current positions:")
print(layout.positions)
time.sleep(1)
print("Current positions:")
print(layout.positions)
if(layout.running()): #True
  print("It is running...")
else:
  print("Not running...")
layout.stop()
print("Final positions:")
print(layout.positions)

You can restart the layout once it stopped. Subsequent calls to the start method have no effect if the layout is running.

Compiling on windows:

You need m2w64 and libpython to compile it.

conda install -c anaconda libpython
conda install -c msys2 m2w64-toolchain

You can now use pip install:

pip install ./

or compile distribs:

python setup.py sdist bdist_wheel

Creating a build environment using:

conda create -n buildpy36 -c default -c anaconda -c msys2 python=3.6 numpy libpython m2w64-toolchain 

change python=3.6 and buildpy36 to the version of python you would like to use.

References

[1] Fruchterman, T. M. J., & Reingold, E. M. (1991). Graph Drawing by Force-Directed Placement. Software: Practice and Experience, 21(11).

Project details


Download files

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

Source Distribution

helios-0.2.1.tar.gz (63.6 kB view details)

Uploaded Source

Built Distributions

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

helios-0.2.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl (136.2 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

helios-0.2.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (136.2 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

helios-0.2.1-cp39-cp39-win_amd64.whl (97.3 kB view details)

Uploaded CPython 3.9Windows x86-64

helios-0.2.1-cp39-cp39-manylinux2010_x86_64.whl (326.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

helios-0.2.1-cp39-cp39-manylinux2010_i686.whl (286.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

helios-0.2.1-cp39-cp39-macosx_10_14_x86_64.whl (59.6 kB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

helios-0.2.1-cp38-cp38-win_amd64.whl (97.4 kB view details)

Uploaded CPython 3.8Windows x86-64

helios-0.2.1-cp38-cp38-manylinux2010_x86_64.whl (326.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

helios-0.2.1-cp38-cp38-manylinux2010_i686.whl (286.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

helios-0.2.1-cp38-cp38-macosx_10_14_x86_64.whl (59.6 kB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

helios-0.2.1-cp37-cp37m-win_amd64.whl (97.5 kB view details)

Uploaded CPython 3.7mWindows x86-64

helios-0.2.1-cp37-cp37m-manylinux2010_x86_64.whl (326.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

helios-0.2.1-cp37-cp37m-manylinux2010_i686.whl (286.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

helios-0.2.1-cp37-cp37m-macosx_10_14_x86_64.whl (59.6 kB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

helios-0.2.1-cp36-cp36m-win_amd64.whl (97.5 kB view details)

Uploaded CPython 3.6mWindows x86-64

helios-0.2.1-cp36-cp36m-manylinux2010_x86_64.whl (325.3 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

helios-0.2.1-cp36-cp36m-manylinux2010_i686.whl (285.3 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

helios-0.2.1-cp36-cp36m-macosx_10_14_x86_64.whl (59.6 kB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

helios-0.2.1-cp35-cp35m-win_amd64.whl (97.5 kB view details)

Uploaded CPython 3.5mWindows x86-64

helios-0.2.1-cp35-cp35m-manylinux2010_x86_64.whl (324.9 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

helios-0.2.1-cp35-cp35m-manylinux2010_i686.whl (285.0 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

File details

Details for the file helios-0.2.1.tar.gz.

File metadata

  • Download URL: helios-0.2.1.tar.gz
  • Upload date:
  • Size: 63.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1.tar.gz
Algorithm Hash digest
SHA256 cbe4a7e55f9ff14411fd4a33da864f74295fa9ddfade6d282e27db10ef3ee6d3
MD5 91f27a212d7d31b1097019f9c13afdc3
BLAKE2b-256 718e43e5fd695b6865e04aaf0850bb10f3cdfada7ee3851e458e04b9d405b383

See more details on using hashes here.

File details

Details for the file helios-0.2.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: helios-0.2.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 136.2 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9e4fad1059ece6129bf8725bd1333132cf86a77848b82c8175a2df8be2844882
MD5 0c839cf0ce178e1d6687c10d0f128f08
BLAKE2b-256 c038681e62b4c4d1404e58ac7035c5cbdf1ade0101150267e301ebf836f4e786

See more details on using hashes here.

File details

Details for the file helios-0.2.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: helios-0.2.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 136.2 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 57d303e297e99f783998bf6a1982864688aa9e71fdc082b41388528e0eb8c3a4
MD5 ee2eda2bfc23dc978992667877204a88
BLAKE2b-256 540ee2a9cc513e14e18267cd19c86bbed9e852c2b30375b27aac107b752eaec0

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: helios-0.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 97.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b119fc473e41459e5fb38ae83ad60777d05358d7dc33f61058068be5f1793c76
MD5 a804d458fe2d0bed5f059560eaaf3387
BLAKE2b-256 eb06400ef7d38d16511733bef4120ffd37706dfaaea859cbd35e0b3b78581955

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: helios-0.2.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 326.3 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2206c7473b9851c82b2edb27e3834c0a456c49e61fb2495b6a11153d8996a6d9
MD5 4289e547f6df11702008b9cc66478a7e
BLAKE2b-256 82d1a2f9376cbd570ab990fea875d27078e1138aaf2fcbd50aab912914946960

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: helios-0.2.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 286.6 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 85e131b03f044bb34f3b1a7ba8ac1c8846ec893fbb8cf46f2e82bd9319678851
MD5 7d1d39eb8eadebd3fb549481f97339e7
BLAKE2b-256 710b245db53a4cb20b32e086212a0170ad17094e2ef41581e23de9b6737f9850

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: helios-0.2.1-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 59.6 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ca518d2207f06748a04718d75047f337b2b02a866afb0d0ddf2ad76719d2677a
MD5 4292fcc5635e25708a51ebc76435fd9e
BLAKE2b-256 d35bb39c49de5fb551b4aa4080cdcb68f6085bf6d921715cb24ff652e6c70083

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: helios-0.2.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 97.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2835b6bbacd9291a16616ae0788dfc6aea5be7d8298531284ddac4440cc9e953
MD5 e7669a6023c980b6bfd63bddbf912e3a
BLAKE2b-256 bc9a6341c9deb1b2d3624df2493e598ceb686031a73637de9f54a53bd37772bb

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: helios-0.2.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 326.4 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 837728fab2681d012799afd43e6f30e5ffcb71f83cab3959c51648b923673635
MD5 f0333cbbf13db01ed616df6a5f967b28
BLAKE2b-256 e9a1c178c44bd869d1dd90098c554ca84569129548e5aea2d829548782df2636

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: helios-0.2.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 286.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0e022a633282aaa47804038f7dc1437b724d2d2b271b92b706c0b361262fbcb8
MD5 c78c291eede148f8a94457e51a791d0c
BLAKE2b-256 3a80b88d998e80257301468dfa1884a36ff50a79d0edc4c7cdaaa34ac4f3bf57

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: helios-0.2.1-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 59.6 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 433aa6688d36a513686a74910f4092a3056ca4a8419881306ff1f8cc5f8d6a0c
MD5 3bab0324fb040f49f833d2857c00de66
BLAKE2b-256 b6891b8902a61cf49ec4388790f99d11794f36835cdce4c9dbe7369b6cd7737f

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: helios-0.2.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 97.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 219688d02f8560bf4e2c5ae3e0053b0a32d43a84463abb99b84bf8f93c2c06d9
MD5 0bf85a0146ebbdbfd630d865468c1a4e
BLAKE2b-256 5f9a5cb220729915fa10e209b58fc40c48802420d470a231e11e1069ab11a95e

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: helios-0.2.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 326.7 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 40963f92b5f0adf800a3cdbbc3f7418ad2efdf24bc7835a348dea41b1afc4271
MD5 748a7232a65877cdccc359303c54f2f7
BLAKE2b-256 0ca7dea02dc192b25cb32680fc47ebf802b03b6061ac08bd823c2f98d1a803bd

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: helios-0.2.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 286.5 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 16ea742746a466a5f5b90a8baefe0b1a627132792551970027789a895a8ef7be
MD5 a7eb6a186e8dd4b7d4c5be09b1aa004a
BLAKE2b-256 c21a0823a0ee89ad4d4482c18d27e07976b43dd57663d400d7469fc42e51b26c

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: helios-0.2.1-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 59.6 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 900ae39b1e7a557dfa2585d32c96a7a031c1727a186faba5afdabdb2c91c5de0
MD5 702423613049c48742efee2c4bd673ad
BLAKE2b-256 03d5855bc6c11f4b059ad4fa3b9ea3c81a96c3cb0e1fd056e33c1766de011a54

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: helios-0.2.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 97.5 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1a3610c46f612791adffd068107ddcfbadab73ee2c774dcb964521a592c78bb3
MD5 a4c224cc7433b83d186cd0737321f270
BLAKE2b-256 d919874c92548915cc2ec8aaa99baa1d2af20bf3c8d448611b0a9293a5395b27

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: helios-0.2.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 325.3 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ebac30ff6e8fe59241bdeb8f5b55f86b3de7f3751d55acc9c18e43b3a0fd6d74
MD5 f68524f1e2d636d1030a29d9b18bcf00
BLAKE2b-256 aa9f4b9ee182189f5e2fcb000f2f7499d5746a6228e90810377276b6af61710f

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: helios-0.2.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 285.3 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e64818ae57ec029ef0fb1eab01f1e4588bd45c8ee34dfa721241a5609991ee27
MD5 b36e94a3cf084200e98ba4adc67b0d29
BLAKE2b-256 35a7fd8b2ba90c82bd0097fbd94fbcf038004c8959c57057cfb6e6b5594042f5

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: helios-0.2.1-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 59.6 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ad2819b0696e059cb35b8163b6c674af84b463f13385eab8ad4b5948d080b877
MD5 39ca5b2576b98d5e34b7c82e95316d72
BLAKE2b-256 4579616e5d1f705530a88f94cc672afcd8d16ac0790a6d6a9df0c30d66eaf0a2

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: helios-0.2.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 97.5 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 4608f01262aa385c7324509802271163696b36f3b4b00e7969352b7078b8394b
MD5 8b322364ab749e9cc27f020dd7781daf
BLAKE2b-256 2abb0974257d318cba4e28a130586728d09e47f7149f26def559f164fda5dc51

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: helios-0.2.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 324.9 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5cee8b6e4ddf6651933f75204a081321246574c0c92098db56771873a160634e
MD5 5e77bbeac668eebe9474da7ce18e91ca
BLAKE2b-256 b95dbb9a6195115a5776d60245a3173ce3ffbfba16e83c74d32a56e7f8f4625c

See more details on using hashes here.

File details

Details for the file helios-0.2.1-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: helios-0.2.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 285.0 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for helios-0.2.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 94eac8199399c307da4969beb5c4a2b5d6401c132055f67e371cb86f8a0290ea
MD5 52d1ae3540766b2d0cf1290c2fd038a2
BLAKE2b-256 5de5a215f28f1ff8f3e385842bb243a3612bfcb85104746a8c875d10d0a700e4

See more details on using hashes here.

Supported by

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