Skip to main content

pyco-de-gallo

Python bindings for Pico de Gallo, a USB-attached protocol bridge built on the Raspberry Pi Pico 2 (RP2350). Talk I²C, SPI, UART, GPIO, PWM, ADC, and 1-Wire straight from Python — no cross-compiling, no flashing on every change. Develop and test your embedded drivers on your laptop and let the Pico do the wiggling.

The native extension wraps the async Rust host library (pico-de-gallo-lib) with PyO3. Every method is synchronous from Python's point of view; the async USB I/O is driven by a Tokio runtime owned by each device handle, and the GIL is released for the duration of each round-trip so your other Python threads keep running.

Requirements

pip install gives you the host-side library. To do anything useful you also need the hardware: a Raspberry Pi Pico 2 (or a Pico de Gallo landing board) running the Pico de Gallo firmware.

  • Python: CPython 3.8+ (and PyPy). Prebuilt wheels are published for CPython 3.8–3.14.
  • Platforms: Linux (x86_64 / aarch64, manylinux + musllinux), Windows (x64 / x86), macOS (Apple silicon).

Installation

pip install pyco-de-gallo

The Python import name is pyco_de_gallo (underscores), while the distribution name on PyPI is pyco-de-gallo (hyphens).

Quick start

import pyco_de_gallo as gallo

# Connect to the first attached board and verify the firmware is
# wire-compatible with this library. Raises RuntimeError on mismatch.
dev = gallo.open_strict()

v = dev.version()
print(f"Firmware {v.major}.{v.minor}.{v.patch}")

# I²C: switch to 400 kHz, then write a register pointer and read it back.
dev.i2c_set_config(gallo.I2cFrequency.Fast)
data = dev.i2c_write_read(0x50, [0x00], 16)   # e.g. read 16 bytes from an EEPROM
print(list(data))

If several boards are connected, pick one deterministically by serial number:

import pyco_de_gallo as gallo

for d in gallo.list_devices():
    print(d.serial_number, d.manufacturer, d.product)

dev = gallo.open_strict_with_serial_number("E6625C087B...")

open() / open_with_serial_number() are the lazy variants: they connect but only surface failures on the first RPC call. Prefer the *_strict variants in real code — they fail fast with a clear exception if the device is unreachable or the firmware schema doesn't match.

Peripherals

Bus Highlights
I²C i2c_read / i2c_write / i2c_write_read, i2c_scan, i2c_batch, 100 kHz–1 MHz
SPI spi_read / spi_write / spi_transfer, spi_batch under chip-select, configurable phase/polarity
UART uart_read (with timeout) / uart_write / uart_flush, configurable baud rate
GPIO read/write, blocking edge waits (with optional timeout), and push-based edge events
PWM per-channel duty cycle, frequency, phase-correct, enable/disable
ADC single-shot 12-bit reads on 4 channels
1-Wire reset/presence, read/write, strong-pullup, and ROM search

Some peripherals (ADC, UART, 1-Wire) require hw-rev2 firmware, and not every signal is broken out on the V1 landing board. See the firmware and hardware docs for the routing details.

Blink an LED (GPIO)

import time
import pyco_de_gallo as gallo

dev = gallo.open_strict()
dev.gpio_set_config(0, gallo.GpioDirection.Output, gallo.GpioPull.Disabled)

while True:
    dev.gpio_put(0, True)
    time.sleep(0.5)
    dev.gpio_put(0, False)
    time.sleep(0.5)

React to GPIO edges (push events)

import pyco_de_gallo as gallo

dev = gallo.open_strict()

# The subscription must be live before the firmware will buffer events.
with dev.subscribe_gpio_events() as events:
    dev.gpio_subscribe(0, gallo.GpioEdge.Falling)
    for event in events:
        print(event.pin, event.edge, event.state, event.timestamp_us)

Scan the I²C bus

import pyco_de_gallo as gallo

dev = gallo.open_strict()
dev.i2c_set_config(gallo.I2cFrequency.Standard)

