Skip to main content

Python bindings for asic-rs

Project description

pyasic-rs License: Apache-2.0 pyasic-rs on PyPI

pyasic-rs is the official python binding library for asic-rs.

Getting Started

The first step to controlling a miner with pyasic-rs is to get the object that represents it, with methods used for data gathering and control.

Getting a miner

If you know the IP address of your miner, it is fairly easy to discover it. Use the MinerFactory to select the correct type.

from pyasic_rs import MinerFactory
import asyncio

async def main():
    factory = MinerFactory()
    ip = "192.168.1.10"
    miner = await factory.get_miner(ip)
    # now we can do data gathering or control

if __name__ == "__main__":
    asyncio.run(main())

Miner discovery

If you don’t know the specific IP of your miner, pyasic-rs can discover it on your network.

from pyasic_rs import MinerFactory
import asyncio

async def main():
    subnet = "192.168.1.0/24"
    factory = MinerFactory.from_subnet(subnet)
    miners = await factory.scan()

if __name__ == "__main__":
    asyncio.run(main())

There are other ways to define a discovery range to be scanned, such as:

  • Octets
    factory = MinerFactory.from_octets("192", "168", "1", "1-255")
  • Range string
    factory = MinerFactory.from_subnet("192.168.1.1-255")

Data gathering

Getting data is very simple with pyasic-rs, everything you need can be gathered with a single call. Extending the "Getting a miner" example:

from pyasic_rs import MinerFactory
import asyncio

async def main():
    factory = MinerFactory()
    ip = "192.168.1.10"
    miner = await factory.get_miner(ip)
    data = await miner.get_data()

if __name__ == "__main__":
    asyncio.run(main())

If you only want specific data, that can be done with individual function calls:

    mac = await miner.get_mac();

Most data points from MinerData have a corresponding get_... function.

Miner control

Controlling a miner is very similar to getting data in pyasic-rs. Again extending the “Getting a miner” example:

from pyasic_rs import MinerFactory
import asyncio

async def main():
    factory = MinerFactory()
    ip = "192.168.1.10"
    miner = await factory.get_miner(ip)
    result = await miner.restart()
    print(result)

if __name__ == "__main__":
    asyncio.run(main())

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

pyasic_rs-0.3.0.tar.gz (240.4 kB view details)

Uploaded Source

Built Distributions

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

