Skip to main content

neoradio2 Python library

Intrepid Control Systems, Inc.

Python bindings for libneoradio2 — the library for communicating with the Intrepid Control Systems neoRAD-IO2 family of ruggedized, isolated analog / digital / temperature DAQ devices.

Documentation

https://intrepidcs.github.io/libneoradio2/python/docs/html/

Installation

pip install neoradio2

Windows: pip.exe is usually located under the Scripts directory of your Python installation.

Linux — udev rules

So the device is accessible without root, install the udev rules. Download 99-intrepidcs.rules and install it:

sudo cp 99-intrepidcs.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules && sudo udevadm trigger

Then add your user to the users group and re-plug the device:

sudo usermod -aG users $USER

(log out and back in for the group change to take effect). If you'd rather write the rule by hand, the neoRAD-IO2 uses USB VID 093c, PID 1300:

SUBSYSTEM=="hidraw", ATTRS{idVendor}=="093c", ATTRS{idProduct}=="1300", GROUP="users", MODE="0666"
KERNEL=="hidraw*", ATTRS{idVendor}=="093c", ATTRS{idProduct}=="1300", GROUP="users", MODE="0666"

Quick example

#!/usr/bin/env python3
import neoradio2

if __name__ == "__main__":
    # Open and close all the attached neoRAD-IO2 devices
    for device in neoradio2.find():
        print(device)
        handle = neoradio2.open(device)
        # Do stuff here
        neoradio2.close(handle)

neoRAD-IO2 Product Line

The neoRAD-IO2 series is a family of ruggedized products that provide an isolated analog, digital or temperature interface to a PC via the PC's USB port. These tools can also be paired with Intrepid products that include a USB port such as neoVI ION, neoVI FIRE 2, RAD-Galaxy, and RAD-Gigalog. In addition, the neoRAD-IO2-CANHUB can power and convert the native UART signal to CAN or CAN FD for use in any CAN device.

The neoRAD-IO2 family communicates on an open source UART based serial communication protocol. Up to eight devices can be daisy chained. The chain length is limited by current supplied to the chain through USB. All neoRAD-IO2 devices have input to output isolation, and 2.5 kV isolation between each of the eight banks. For more details please visit https://www.intrepidcs.com/products/analog-daq-devices/rad-io2-series/

neoRAD-IO2-BADGE Quick Start

neoRAD-IO2-BADGE is a demo board for multi-channel analog measurement. The device mimics the neoRAD-IO2-AIN and neoRAD-IO2-PWRRLY products. Examples are here.

License — MIT

License: MIT

Copyright © 2019 Intrepid Control Systems, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Release files for neoradio2 1.4.1

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

Source distribution (sdist)

Source distribution for neoradio2 1.4.1
File Size Uploaded
neoradio2-1.4.1.tar.gz 9.9 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for neoradio2 1.4.1
File
neoradio2-1.4.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
neoradio2-1.4.1-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
neoradio2-1.4.1-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
neoradio2-1.4.1-cp314-cp314-macosx_10_15_universal2.whl CPython 3.14 CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64) Details
neoradio2-1.4.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
neoradio2-1.4.1-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
neoradio2-1.4.1-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
neoradio2-1.4.1-cp313-cp313-macosx_10_13_universal2.whl CPython 3.13 CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) Details
neoradio2-1.4.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
neoradio2-1.4.1-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
neoradio2-1.4.1-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
neoradio2-1.4.1-cp312-cp312-macosx_10_13_universal2.whl CPython 3.12 CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) Details
neoradio2-1.4.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
neoradio2-1.4.1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
neoradio2-1.4.1-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
neoradio2-1.4.1-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
neoradio2-1.4.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
neoradio2-1.4.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
neoradio2-1.4.1-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
neoradio2-1.4.1-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
neoradio2-1.4.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
neoradio2-1.4.1-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
neoradio2-1.4.1-cp39-cp39-manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64 Details
neoradio2-1.4.1-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details

Total release size: 24.2 MB

Release files / neoradio2-1.4.1.tar.gz

Download URL neoradio2-1.4.1.tar.gz
Size 9.9 MB
Tags Source
SHA-256 checksum
How to use checksums
44bdc5c4ec386ae8c66f7366ed6fdc999918b563ee46570bd978d84715367170
BLAKE2b-256 checksum
How to use checksums
ec7f272ee24a74b947fad911ee90b2335177d1e0fb091317c7092aa52b8f8d56
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp314-cp314-win_amd64.whl

Download URL neoradio2-1.4.1-cp314-cp314-win_amd64.whl
Size 405.1 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
e8e7810b01fc77ab3271fa03045351c48b18b84b44fa73c49ad67c6520d0de4f
BLAKE2b-256 checksum
How to use checksums
6ddd2c3d970ec8545a02e963eeaeda45d840c855689b347a04a01e991dd09dfb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp314-cp314-win32.whl