for addr in dev.i2c_scan(include_reserved=False):
    print(f"0x{addr:02x}")

Error handling

Failures from the underlying transport and firmware are raised as Python RuntimeError exceptions with a descriptive message (for example, an I²C NACK, a GPIO timeout, or a firmware schema mismatch).

More examples

Runnable scripts for every peripheral — including a live TMP108 temperature graph, a PWM sine-wave fade, a SPI loopback test, and a 1-Wire ROM search — live in the examples/ directory.

Documentation

License

MIT

Release files for pyco-de-gallo 0.5.0

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

Source distribution (sdist)

Source distribution for pyco-de-gallo 0.5.0
File Size Uploaded
pyco_de_gallo-0.5.0.tar.gz 111.8 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pyco-de-gallo 0.5.0
File
pyco_de_gallo-0.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-64 Details
pyco_de_gallo-0.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARM64 Details
pyco_de_gallo-0.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64 Details
pyco_de_gallo-0.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARM64 Details
pyco_de_gallo-0.5.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 Details
pyco_de_gallo-0.5.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ x86-64 Details
pyco_de_gallo-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
pyco_de_gallo-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
pyco_de_gallo-0.5.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Details
pyco_de_gallo-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Details
pyco_de_gallo-0.5.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
pyco_de_gallo-0.5.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
pyco_de_gallo-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
pyco_de_gallo-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
pyco_de_gallo-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
pyco_de_gallo-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
pyco_de_gallo-0.5.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
pyco_de_gallo-0.5.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
pyco_de_gallo-0.5.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
pyco_de_gallo-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
pyco_de_gallo-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
pyco_de_gallo-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
pyco_de_gallo-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
pyco_de_gallo-0.5.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
pyco_de_gallo-0.5.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pyco_de_gallo-0.5.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
pyco_de_gallo-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
pyco_de_gallo-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
pyco_de_gallo-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
pyco_de_gallo-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
pyco_de_gallo-0.5.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
pyco_de_gallo-0.5.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pyco_de_gallo-0.5.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
pyco_de_gallo-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
pyco_de_gallo-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
pyco_de_gallo-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
pyco_de_gallo-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
pyco_de_gallo-0.5.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
pyco_de_gallo-0.5.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pyco_de_gallo-0.5.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
pyco_de_gallo-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
pyco_de_gallo-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
pyco_de_gallo-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
pyco_de_gallo-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
pyco_de_gallo-0.5.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
pyco_de_gallo-0.5.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
pyco_de_gallo-0.5.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
pyco_de_gallo-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
pyco_de_gallo-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
pyco_de_gallo-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
pyco_de_gallo-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
pyco_de_gallo-0.5.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
pyco_de_gallo-0.5.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
pyco_de_gallo-0.5.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
pyco_de_gallo-0.5.0-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
pyco_de_gallo-0.5.0-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
pyco_de_gallo-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
pyco_de_gallo-0.5.0-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details

Total release size: 47.2 MB

Release files / pyco_de_gallo-0.5.0.tar.gz

Download URL pyco_de_gallo-0.5.0.tar.gz
Size 111.8 kB
Tags Source
SHA-256 checksum
How to use checksums
93d1e9e9490955a7b4b7202a64abe647305332f17e3d9e3e72d3fd60852ace40
BLAKE2b-256 checksum
How to use checksums
72fc8cb1cce4bd40b22f631f01f62ba13273936276e1106c982734edbdb226cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl

Download URL pyco_de_gallo-0.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Size 1.0 MB
Tags Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
4b8c5dfe2b7c961fa584431e1f2a9993635d8b04f3a4eb6db6bc40410e75ae00
BLAKE2b-256 checksum
How to use checksums
de0694b654afac8ba621d221813f5da1caf99a218ba4f602b2c6f260d67eae8f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl

