Skip to main content

Python data backend for neuroglancer, a WebGL-based viewer for volumetric data

Project description

Neuroglancer Python Integration

This package provides a Python interface for controlling Neuroglancer, a web-based 3-d volumetric data viewer.

The following features are supported:

  • Viewing in-memory NumPy arrays (or any other array type with a similar interface, including HDF5 arrays loaded through h5py)
  • Reading and writing the Neuroglancer viewer state from Python
  • Changing Neuroglancer key and mouse bindings
  • Defining actions (to be triggered by key or mouse bindings) that cause a Python callback to be invoked.

It starts a local web server for communicating state changes using sockjs, serving a copy of the Neuroglancer client code, and for serving data to the Neuroglancer client if Python data sources are used.

Installation

It is recommended that you activate a suitable Python virtual environment before installing.

Python 3.5 or later is required.

You can install the latest published package from PyPI with:

pip install neuroglancer

In most cases, this will use a prebuilt binary wheel, which requires neither node.js (to build the Neuroglancer client) nor a C++ compiler. If no binary wheel is available for your platform, a source distribution (sdist) will be used instead, which requires a C++ compiler to build but does not require node.js (the source distribution includes a prebuilt copy of the Neuroglancer client).

Direct installation from remote git repository

To install the latest version from the Neuroglancer git repository, you can use:

pip install git+https://github.com/google/neuroglancer

Note that installing from a git repository requires Node.js and a C++ compiler.

To install a specific commit XXXXXXXXX:

pip install git+https://github.com/google/neuroglancer@XXXXXXXXX

In another Python package, you can declare a dependency on a git version using the syntax:

setup(
    name='<package>',
    ...,
    install_requires=[
        ...,
        'neuroglancer @ git+https://github.com/google/neuroglancer@XXXXXXXXX',
    ],
)

Installation from local checkout of git repository

You can also install from a local checkout of the git repository. Two forms of installation are supported: normal installation, and an editable installation for development purposes.

As with installation from a remote git repository, installation from a local checkout requires Node.js to build the Neuroglancer client and a C++ compiler to build the C++ mesh generation extension module.

Normal installation

For normal installation, run the following from the root of the repository:

python setup.py install

That will automatically build the Neuroglancer client using Node.js if it has not already been built (i.e. if neuroglancer/static/index.html does not exist). To rebuild the Neuroglancer client explicitly, you can use:

python setup.py bundle_client

or

npm run build-python