Download URL neoradio2-1.4.1-cp314-cp314-win32.whl
Size 368.7 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
bc3cb946dae57bdfed912da7b237dc0033f1125d2594f85ef4eba467287ebcc5
BLAKE2b-256 checksum
How to use checksums
2dd69c874a9631620d4a93de8be65d24addb9b395cd02ecb3c67cec62dcab781
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL neoradio2-1.4.1-cp314-cp314-manylinux_2_28_x86_64.whl
Size 1.2 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
abf407c3b47c4e5fe81ec5582dec34391b19c6b4d35c288adc3807b7e9c3defe
BLAKE2b-256 checksum
How to use checksums
4e609431e6de183f958f6631a21a252d2606544b448507b6726de8f88b8e487f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp314-cp314-macosx_10_15_universal2.whl

Download URL neoradio2-1.4.1-cp314-cp314-macosx_10_15_universal2.whl
Size 426.8 kB
Tags CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
4c5eee3ceb0a536c3b0268e188fce12d85c78bbaaf78813212726affc74f7054
BLAKE2b-256 checksum
How to use checksums
563f576b11102629fb0a3bccac9f1fa05aca2b26ee37c5c7e1e4c434fa63560c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp313-cp313-win_amd64.whl

Download URL neoradio2-1.4.1-cp313-cp313-win_amd64.whl
Size 393.2 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
6e35bc2d74c3adab304ae0dbeaddb1a4de917ce7e9e2961eb951bb999ba5b05f
BLAKE2b-256 checksum
How to use checksums
3fa0467ca1e17924c6fe9ef79f5ec8d20eb6fd08dbca916da7414da1acedab64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp313-cp313-win32.whl

Download URL neoradio2-1.4.1-cp313-cp313-win32.whl
Size 359.6 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
f652287016879e42417a55b74860256847f3e3190df6861d5402ca44a462c367
BLAKE2b-256 checksum
How to use checksums
046820cb5ac758422ba639eafe57976c03041c9ce078ac46a8d8314fd23b211f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL neoradio2-1.4.1-cp313-cp313-manylinux_2_28_x86_64.whl
Size 1.2 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f49db9b1f622ae70145ae617d2412342be59deabc620d688cd583c2b7edd3782
BLAKE2b-256 checksum
How to use checksums
ad6a11bc90718e45a0d08103dbbd2fef6231f383c5b9ebbd743b4aa10050ef71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp313-cp313-macosx_10_13_universal2.whl

Download URL neoradio2-1.4.1-cp313-cp313-macosx_10_13_universal2.whl
Size 425.7 kB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
e6e98393aa8ee70a308f4347be0baa148a3ae7c17ee811af0dbc636ba68cf588
BLAKE2b-256 checksum
How to use checksums
3ff06819d1e27a2bc2459334c8f0056978b64531c0bada424c08178fbc1dacb9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp312-cp312-win_amd64.whl

Download URL neoradio2-1.4.1-cp312-cp312-win_amd64.whl
Size 393.2 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
7e23d087b740bdd6ca02fbbcf6954e878e354bb1ef6af416da4f320bf51cacfd
BLAKE2b-256 checksum
How to use checksums
a5c81564fabd8b7023660a47dda8e6f2e4c1adc7225e3a4873aca866bbbd7308
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp312-cp312-win32.whl

Download URL neoradio2-1.4.1-cp312-cp312-win32.whl
Size 359.5 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
463c5e943ca90abb47d18b6edc61dda94a842217f0d772cdacf66fe8922de0cc
BLAKE2b-256 checksum
How to use checksums
417c1447dc16db7feeaa348a099315d457f9dcdccacae1703d250b4eeddc71d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL neoradio2-1.4.1-cp312-cp312-manylinux_2_28_x86_64.whl
Size 1.2 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e62be3c16fe44d53e7de5be4b1cdf017561bb76e4c1cf971c530807ead7077c4
BLAKE2b-256 checksum
How to use checksums
097f71976220c4ed35398f1754038f3b4555263528cebad4385d6a551c5aec10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp312-cp312-macosx_10_13_universal2.whl

Download URL neoradio2-1.4.1-cp312-cp312-macosx_10_13_universal2.whl
Size 425.5 kB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
14b6c5eb105a70197f1dbb2ce03d26a467a8d49257787d8ff50321954147395b
BLAKE2b-256 checksum
How to use checksums
d59fbfccd520943f8fc697a47103ffbccdd3b33f7f2f2a35ae7f14ce79d87f87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp311-cp311-win_amd64.whl

Download URL neoradio2-1.4.1-cp311-cp311-win_amd64.whl
Size 388.6 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
7c1c332869d703458d4d02bfbcf54846026877a4850fc558c293467abd573690
BLAKE2b-256 checksum
How to use checksums
c6cbb100cac1b7fbd3aa214908bf3a2d940669d939e584ef914be05acfaa038a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp311-cp311-win32.whl