Download URL pyco_de_gallo-0.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Size 1.0 MB
Tags Linux musl 1.2+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
11aa6abd1bb6d84697628a6758ce8442df30a39f4c4cdd6b141d7357471a7798
BLAKE2b-256 checksum
How to use checksums
eaf4596915b63596a4e98382df3aeb5dc57ce40507f230a90552af7501cdf046
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyco_de_gallo-0.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 809.5 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
49b94d7a27312560c8f0b300cd96c2fa3b0fdafd6678f91076477e459a4f6a1a
BLAKE2b-256 checksum
How to use checksums
b9e3a60450a66696f2e37c3e384585aa9a5f87d70530afe4176c383118f58897
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyco_de_gallo-0.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 828.3 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
7b590e83e423ae4d1d99be9935cda01134937b3e2d4190a5b1f2f56552af280b
BLAKE2b-256 checksum
How to use checksums
3979d43b8c310b7a7623f36bb166f2922271f9320b764ab28b959205ceb081a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyco_de_gallo-0.5.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 799.4 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
cd4e640c6b654131717af938ef982b335367f3eefc533e7b90292a1c3e14d55e
BLAKE2b-256 checksum
How to use checksums
28d7a0fc86ee42c827cf03cd470710998093fc2cc2d496fb5cd9db8584c18f41
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyco_de_gallo-0.5.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 801.8 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4f5199787b4c7502bacc8dade3e3f68519ea0e70bbf44db3a9b8786662e05d6c
BLAKE2b-256 checksum
How to use checksums
16b8c337b0fe444c0e455c8f846979932a279d4cad00ec72a8505480208e251d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL pyco_de_gallo-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 1.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
93fa29985c45dc4646ae19aa85a79ff76ee7ded24c0243a41bd9d3d3d74f79cb
BLAKE2b-256 checksum
How to use checksums
2e14abd792957a1803f691df061aa1deb5f16259245edd2517d6d43f141e5d21
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL pyco_de_gallo-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 990.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
875457a7bc6da4a6eeffaabb4458f0577263d65446583e24526549656dc16a92
BLAKE2b-256 checksum
How to use checksums
21c00ed70672de3b555f62e27aaa3ae6c91bdc6dc61a69ae65a3df119cd97dce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyco_de_gallo-0.5.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 798.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
21f03844ecd49c202ad2dd6681b30f417f2cbe18b2aae4af58261687c0735883
BLAKE2b-256 checksum
How to use checksums
9ab657795f82427d3856cc003272b6c9ec96b54f699301ab9fd3801b6695d35d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyco_de_gallo-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 815.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b42184b3c3ca11c6e9f7b709f1817726b9b48b1b8bf48cdceb4c3fd4592695d3
BLAKE2b-256 checksum
How to use checksums
133738a300804c3eade0ab91b856963c7b1991f1bb9a6bd48a6c53905233b99a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp314-cp314-win_amd64.whl

Download URL pyco_de_gallo-0.5.0-cp314-cp314-win_amd64.whl
Size 617.3 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
c24c64668edd5b5d67c1902078f250f1086f88cd2ad26e101fec0bb6b241ee67
BLAKE2b-256 checksum
How to use checksums
b0df705f41e2647a0a58a589869e12fd9b97ba1ec0edea65cc36c07777d42f83
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp314-cp314-win32.whl