Note: Installing from a local checkout using pip install . also works, but it may be slower because it makes a full copy of the local directory (https://github.com/pypa/pip/pull/7882), including the possibly-large .git and node_modules directories.

Editable installation (for development purposes)

During development, an editable installation allows the package to be imported directly from the local checkout directory:

pip install -e .

Any changes you make to the .py source files take effect the next time the package is imported, without the need to reinstall. If you make changes to the Neuroglancer client, you still need to rebuild it with npm run build-python. You can also keep the Neuroglancer client continuously up-to-date by running npm run dev-server-python.

Examples

See the example programs in the examples/ directory. Run them using the Python interpreter in interactive mode, e.g.

python -i example.py

or using the IPython magic command

%run -i python.py

Do not run an example non-interactively as

python example.py

because then the server will exit immediately.

Mesh generation

For in-memory segmentation volumes, mesh representations of the surface of each object can be generated on-demand as they are requested by the client (e.g. due to the user selecting a segment)

Security

By default the server binds only to the 127.0.0.1 address, and for protection against cross-site scripting attacks only accepts requests that include a valid randomly-generated 160-bit secret key.

Test suite

The test suite can be run using the tox command. Some of the tests require a WebGL2-enabled web browser in order to test interaction with the Neuroglancer client. Both Chrome and Firefox are supported, but currently due to bugs in Swiftshader, Chrome Headless does not work. Firefox Headless also currently does not support WebGL at all. On Linux, you can successfully run the tests headlessly on Firefox using xvfb-run. On other platforms, tests can't be run headlessly.

# For headless using Firefox on xvfb (Linux only)
sudo apt-get instrall xvfb # On Debian-based systems
tox -e firefox-xvfb  # Run tests using non-headless Firefox

# For non-headless using Chrome
tox -e chrome

# For non-headless using Firefox
tox -e firefox

# To run only tests that do not require a browser
tox -e skip-browser-tests

Refer to tox.ini for details of the test procedure.

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

neuroglancer-2.24.post1.dev0.tar.gz (2.6 MB view details)

Uploaded Source

Built Distributions

neuroglancer-2.24.post1.dev0-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10 Windows x86-64

neuroglancer-2.24.post1.dev0-cp310-cp310-musllinux_1_1_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

neuroglancer-2.24.post1.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

neuroglancer-2.24.post1.dev0-cp310-cp310-macosx_10_9_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

neuroglancer-2.24.post1.dev0-cp39-cp39-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.9 Windows x86-64

neuroglancer-2.24.post1.dev0-cp39-cp39-musllinux_1_1_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

neuroglancer-2.24.post1.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

neuroglancer-2.24.post1.dev0-cp39-cp39-macosx_10_9_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

neuroglancer-2.24.post1.dev0-cp38-cp38-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.8 Windows x86-64

neuroglancer-2.24.post1.dev0-cp38-cp38-musllinux_1_1_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

neuroglancer-2.24.post1.dev0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

neuroglancer-2.24.post1.dev0-cp38-cp38-macosx_10_9_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

neuroglancer-2.24.post1.dev0-cp37-cp37m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.7m Windows x86-64

neuroglancer-2.24.post1.dev0-cp37-cp37m-musllinux_1_1_x86_64.whl (4.6 MB view details)

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

neuroglancer-2.24.post1.dev0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

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

neuroglancer-2.24.post1.dev0-cp37-cp37m-macosx_10_9_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file neuroglancer-2.24.post1.dev0.tar.gz.

File metadata

  • Download URL: neuroglancer-2.24.post1.dev0.tar.gz
  • Upload date:
  • Size: 2.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for neuroglancer-2.24.post1.dev0.tar.gz
Algorithm Hash digest
SHA256 f495d113235a9e7fa7a0771ab8faabb6509682fd16f360e14e2e8bd29bdfc668
MD5 4fd2c08ed1f28f651da37cf6046e8269
BLAKE2b-256 9622e9bb62c4ebd3cb0827697695e09c451371a401a3f17e9c5f5ece27626f1f

See more details on using hashes here.

File details

Details for the file neuroglancer-2.24.post1.dev0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: neuroglancer-2.24.post1.dev0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for neuroglancer-2.24.post1.dev0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eb74e8fbcbc2390cebaf6f76ce9a5f421a979ed3c4e8ba5222fad68f57a706e4
MD5 9f335b71262b7adf169c736ac3aa948f
BLAKE2b-256 c506c8acbeb764784ffde5321773f3362f96c5627e59b3db8d2ac6f46c0c50ee

See more details on using hashes here.

File details

Details for the file neuroglancer-2.24.post1.dev0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: neuroglancer-2.24.post1.dev0-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for neuroglancer-2.24.post1.dev0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 108d4d0638d5afc01a0062d07203512bbec03b243470891a266c4fa836dd97b3
MD5 ff88d78f7d8672ede577f116edfcc8d3
BLAKE2b-256 48371ea0146c775015a957af78e737de33a502553bd858d87c50fd72701e21b4

See more details on using hashes here.

File details

Details for the file neuroglancer-2.24.post1.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for neuroglancer-2.24.post1.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ed5e59a1e1fdd5878d7c9d0208a5b508b0e1e199b37d7326953fc66bd611cb7
MD5 da9752f12dfa0206c00266ec612aa9d0
BLAKE2b-256 33748ef731279a0fa64000e360eaa28ae737b03caa78a83f86bd2d3992c06a42

See more details on using hashes here.

File details

Details for the file neuroglancer-2.24.post1.dev0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: neuroglancer-2.24.post1.dev0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for neuroglancer-2.24.post1.dev0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05d939e103c390893f83316bfaaa07862ca2d93ea4a885bc8204e104c80de310
MD5 43ab199c62a2daddc8791488b39eb84d
BLAKE2b-256 82abdf468cd679d01a7f627a2e4591602db30a5bb4ccfeb15cf96a946730f2b6

See more details on using hashes here.

File details

Details for the file neuroglancer-2.24.post1.dev0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: neuroglancer-2.24.post1.dev0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for neuroglancer-2.24.post1.dev0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ac8991dbc84db3d6f8ad6d8b296e765d5237412082cf70aec1aae4ef5d087b8c
MD5 f08c90e37379db532c4fe190a49b1122
BLAKE2b-256 3ae99ba5741968d2017b65bb790d845e5292d3424f68a229b26621875055edf9

See more details on using hashes here.

File details

Details for the file neuroglancer-2.24.post1.dev0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: neuroglancer-2.24.post1.dev0-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.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/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for neuroglancer-2.24.post1.dev0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 995a6ff7f29697ab74e7c75283ea7d4ddfaed149480bff34f0523b7af2980eab
MD5 fcc0f194a205fac883632ae11bd1e8eb
BLAKE2b-256 aac24a79bddfdcb414fe8a6ae605ba3ca9d0ab39a364b777e6ebc31af2d84949

See more details on using hashes here.

File details

Details for the file neuroglancer-2.24.post1.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: neuroglancer-2.24.post1.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.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/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for neuroglancer-2.24.post1.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5501dc7ced4ef34994f5b29e883c2f3f74e919e59ae08a72de5c99934a075b65
MD5 2476d849c13de46a59f15fa0214b5465
BLAKE2b-256 d2a47ccea12aa248c9d7ab0e8db53935327b618b926f5edb42f6c49c097e7cf6

See more details on using hashes here.

File details

Details for the file neuroglancer-2.24.post1.dev0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: neuroglancer-2.24.post1.dev0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • 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/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for neuroglancer-2.24.post1.dev0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b016035cdbcf34ff0faaf9551dc763b45354e761d18af5d5dcb9ac1960da0f70
MD5 a08ee93f750cd82ea7e5dadc2f7c87e3
BLAKE2b-256 aece79eb98958d21f83eb5921acd06e6a4411feb504c37c09d45055d7c144c4d

See more details on using hashes here.

File details

Details for the file neuroglancer-2.24.post1.dev0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: neuroglancer-2.24.post1.dev0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for neuroglancer-2.24.post1.dev0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ec3c34292c35ecbeac692a458b9ee23d56f368593fe5a4d659bde35816f14aa1
MD5 805cc9523fec4d59eeb84091d89f3250
BLAKE2b-256 331f6454efeb2e3d98c4bf6e7e5c94a43b0f1d983e87a5eabf3eca0a50347ace

See more details on using hashes here.

File details

Details for the file neuroglancer-2.24.post1.dev0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: neuroglancer-2.24.post1.dev0-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.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/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for neuroglancer-2.24.post1.dev0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 31719d1eabcf41072d226b77197cdbd4d8592e53f18ef3840f185ff12744896a
MD5 e4b2ac453bbc51d5db2b8c6ee8a32990
BLAKE2b-256 e8d87adebe63d9cf12f62e43110c127774a61312acf1af88a021c2ae02f73617

See more details on using hashes here.

File details

Details for the file neuroglancer-2.24.post1.dev0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: neuroglancer-2.24.post1.dev0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.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/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for neuroglancer-2.24.post1.dev0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48cabbcc567c12a07d59678e2051373f1a05da19f7700f42169f2a487f1bda56
MD5 3ce641b444122710b0b849f8abd11751
BLAKE2b-256 7db18273d919005d9cb90aea463a1af151b14f626698f0d051f69ef6549c0225

See more details on using hashes here.

File details

Details for the file neuroglancer-2.24.post1.dev0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: neuroglancer-2.24.post1.dev0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • 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/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for neuroglancer-2.24.post1.dev0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c75a46ef1f833b23617c8c97d407db9848ec2e1dbb42f98557aa29cd167004a6
MD5 eb453652a2ae43071f69d511bfd15f4a
BLAKE2b-256 34fdcb548904a25a5c855a19be1ed4dd4537252ba10883da0fbe52bc7282dc9b

See more details on using hashes here.

File details

Details for the file neuroglancer-2.24.post1.dev0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: neuroglancer-2.24.post1.dev0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for neuroglancer-2.24.post1.dev0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ff69a526595a398a58589f1dcd4827465e540215156d153b577950d8403b513a
MD5 f6bc4bb08703164f1e53cd62a914727c
BLAKE2b-256 45640e459a6711fd5e5a7e21ed8f3102f3aecee1ce564878036c00c2bc15e34e

See more details on using hashes here.

File details

Details for the file neuroglancer-2.24.post1.dev0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: neuroglancer-2.24.post1.dev0-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.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/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for neuroglancer-2.24.post1.dev0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fe252cd9e2e1864a48437ed306ac49628c7e3b3d9b7da526a8e1977bf9646e3a
MD5 68029dcbb93d4eb35254f21e4cf207c5
BLAKE2b-256 cfc29d82dc2a37577702031a9615d5d313715c44ac03d94aa37fa9c16a633147

See more details on using hashes here.

File details

Details for the file neuroglancer-2.24.post1.dev0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: neuroglancer-2.24.post1.dev0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.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/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for neuroglancer-2.24.post1.dev0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3181f357022a608d957d5cecfe7a6821c6bba10f56cdb071caaed998211d896
MD5 edc3ff8f4ed32acae94714ce6841aaf0
BLAKE2b-256 a04ef2c11763ec282deaa7414a291507f586af0bc3db707188ab30b52939f763

See more details on using hashes here.

File details

Details for the file neuroglancer-2.24.post1.dev0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: neuroglancer-2.24.post1.dev0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • 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/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for neuroglancer-2.24.post1.dev0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2baa2f2672012b8944c8a36bab1fd9ed147a4426948ecb7519c7f238892c0784
MD5 1768e085e7a7fa3742d1803ce055df6f
BLAKE2b-256 c6fbeeb41938ad97b7aff9cf3f9c63b66e1252c85345e870b2e169fae2c7d9a7

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