pyasic_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyasic_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyasic_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyasic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pyasic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (3.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pyasic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pyasic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyasic_rs-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyasic_rs-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyasic_rs-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyasic_rs-0.3.0-cp314-cp314t-manylinux_2_28_s390x.whl (3.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pyasic_rs-0.3.0-cp314-cp314t-manylinux_2_28_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.3.0-cp314-cp314t-manylinux_2_28_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pyasic_rs-0.3.0-cp314-cp314-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.14Windows x86-64

pyasic_rs-0.3.0-cp314-cp314-win32.whl (2.9 MB view details)

Uploaded CPython 3.14Windows x86

pyasic_rs-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyasic_rs-0.3.0-cp314-cp314-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pyasic_rs-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyasic_rs-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pyasic_rs-0.3.0-cp314-cp314-manylinux_2_28_s390x.whl (3.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pyasic_rs-0.3.0-cp314-cp314-manylinux_2_28_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.3.0-cp314-cp314-manylinux_2_28_i686.whl (3.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pyasic_rs-0.3.0-cp314-cp314-manylinux_2_28_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.3.0-cp314-cp314-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pyasic_rs-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyasic_rs-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyasic_rs-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyasic_rs-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyasic_rs-0.3.0-cp313-cp313t-manylinux_2_28_s390x.whl (3.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pyasic_rs-0.3.0-cp313-cp313t-manylinux_2_28_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.3.0-cp313-cp313t-manylinux_2_28_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.3.0-cp313-cp313t-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pyasic_rs-0.3.0-cp313-cp313-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.13Windows x86-64

pyasic_rs-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyasic_rs-0.3.0-cp313-cp313-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyasic_rs-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyasic_rs-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pyasic_rs-0.3.0-cp313-cp313-manylinux_2_28_s390x.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pyasic_rs-0.3.0-cp313-cp313-manylinux_2_28_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.3.0-cp313-cp313-manylinux_2_28_i686.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pyasic_rs-0.3.0-cp313-cp313-manylinux_2_28_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyasic_rs-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyasic_rs-0.3.0-cp312-cp312-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.12Windows x86-64

pyasic_rs-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyasic_rs-0.3.0-cp312-cp312-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyasic_rs-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyasic_rs-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pyasic_rs-0.3.0-cp312-cp312-manylinux_2_28_s390x.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pyasic_rs-0.3.0-cp312-cp312-manylinux_2_28_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.3.0-cp312-cp312-manylinux_2_28_i686.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pyasic_rs-0.3.0-cp312-cp312-manylinux_2_28_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyasic_rs-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyasic_rs-0.3.0-cp311-cp311-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.11Windows x86-64

pyasic_rs-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyasic_rs-0.3.0-cp311-cp311-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyasic_rs-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyasic_rs-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pyasic_rs-0.3.0-cp311-cp311-manylinux_2_28_s390x.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pyasic_rs-0.3.0-cp311-cp311-manylinux_2_28_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.3.0-cp311-cp311-manylinux_2_28_i686.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pyasic_rs-0.3.0-cp311-cp311-manylinux_2_28_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyasic_rs-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file pyasic_rs-0.3.0.tar.gz.

File metadata

  • Download URL: pyasic_rs-0.3.0.tar.gz
  • Upload date:
  • Size: 240.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for pyasic_rs-0.3.0.tar.gz
Algorithm Hash digest
SHA256 3969729e6dd1dd5f50e34d20c757a9a971fec1ee977daa353b554033df46a6ff
MD5 43b04f53dd710bcded6f3eaa7011d53c
BLAKE2b-256 a688b0dedbefe06682caa07463b6510baa6e99528471fc9d0b0e380d75924ec7

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 914be257e8d57494caeac4a32807c149e27a3886a38a5afcc098c502d2f32c5f
MD5 a9cd3eedd02c0bf2d816e782c9f6e0ad
BLAKE2b-256 784d4887dfc1d1ea38e195c8e2049de2cca5f728673242770f200c0fee0bc49c

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5191cc508ad4e914bb35caf1c8c22334fd2b47ae7766b10e7d3ad6bf0fdc2452
MD5 41bc935a07499f0c31dde39964dc781c
BLAKE2b-256 efda92369972b4e704b28f804fe95542c8d16df4d378a19a7116310e617d9498

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 414525e21c82f8c7b7e09ec5e03a59958abf086382b2c3fa84772bdeb0dc4625
MD5 96f07fb6e43f67d91f5ec9d9862d13c6
BLAKE2b-256 7cb4b43b4fa5e350ff9eedd998c24fc276a4cfb88e03e95e3cbe391ec251bfd3

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e10e8f0b18a917ccae57072bc7afdec7f363a423c3a6907db781579fb3d32e3
MD5 1a37a68d64e2b2a2a5ad7b1d563a8d45
BLAKE2b-256 559e23e26ca682d3a347fa3123c133282ef55ab4f3147ac7868b34fbb5ce47ac

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d3ccd6d467f007ee471e112e6e376a75cfcd8ff6ac08bc0aac2da534449a686e
MD5 bb09054e07291d9a4bc9ea423c915cc3
BLAKE2b-256 67369769b9a9a987bc114f6d2b0a8e54c9c43fa23c3aa4d4b0e32dc51f6a6dbb

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 dd0e1af8babbd60bbd9521441defd596deac1eaeb597d4ffee70a1761c699734
MD5 d0e2ee1c3009cec8332d628b4d3beb6f
BLAKE2b-256 28f2222318d2bac37a7a132bf232f6f36256ee8a4249e7f8d32603cba9e7a487

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9a6fe6f4d049638b26c7e692e8019a2ac4863082e3e801686d2097608e1be808
MD5 b71f178a3ca23522f1e29c1c63c582ee
BLAKE2b-256 f47cb8f60479f8559d5c7a167e5c6fc631e95531023162b07b9b35a58396b044

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ed6ed4b6ade0545fa0d4e44c4923412ab4892624afd221ea66d75b923626791f
MD5 738ccdb1c6c698630668e0aa1c152941
BLAKE2b-256 11ee3efafe5148070661fd6210b4272c5f99771ed9b6f1dca0890d0f28be2dbc

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 504e18e03bf9a7d7b51d5833008919ee727242f7be577209e75ec53789ff3093
MD5 99532225cea4c958c58327027b198cc0
BLAKE2b-256 216070ea365a9a54072cd70fb5d64ad8a68e424d3b536ac0e0d30da692da1752

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d83c70c5ffa2483c0a5c28cd8592628814a57c917ebee9f8b6197d1c3c0c5d27
MD5 a72f5347ce8cd86c60c2e59af86e22a1
BLAKE2b-256 e4e0c0ad543dc3f8ef5c7b9ae89a8e9596e84da4d6e501dd3729e5aa9513d2d4

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 096b93c79d045fc2633147940a47a6edd1ee529f968417cd7ab11a57b879baa2
MD5 a455fff901eae3c3394dc34db202cfec
BLAKE2b-256 9368313c87d12a20cd6638039f9fa164272078455a4114d468265526988a57f9

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 07df153ca9ea620218706859394411d0065fd4aaa7126967c75f9cf48b87f693
MD5 7da428b37dc154b7e25dec9a4aea9c13
BLAKE2b-256 8d10caf66d19b09e541623b3b89f6dd1b68f5a1432610a522062a0f7eaebb4e1

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b41b4cd4771978d4b074d8039808f55041829f1d67c7f82b5d5d97fc18bba799
MD5 707f11b523714ab0eaa78fbeb5d14efd
BLAKE2b-256 1db57bc2ba5e8c72cd6df1158f82f577b7f2157f2c6da6534bf81279c9651a5e

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7306382b90a3c6ec43dadb943a2977a8fa242c966b1631e7540eaa541aa1641e
MD5 5bf98a859f23e456cff19bbf28f808b1
BLAKE2b-256 52e10856eb9282ccefd0595265ee9a2c958c9669caf3acd9c731cd5378861751

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314t-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 493b190a0fdb6d182bc0b9b23286eb3f44919a7f24d57ce3b9807eb19a558060
MD5 eb7afe65852046e1bd085e7a90761b61
BLAKE2b-256 67e11e5b3d29d0a2c77abd5b7a21ad49754115a5295605e2b0fac90c6aecb278

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5cda6bb04f00cdefd0dad5e89b2e4248a4dc16d46742a00eaa040993261a24cd
MD5 53c3c4ffdede5133cc9b0d882455b1af
BLAKE2b-256 ff70a0a526da7902f557c851e35269c3d2dcda9b25fcf1fc50de03d8eb53d30e

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0c0cc64388b129bf6b135eb33eb5d068ad2c660149052709cd7b0d08e309397c
MD5 76be27938bc464b78835e1a815f501fd
BLAKE2b-256 5bf15f3be037e909c950cd59e915e63fa09d38660598a5db95c57665a4544440

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa13bce6954d986f99d0e2f12ff4bacee4607eca5789fcb119838b1953034ceb
MD5 b0864cbca893577089abec534e0d7611
BLAKE2b-256 431a4e9f714366615003db6438001fbf5791da65fde6458882dc121dbcdbbe57

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0d8cc44678048900a8a075b373538388f0fa1672cbc658192945d6e758dba114
MD5 e7aff88027c7204e447aa079fa024649
BLAKE2b-256 f031abead9a1d7181e28fdc750c33c63d1cc15530e736a3a85f656ae3bc5edce

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: pyasic_rs-0.3.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4aee6c999b0e2d518405306f440e4a1a35b9120b01fbedb41819f891240ead38
MD5 dd667a40f480468b88d444a150fc453c
BLAKE2b-256 fb7c6b9a08c92ddadf6590f508bfa6c857c822eb21fc598c2ab1ebe3175d387d

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38a20914d5ff536a4668e12c209c4d0e6bfe20f0f8c745b77b4fb5ad833632df
MD5 4f13fa5d2559e868091d45c70df99e4f
BLAKE2b-256 bd67c921c0dfe5c41c9a8240bcb29a0fbd1a70b3ac68ff0afb7658cff589a127

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03ba065dfb4b6917fac7295822709728273afb3ecc5d5585844799eb365ecf74
MD5 83cbe8d2f8a478bb9d17cb30b7621810
BLAKE2b-256 efad72bfc0fda5678bfcf58f8e2527c94182f8995ac782776ca40ebf0acd0c37

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0a9b3522c4264c535db5a2388b157bcd9e1d47a4bbaccfcd2e55fe9153f066d3
MD5 299808af1e77642dd28ff2ede6b9ec88
BLAKE2b-256 93743b2b19388088434599c36226ab8674fbd808267b6fa666cc273307347423

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e196c3bc5246c1e629df319ce64902fc5d2e4494a613fd8d4fbe527f97daf726
MD5 7e686361ebab5872ffd9a7af7b37c87a
BLAKE2b-256 6ddb29e5a6dfb925d1a0ed44f510e44c8fe040248d4ad20d814f0023b9a57d8a

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3a1a47fd86a43587979546030c4cefb6d870c019c8537740fe472ae4b416cd65
MD5 0c2d8fd0b97ef90e86397a5568006a2d
BLAKE2b-256 da0cd2a19bb741999380cad0f93bfe2b9c0e19814350d06f67b8706a84cc6a86

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 82e22d5f015a1c737a9584f55ed97488db89659099cb4f658ca2c068fe168615
MD5 7b7e85ec6d9e296bf8f3143d60fa3fd3
BLAKE2b-256 7bec42f55635206dc987035c7151327c6fd2efef8f3e3397b5391e3b3209d905

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3a2d7ad032790964bd54eb8a24c485d14fa57467161c1c35ddcfccf63464b23e
MD5 3a92e8d6007ba50424d59fd99a947318
BLAKE2b-256 8948427676b34c8f61585fdaeef2c797cc2fe6fc05bddcdf401cb597eb00a5e7

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 757304856e1556c78bcce7aa1b930b3d359b3efa56c79cd4a5f910fd0e432581
MD5 0d80b00a441bf7991f4d12c67f94b4b1
BLAKE2b-256 c77e14d3b596be480c8229c9313861fa6304155c0fd4d8e81e344e2aaf905eae

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 3a3cc19edf8272f484b9f70a68d63f7aa7248cb5039ed9e9f95be61aa692578f
MD5 f1cc59c1feb685bf480cbdf454c30356
BLAKE2b-256 a9303c52cd61df69b61e252327870adde40f9b3b34f737f3e6d6f3444f68ddbd

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11f7cdb892d8530b3dac57747101d4eda51d1f30f389bac204581fda72ffd087
MD5 27cd55594c01e9f7a4c711b75005fad7
BLAKE2b-256 78b93a1eaa1ca32d87151b37751952276d44f30d229c78f1ab6dbcc333ce1232

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca25d750114389cf14c89d3cf2dd8ea8a03d3bb113b77a1ea564da28b7b61d03
MD5 4a14ecdc4bda1af275e7bb8df30872ec
BLAKE2b-256 4d0a8a9c4351358ba00a20a23faf2ed7aa9073e570de5a79a27a78a0d4936357

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4238e8aac69ae6f92894056607d4d587418b8f4fa8247e844b8d348009d89c77
MD5 987bf4cc1b795691b5cbafc639d7e59f
BLAKE2b-256 3dfdbebb8b918e4e83e962d3dedee15fa63df266608400c438e14508fd5b7714

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5abdb1e20c0438e9fa93f8c558bfd53de604d62bc06cc582e5d04911c6c8f5d5
MD5 c4a5777ebf6c41e7a7eb81d326af7ed4
BLAKE2b-256 7e026918d929fa39f7a32649b5412a892c5a2a8e134590dda3b5706c0de1439e

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 50e7823623b97c4ec3ea786c45699fb97a32dd6884ca99bec25fe1587cf721fb
MD5 aa8b32014999dc71b0a8f199f61d5f96
BLAKE2b-256 574585f111777ed4774c188daa7e36b8236b73b7e11edb9fdcdffac413b85944

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d2d7b694c2d51df978c19cb0acf22fbce61c822638a1c14a968603f04a3f1aa
MD5 788cd3c89b944a93c28660f34a5e56f4
BLAKE2b-256 02af85cc526e19f5ff8f7096a953135874ed489b7d8a7e2cf38d16a2db191796

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313t-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e0e6ecd2906a75e6e2e247c2c4e6e6ba3e55ed4ddc680195456616d51d9b44a6
MD5 e57a9e4605bd56e37760e62f5db17afa
BLAKE2b-256 58bd5727ff0069c1efcc5b40719b51f5c7472e0a3a284366c8f6f5c77bd92505

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 396b615ead1b39fc7ef5bdb24e6c3f77e55b789a93347856d341529572ec38c5
MD5 e40595192f49b05f195fe406ab738f9a
BLAKE2b-256 4ca3de471a41cc628916756480f8eeaec0b8cc042e2592108bae384757d239d6

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 cc115f6e9f8e8ee9e96765a6e2da1befafbd6b8dccb83134be49233c92a599b3
MD5 89203b87e028761f20104780517e257a
BLAKE2b-256 515cb2c594d4c6324bab9536f64233465639d4084a096199dfb45ae86a54b3cc

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 653a6eedaa34078487dad95a1e08c26bc00b447ca8d7d79ba5fff2e75eaf6754
MD5 c62cb2acb9ce532070fda2a73f2ebf5c
BLAKE2b-256 d2d257351f9d71fb58e4b8fbb5969ed48eb0d694a4546a547326e53ff3d991e0

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 012553931b2bba6469a6020d8c818d946c235293c82becaaf3066fc661e1bd97
MD5 8cb5d4afc2a601fecbd035cc58319acc
BLAKE2b-256 40b685f9e091248b7027a98c30395e11a31022b006c7498abf9e7e97e9b03a52

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fb3e198b1864430b5f831661d317e83b24e575544c27f8a67d073d69db37c0f
MD5 bbc12536d54ebcb398331d90e5d5dcae
BLAKE2b-256 be531eaaca649cbcec5128870ee580989684939a33025244a56e708cf568d29b

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc03e27dc3fc5f87a59cf3bb0bad6ae7f4942b9c07573081286de80c99fc8350
MD5 21aba08181e2c58aa6af5f95a28b6481
BLAKE2b-256 e0ef8eebeece76bf0c57478cec9fd781c6d9a8ddf44def7e0d782d5bc1b1c1a7

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 78ccfa44a4a2778d3d9823d8d9af13e22b361009f95d16af30b316610730dea0
MD5 98b3b8d058d3d7decb18936a212d6a0c
BLAKE2b-256 259ff2da81c56e59cf9d0a5109a5d7901ea8ebf88afea6d0496d7e607acc72c5

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 deb844559ffb2bdaab44d67d32d08421e00e99d93912f39206e725199e978ad9
MD5 207408b36886ab9ea95a8b97d7232384
BLAKE2b-256 69a64076550d0ce8ba547b108528136cd519e2acf930a814843594fd7bcdec8a

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5918dfda67c4d4d16e9e5897ede8c2011d2679f2524bb28931cb431652846584
MD5 abb1fff10d22b900035c6dc0fc28953e
BLAKE2b-256 0b8ef38f5efdcfe6dbb2f8067dbc137d5f390cc8a82478ce563e96f4b21e0f5e

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 15d80013d45d71cdfcf06f60c1384cb46eba9000e4399ec4924765c188dce0d2
MD5 965e849e24469566d480611658795c06
BLAKE2b-256 a87d62dcb3aa88f07bfae8815c518263bc4c3b72556c26a679b29ed23d5a2ff9

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f3d8fe92cc2e25d5a2b70723d1db469d6deb64ef7bfc3c49fc88b26caf3a582e
MD5 734c529b342d5d9df4e2133c944ccf88
BLAKE2b-256 ed272fca319bea15069f2e4d5b412b807788588e395b43ead722f52b81fe3793

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9c69f30f6b8d7e16205d93b8a207904f774bbde2760605bf61387d36b5f74d87
MD5 91c5a7fe88234276a1d06e2653836516
BLAKE2b-256 f1c4f45421f278d1906f456a2d6ab77041c2b05d3f64217a8fc53b3b6ffbd548

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 478eedc87239554d4fca0c8418597d2bb07ded36ebd2855531ecf4d71f4b722b
MD5 dca176d4b0fb214bf9856e1e4758914f
BLAKE2b-256 77b66bd7807706236641f15985ec90a7a4bc704381040b46a92134184a951eec

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb69fda04fc81bbcb4df829a0eb4d178a8bd72ae03d8e80cb72d739776877594
MD5 16b4e944f50e91568093689f88e55cf6
BLAKE2b-256 a398013985f7500247e55e2a4a9996a735768df9b463398872f4ab9b1ca60314

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a1f40c0d92c025f38739bef8331c64bfd589533614109843272101d20e58f4c
MD5 7502e14f82996e76c10307d1a4f2e490
BLAKE2b-256 f86ecb7d424db7f93dc41f1ec99da4beefb5fc1cdcbd7a1dd44a5775848bc019

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4eedc976f3b02ca7d08078e012c4eb2597affb1504fd73027a62e94e50852694
MD5 ac64726dd6434b88b282e05e0b59848d
BLAKE2b-256 1e2bcf8b8548e99f2b02ca56da638b1ae8e23033dee7d0cfd87c6f8dc0e1e949

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2314ead8cdbbfd177ac1d22b177256e7e972151523f7821a807e488da8ec0807
MD5 c9938e17eb0052e38aad4e9e22692580
BLAKE2b-256 1d07e37fd8079199cd05257de5995e76c261704cd78af73d0e647a530f3d14b5

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52f6e8abfe6ebc39ad6cd51e597a8d8fed6d208ce07af2c9b4d59e539fdc0eb6
MD5 fbd1d75f96031977794f3de6147856bc
BLAKE2b-256 f0fcc618334cc23b7f43a84e1aad6bf5737bc5503f41067af3b145e60fb8149e

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f9cf023c9ab69f88604c36d9fbf18ded882f2a5c8700b2432bf5413d4858f818
MD5 d5d9fa045b500dc3cfb6bf84b2438b7f
BLAKE2b-256 1ef1f8456a488a576505f16815a6565e41fbefa84f6b208df4aa738b3ae62ff7

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9209555f78c7f70821adb4bbd05f77ff91886407288bc29098555b106f18dce1
MD5 2655a83d04b61447d6f17bbf3acf1c5d
BLAKE2b-256 b77242bb6169c40843edd372d93892987971cd80ea535c47533fabe11a5d7aa4

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf771da4bd6378dc0bd43353447a704971c46c7986eea69b52e968e2bdcd6b24
MD5 5dadf49ce2995aeef5edd01ff81541f9
BLAKE2b-256 aae854da21b2ae9d50d91ad679e2274abc8718d12f7d5d1395c49ecf6f312c06

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp312-cp312-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 56874b88c888dd3b97df03819bd48ca999f3de04674b17dd2225772cdf3a8916
MD5 ecfd2c5de381b550eb1710ee02e38842
BLAKE2b-256 fe3139203af8ac86341588dd0e9ffe2c25a3ee1d6fde0838269aa1076fe811c5

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp312-cp312-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 09c6f579a722875c90ff193ec847d440b53a64bb432c3a724b7b1b7988d26ebf
MD5 5466d5cab07ffe3b6a515039eb75deda
BLAKE2b-256 c1e65db54eafc18dec4f9b81fb6843c69e11a1f5df987b0d240fc0aaeda66d9c

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a31568a1c7dc7ccf547bd706905103ce98e60b1f4abdb6f8bec87d01622b67b5
MD5 fd84f373ac5e7058617ce38aa392ef18
BLAKE2b-256 811aa3db7f3dab003144f0f4b8a71f86feb6b5bbd5482db1e656928351f2fead

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 bb313f9c2b65b020b541dc550bd5c2ab090bbe16d2504e85f7837f4f37dbcd35
MD5 6412750752cea11df9e92f64abfbcd17
BLAKE2b-256 8779cf17733832dd79533f0d7332ba11e30518d6914891edf81a9bb249e6a5ba

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0a39d8e785e238bdd1832397fc67016f417fa84adbe060e8d692e92a836f542a
MD5 1c7046a6a1ec459c00518af16e3ad96a
BLAKE2b-256 59b42cfe6670f833379afddccf843b479b748d4019e2e0710083b80cb10bae58

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b369aa945b228391700adca7a55c77873b9005e5ffcc9d205732453dd099a3a5
MD5 c3292cfad65c0f01eb0872d5d6718287
BLAKE2b-256 da402a812a0da337b2345b3c2689b1e88144a35cc41f49893dbed4ffcc79a83d

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 39bb4b7b67d7ea3d76df7b80bf1bca13bd78d4a0e705949f66c1002e6ddd380c
MD5 30fb7f81a861cee3a66ec33937707f1c
BLAKE2b-256 77e0e500e90e9003b70a144b96c81de0c90c090e3f7f50f721c2f582acb8706f

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3fcc835bbf00b2bc7d12d1032edea836337a6a04524329d4b804f966a93ab71
MD5 3f11ca6b8f694c33f1139db71e0e1bb7
BLAKE2b-256 152f5992741307c6ee9cf12d4c0cadd986d788f12536460c27dfb7002a2b490e

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f941a70d4a04f7b307156c58bc231d79a33d326a8bd70328239834276aec97b9
MD5 3b6d4cbb00167fa23e5e74e71ca7ee49
BLAKE2b-256 e297c94f241e34f6786831a40f969fa60f5516502bfb6fbf5c640a975774f401

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b3d8ff0467cc59be2abe4eb0761bfdf2421f7bcff8d067169b7ec4865b54c0aa
MD5 f1465bac6d2c515e643afacdcf94e597
BLAKE2b-256 355bf9aeeda03758bd925885a8f139f81fcc3fd00ab84035c3619221076eeb28

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9bfc64edbe33026c102f8cb3b1cdcffc3b190dd7062a8f60a6dd895c47d31fd
MD5 3375c02a958296e9a0d7147319ccca8d
BLAKE2b-256 3b26a8a0f4699f2a797679d03c024001be9e082058a8ac15aeebc00a77df5646

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e5fcc79bd095d6ee6e3c2ef32e8079a238d1d58ba6e50328b59104c2e939929b
MD5 c3fd539be1e12edc6a0dd8a65e8bb961
BLAKE2b-256 271bd897dcb51f743145b3edee73cb85e37eaba9d378c85e00bc23d6211a9dff

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp311-cp311-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 95822c10eb221d46d7c60fef61069b0a3bd754ae04a2ed62142f29f9c5e5a8c7
MD5 328b10c1790ee2dfea35330d429545d0
BLAKE2b-256 fb63b69814e3e23f7cb93c3894b786c41e6ba76be92e817fcd84206a7a4d6e21

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp311-cp311-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 dcf7efe4e249186f31e7f7fe1175dfb397324cee017713d089ebab20a140377a
MD5 9007b4322c5954058e2f301bc82b124e
BLAKE2b-256 396bbd44f84b373d9faa93697b426560b475d7f1e53d2f2c24cab7a32670a263

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e25a3d5d81a6bbc428eee809c3a62de37db8b7292f825e4ce79ae3b2fe611346
MD5 a82968a052123287852cacb9daa867b3
BLAKE2b-256 aa61ac883cd58349be921f1d814aca93213361955cbd9dc0bc9a1aa4c14f3c57

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 68d0e299ccb9a636cb958ba8e96316232c61df0f25300526bfd08afd7b6808f6
MD5 a7f1aad8c3f4ab964cd6a51ff9db53e2
BLAKE2b-256 2dda04ec950baefd79cf4a16b2647f8213522cd3e984c81cbfc4bcd096d68fef

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80f845ac87b72370f27b9d465162ba0609c87776df6b4523735e1e0e4dd23ce5
MD5 fa647a863dc70ebfc980b554a3898965
BLAKE2b-256 8b3f63d98734c1827d3db3be0049fbb3df03487a58fda8adf94619d5170c58f1

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f154bed10e18e4719684e267254e5e29331cb18113d32751dfcc31d19d7765eb
MD5 4ac2c4e628137cd06805f32c7d6b339a
BLAKE2b-256 9a209a017085bf2d9e81062253c6042a185de5cb7396ba84d1484685a6920064

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