Download URL pyco_de_gallo-0.5.0-cp314-cp314-win32.whl
Size 524.6 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
0103feacf17161d0399e0c5477e5797aeecb4d6e6a7022d0f85e0af1b5c1bd3f
BLAKE2b-256 checksum
How to use checksums
2ce27c2b4347e97f93fe97a7040252ac18cb8d157424389c7e735d28f33ac4a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL pyco_de_gallo-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 1.0 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
cb1ae57da8d8597287d01a38b81e06072853493c32a560fd65abbd0a315ac9fb
BLAKE2b-256 checksum
How to use checksums
b3cdbbd7e76613178aa90dc0642c66bb9d4cc75404a1337f08d3845bb9e0deeb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL pyco_de_gallo-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 995.0 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f2a8201cc08c897e5e3fb0618e60655d66225bf4c7d766f10f685f84f29963ba
BLAKE2b-256 checksum
How to use checksums
58cf3bd50d9fc01e2f0b29107b38a82bd3fac61b57a0b096b31dc2c01f3d0385
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyco_de_gallo-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 801.8 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
105e87a94d8133d4a814375e93c2cc63486ee30a858f98f3e0376a111a70b436
BLAKE2b-256 checksum
How to use checksums
1797c0abf2b36709e5b6327c87cc245a7eaf47383e4b8820ff619ac34a64a1a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyco_de_gallo-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 818.6 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1fad737238e440910e23e2b13f14771ee3dcba05549d1359479473d9859f6cac
BLAKE2b-256 checksum
How to use checksums
c8773929a850b61a175b4952953e10d7eccecc1dca868bf418774587e75c10b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL pyco_de_gallo-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
Size 756.5 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5b99cef8768e3c161b2bd5fe484f76636d5cff7eb76db03d229c18cf6546e5c1
BLAKE2b-256 checksum
How to use checksums
f4ad6d79b38df3ef583967576a72a0686ec70b60b1821d52903b194ca9b72a32
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp313-cp313-win_amd64.whl

Download URL pyco_de_gallo-0.5.0-cp313-cp313-win_amd64.whl
Size 616.5 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
c7fb232df2b3d7c47a017eb5370556c6e582072f1526cac58dbac95e5ff33625
BLAKE2b-256 checksum
How to use checksums
f4b653db733cc867a3db338284e5eea75b753cce60c1c4129576798a593d4bb2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp313-cp313-win32.whl

Download URL pyco_de_gallo-0.5.0-cp313-cp313-win32.whl
Size 524.2 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
6de9b4f35314f7507b6893699569db161bbf3615fc2be9b03051db86e6cb56be
BLAKE2b-256 checksum
How to use checksums
e205f22f785c8178c6e355e6f7350da5ee42c9105f302c52fff236db14166a6d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL pyco_de_gallo-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.0 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
12d418c714e79a4e7c29d216d6ac6b363ad9fe53c08dba0286569984713b5d5a
BLAKE2b-256 checksum
How to use checksums
3ef34d5ca73bb780a26a4b3f701c301fc7b9a3613b684d9496d3e2a62d2ce662
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL pyco_de_gallo-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 994.1 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
bf89c2726358f8cf4f6cf33a356c6cfb6f32bb7925f6e79ee355900e8e62848f
BLAKE2b-256 checksum
How to use checksums
c6c70eb242490fd3576a8c7145c17f617d987ebe4e0c5698ac5c8d7baf690121
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyco_de_gallo-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 800.8 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
cdd0a20b457efe7d37ddd97634ecfb6874b8a70293d6c85a415f9a029dde7a02
BLAKE2b-256 checksum
How to use checksums
e651d219b90a30b086ebda026317b05289af2f8b091d4ea5334eb1fe8e16388c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyco_de_gallo-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 817.7 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a951729f459453bf76f108338db3830dc22aa8a9c20453f83027456d2eb4f655
BLAKE2b-256 checksum
How to use checksums
91fdc2d6ba7f6429d5b4ad2837eab7b29cdf959961942afe22f718e710ea5d7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL pyco_de_gallo-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Size 755.4 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
482e8c7cbdd7a6b7f14434bc9074eef8fb8b0060520b76a1f23626f3b20b49a2
BLAKE2b-256 checksum
How to use checksums
884a31ce53e0cfdf3d0195c82cc1a74b82339c0e0e03c9523dadb322acc31007
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp312-cp312-win_amd64.whl

Download URL pyco_de_gallo-0.5.0-cp312-cp312-win_amd64.whl
Size 616.7 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
6bd73d917342979cf13a8fe1661d0321c419d99c2f989467d87181d25a4e5712
BLAKE2b-256 checksum
How to use checksums
12d01c42c618a26fc609fecf654c75373b2a040c8f769ed4c83add9d8d3a757b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp312-cp312-win32.whl