Download URL neoradio2-1.4.1-cp311-cp311-win32.whl
Size 357.8 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
4e50ed2c6c34401afc8ff80d043909a731f02aa4cb3ccf98c35bf15d60434866
BLAKE2b-256 checksum
How to use checksums
10e5de866de103d8457316e2ead45dad883416119a0bdb51bf15d67ae7ecffdc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL neoradio2-1.4.1-cp311-cp311-manylinux_2_28_x86_64.whl
Size 1.2 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a4db6405de92d1c1ed7981877fcfd58afae45b25eaaaf23bcebcd998dad3a383
BLAKE2b-256 checksum
How to use checksums
dfca6116214a1cdd38a9d2cdda325d6386c88e513774ac58d790232df47eeccb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp311-cp311-macosx_10_9_universal2.whl

Download URL neoradio2-1.4.1-cp311-cp311-macosx_10_9_universal2.whl
Size 421.7 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
ef6fd78805eb8a3461bf0f01a842584c57c55335ac54be414f972faefa2274aa
BLAKE2b-256 checksum
How to use checksums
61dd5ca83fbfd76dc0b33877c717497fb5a876831c8b56517e4911c1f6916d48
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp310-cp310-win_amd64.whl

Download URL neoradio2-1.4.1-cp310-cp310-win_amd64.whl
Size 386.6 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
e7a8af890a6a3719623801e600c9418084edd16077933a0cae8c56e16e076ed2
BLAKE2b-256 checksum
How to use checksums
941142d29eea0c9f7236ecb6830dadcbc7552dcd8c04ba9f8d5aff386267a851
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp310-cp310-win32.whl

Download URL neoradio2-1.4.1-cp310-cp310-win32.whl
Size 356.7 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
8d96169a643f978fdf68e17a87c2ce14955ebba9f664065f543ceafa06bee7d3
BLAKE2b-256 checksum
How to use checksums
35e80b6002f575b43d749197b86adac692bd34588abb007b621a72defe76f3a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL neoradio2-1.4.1-cp310-cp310-manylinux_2_28_x86_64.whl
Size 1.2 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c08b4017ac83049919471468fac63b23d215f59a85788e79e7dcfb42e631a598
BLAKE2b-256 checksum
How to use checksums
b56f1f6f376a9c086a136c67f62f4d5d20dc2566dfd6b2803a035caf2c24b065
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp310-cp310-macosx_10_9_universal2.whl

Download URL neoradio2-1.4.1-cp310-cp310-macosx_10_9_universal2.whl
Size 419.4 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
1cb0f9ac18d7ff6bd68b0ff89be4e3645e27a51efff4043cff2b66e9254f5b1e
BLAKE2b-256 checksum
How to use checksums
f3c422b8edad1a6c0020b1f542ad3474a08ffa114d0adb5f19fdc9bf4e6d1c67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp39-cp39-win_amd64.whl

Download URL neoradio2-1.4.1-cp39-cp39-win_amd64.whl
Size 387.1 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
3105e866a5f2a26f329a35d8df084eb6201581977e474d14f4677fb828b7a131
BLAKE2b-256 checksum
How to use checksums
dede0c0e4a8b96b82dfa9143d2b42c6bb13af1aa15747b4419dba2538af258a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp39-cp39-win32.whl

Download URL neoradio2-1.4.1-cp39-cp39-win32.whl
Size 357.2 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
a38f46c442380a46d9abf433f54fcc2e3726e9f150166a81425706f5ec291dad
BLAKE2b-256 checksum
How to use checksums
c7f5ddee005046ad3717f4bbb6ebbe8845dc036621c44b86ab4bf9a6e62e863b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp39-cp39-manylinux_2_28_x86_64.whl

Download URL neoradio2-1.4.1-cp39-cp39-manylinux_2_28_x86_64.whl
Size 1.2 MB
Tags CPython 3.9 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1218552dc9943a8483a727eaec29d380adaa279da10d9b7a594e412734f1e0e2
BLAKE2b-256 checksum
How to use checksums
d6428b0660407fcf1478079804a920e2af7831f9a966e2b762f239cf15421662
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / neoradio2-1.4.1-cp39-cp39-macosx_10_9_universal2.whl

Download URL neoradio2-1.4.1-cp39-cp39-macosx_10_9_universal2.whl
Size 419.4 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
a6fe2fba012943b650984dc2a2600ba107b0ca0d2f851ccf669267010ad6e239
BLAKE2b-256 checksum
How to use checksums
d8199a469ec1da1f46db384f7ba114bb9f9cb0dca44b4aa02c24f7efd3388252
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release history Release notifications | RSS feed

This release

1.4.1 This release

25 release files

1.2.0

9 release files

1.1.0

6 release files

1.0.0

8 release files

0.0.4

8 release files

0.0.2

5 release files

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