Download URL pyco_de_gallo-0.5.0-cp312-cp312-win32.whl
Size 524.5 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
1be0129cbef22b733dd9475ac35038cfacf6d147f1a83b747b95b0b72597d013
BLAKE2b-256 checksum
How to use checksums
819f6cf2eacaf851e9cb25b0f62af42e09a3244089ff471ca7eab3b139ca4344
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL pyco_de_gallo-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.0 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
11093ee6853c9c432e08ba7cf44026ea5271bc02e9e63e8b49a4a13eb9aa6105
BLAKE2b-256 checksum
How to use checksums
5db05541b6e94f64e21de0aa629828bd749e337865131c8da29da452f59c0817
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL pyco_de_gallo-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 993.8 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
50602f714cd1ed0a03384597ebe39bc85b20fcac0392dfe7ef8b30f493178f29
BLAKE2b-256 checksum
How to use checksums
d051fbbc5e810222b1042d291d1fff38be223d42466274fc0eef752ba84aec01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyco_de_gallo-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 800.9 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5a2c9de86f0d589bcb4c7a889c78aa0e2bd45b7bb2bd38dabaf0cf9b9a3da699
BLAKE2b-256 checksum
How to use checksums
32cc3dbae4d1383141311a7910cf69c2858e1cbd7236fb4fd9c6331b3a0f139b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyco_de_gallo-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 818.1 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
46383bc1e544e516ea17632e78bbbaaf3eba867fc0a89cd4f88fd97f7ed43656
BLAKE2b-256 checksum
How to use checksums
6d587c62d2d5c065a762ca6f40c8b7e8d4d82a415dd1b7d23dae0891f7a0a719
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL pyco_de_gallo-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Size 755.7 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4192944c3f99aff04015d58b8fbbeca39452fdfa767dad1a2b9c88c63809282d
BLAKE2b-256 checksum
How to use checksums
01cb18097872d670cdb26fa96264b9d0bea46c09f0085d6dfc246f064db4422f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp311-cp311-win_amd64.whl

Download URL pyco_de_gallo-0.5.0-cp311-cp311-win_amd64.whl
Size 619.4 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
9458a279053b3dde928296e0eb9ec9a05b3a684caf7bba9dd307371a116798f1
BLAKE2b-256 checksum
How to use checksums
f870de49eab5e41dd9a18454301dc6e8d4cb7a596b6e6add53118687597c6819
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp311-cp311-win32.whl

Download URL pyco_de_gallo-0.5.0-cp311-cp311-win32.whl
Size 526.3 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
3a0df8b2b465a773d59150ef83c98847803975e6b301696d59d2f6c54ea4f632
BLAKE2b-256 checksum
How to use checksums
02bba1cec3d97979505256a47ef92a5a2825c036661d67a5afc4f3c134715661
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL pyco_de_gallo-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.0 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7a757d9032b8c687b4dd6389d938af5aba45c6225f499e5f8c4f34ae08dfef83
BLAKE2b-256 checksum
How to use checksums
227ba82f7d475a46d6d3638178aa1fa57bc3281e68923fa0cf233a1ad79d5136
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL pyco_de_gallo-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 1.0 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8cf1baa917a2c39eacba1108ad0a4537aa0e90ee0a15bc393dce2649fa07f07d
BLAKE2b-256 checksum
How to use checksums
903ab1637666d2d394558fdbc2331428251636bd2af3c6a14d5f2d1ae33f3037
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyco_de_gallo-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 805.2 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c405c5c4001df0396452ae8254922968ffd9fa206d6a86906219d3fd27cfda7a
BLAKE2b-256 checksum
How to use checksums
b2eecb1e967e3bd18d81d17d45ec8d7ac5a17a71b1a59267c88bf4635a1d8745
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyco_de_gallo-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 823.5 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
37f5f19c243f09904e6247e5c5c56c38c6a89742b997404d68a8369e67c0bcb3
BLAKE2b-256 checksum
How to use checksums
411f9f894a2ad58cf3be93cba3fbc281a6eacbe601defce8309052eeb08f9255
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL pyco_de_gallo-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Size 761.0 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
41124fd7ed19ef72ae46595c53b9a74290dbaecf5a61bd7ebfd6a33ea88ae42a
BLAKE2b-256 checksum
How to use checksums
5876c7a3802437334cdb03dc86d777d17b659e53f3364ab29cd46a2cb7e6e833
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp310-cp310-win_amd64.whl

Download URL pyco_de_gallo-0.5.0-cp310-cp310-win_amd64.whl
Size 619.1 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
a1b780f6f88ba9695b7b401340192e0a9b6da241379decf31fab82e4b883ae06
BLAKE2b-256 checksum
How to use checksums
a5636e26c382c0559f0f054a919c176915c30a9f81ce026973596dd946bd1656
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp310-cp310-win32.whl

Download URL pyco_de_gallo-0.5.0-cp310-cp310-win32.whl
Size 526.5 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
40107a8445b243bf1887a0865aa307f81cc28a7d8d91a6e9f4b9c2fd1110566b
BLAKE2b-256 checksum
How to use checksums
67d02222ee69ddb8147d2b3d9b3dbb6acfce85de683a01a5ec1de7600de7f8b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL pyco_de_gallo-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.0 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c67e7d9ddb7144dcb036046133e2f58a299e3514d5e04e334ca382dc543c4046
BLAKE2b-256 checksum
How to use checksums
315ee29947fa5a37e58fedf21aa6e30bbd1a79e089e48029d3b6d24f0e919ef1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL pyco_de_gallo-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 1.0 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
cdf1aea277df113a5ca514686fed7542c8726771120c25bfcfceddd5d01ded98
BLAKE2b-256 checksum
How to use checksums
5c92e48c360e3cbf4220241865ab9dcc4e74e74479721426d776cfb5311b584e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyco_de_gallo-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 805.1 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5bfb794625ada1b82bda9290513eb92e27baf481f164eefd4b7571f5e716e433
BLAKE2b-256 checksum
How to use checksums
f93ece081a12432fb360dc71c7950159b154c54ea69978c27b7da0cc114347bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyco_de_gallo-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 823.8 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
6a5f6f3ea8b512beb128917ec160d5ab5cb9c04506b40eeb81046d4e26ad1496
BLAKE2b-256 checksum
How to use checksums
c10f3dccb944a9335fa3620c95dece77c1674bd02284ebbe723966532001cc0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL pyco_de_gallo-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Size 761.2 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a0a81a64e8420d6cee5a773a8d12ec3c4696dfe39dc513c4d13ee06a35dab053
BLAKE2b-256 checksum
How to use checksums
6f82fc1e147dfb40b882a997330581585e330a82b8b5649a80245c0abca14cf1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp39-cp39-win_amd64.whl

Download URL pyco_de_gallo-0.5.0-cp39-cp39-win_amd64.whl
Size 621.9 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
0d7e1ca56567f41926c56bbb1efc5adb6e3a070591488ac66612b96920922057
BLAKE2b-256 checksum
How to use checksums
b752d7074bc7cef84c567feab67fc98ce411c830ebe1faf8c2d7f2ac07863d8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp39-cp39-win32.whl

Download URL pyco_de_gallo-0.5.0-cp39-cp39-win32.whl
Size 528.6 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
5fed0af64501e8283cc5713cf86c2b20268bade7127b59f873527b40bb4172bb
BLAKE2b-256 checksum
How to use checksums
ce266435dbe76019c6796ceb4b26674b9c276ccb3abd99dc80cd06dfbe88b29c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL pyco_de_gallo-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 1.0 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d6ec7823f9a762fa18533165567443c307ed4b0d6bcc5a2511dc02a2d73e40d3
BLAKE2b-256 checksum
How to use checksums
45f00aefb3b11ded67f9378252bb561d8a74bb726dde8bcba5957bf46aa3ea20
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL pyco_de_gallo-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Size 1.0 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
68b14b2e2f5424be422c61a37c964888e7b1ca2b6eb815df5dbc50f49739626f
BLAKE2b-256 checksum
How to use checksums
e5426be2184a84cc59793953502566016862eb4c6bdbccd7d2e90f141757d76b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyco_de_gallo-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 808.5 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5752950cf4559eb83222e2ba05c886c052d525089192976a2cedf38e421a2ea5
BLAKE2b-256 checksum
How to use checksums
c0986be984244f02b53874d68f7eded9a4a4709e4c8d0a3ad09a4be5d511493f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyco_de_gallo-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 826.6 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5d200e3f1ac67f2cf3803d3cb2ef2915f651085cc17fe3992a12848088b37963
BLAKE2b-256 checksum
How to use checksums
4d9ff255afc6734d78343ee9a3e5f0564b07660dffd7c28245aeeea136d9393c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL pyco_de_gallo-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
Size 765.0 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
77c772a1ed795ab1e3ede3c9cd0c56f9f4e57bce4f03e6c5a2df2c224953087d
BLAKE2b-256 checksum
How to use checksums
a186a81c76d6e35bbcde019670e20370cf174953d053434b1e97910f2e94f2d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp38-cp38-win_amd64.whl

Download URL pyco_de_gallo-0.5.0-cp38-cp38-win_amd64.whl
Size 622.3 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
efc92bae714a994bd432224c12cad69f0335ad265fdb972730d73642d7c346ca
BLAKE2b-256 checksum
How to use checksums
e65e70f27577baa547c9cb55db6324520f09e2559e2e26dfbebcc76a2245f97e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp38-cp38-win32.whl

Download URL pyco_de_gallo-0.5.0-cp38-cp38-win32.whl
Size 528.8 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
bde8754381c4d22227a02cf19278f1c1237151e3a0d40d132c519fb6a88dbe66
BLAKE2b-256 checksum
How to use checksums
50b7de8a0202e40dca6223206398be13ad24d47d4e93e88dadeb58d7d916d7b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL pyco_de_gallo-0.5.0-cp38-cp38-musllinux_1_2_x86_64.whl
Size 1.0 MB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d90eb5c792f195c7159620625c338f73b1ee70af14f642a1187a4d3d8e06b0fe
BLAKE2b-256 checksum
How to use checksums
398c6fef9ad79550141dadb0dd05310993dec8bb9e84335785c25abd888274c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL pyco_de_gallo-0.5.0-cp38-cp38-musllinux_1_2_aarch64.whl
Size 1.0 MB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
c750171ec3108cf4e43c55fc2bf8bcfa649d23cbea962dd3291f59b6ae5044e3
BLAKE2b-256 checksum
How to use checksums
c5478c0fbf97026f94bd36c17904aa6898d9bed7d35c712c52e384822d6a572f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pyco_de_gallo-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 827.4 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
dac7d0bf667c193514014ecdc011f2c9cc356b8da48675d9c8ad021fe77b54f6
BLAKE2b-256 checksum
How to use checksums
9d740951cc3fa7fa7a12e0a3de4aa26dc9c2683334715a72808c15862d3f251c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release files / pyco_de_gallo-0.5.0-cp38-cp38-macosx_11_0_arm64.whl

Download URL pyco_de_gallo-0.5.0-cp38-cp38-macosx_11_0_arm64.whl
Size 764.8 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e976f026f249cde8cc6d4cdf91c5849e2cc118f39ddb65804333f9ee8b154005
BLAKE2b-256 checksum
How to use checksums
7ae8df339178cb30a43a941998758dafcfb55f46ef81bef245a161359782556d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.15.0

Release history Release notifications | RSS feed

This release

0.5.0 This release

59 release files

0.4.2

59 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