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.5.1.tar.gz (395.2 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.5.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (5.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyasic_rs-0.5.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyasic_rs-0.5.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (4.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyasic_rs-0.5.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pyasic_rs-0.5.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (4.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pyasic_rs-0.5.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (5.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pyasic_rs-0.5.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (4.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyasic_rs-0.5.1-cp314-cp314t-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyasic_rs-0.5.1-cp314-cp314t-musllinux_1_2_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyasic_rs-0.5.1-cp314-cp314t-manylinux_2_28_s390x.whl (4.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pyasic_rs-0.5.1-cp314-cp314t-manylinux_2_28_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.1-cp314-cp314t-manylinux_2_28_armv7l.whl (4.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.1-cp314-cp314t-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.1-cp314-cp314-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.14Windows x86-64

pyasic_rs-0.5.1-cp314-cp314-win32.whl (4.2 MB view details)

Uploaded CPython 3.14Windows x86

pyasic_rs-0.5.1-cp314-cp314-musllinux_1_2_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyasic_rs-0.5.1-cp314-cp314-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pyasic_rs-0.5.1-cp314-cp314-musllinux_1_2_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.1-cp314-cp314-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyasic_rs-0.5.1-cp314-cp314-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pyasic_rs-0.5.1-cp314-cp314-manylinux_2_28_s390x.whl (4.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pyasic_rs-0.5.1-cp314-cp314-manylinux_2_28_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.1-cp314-cp314-manylinux_2_28_i686.whl (4.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pyasic_rs-0.5.1-cp314-cp314-manylinux_2_28_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.1-cp314-cp314-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.1-cp314-cp314-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyasic_rs-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyasic_rs-0.5.1-cp313-cp313t-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyasic_rs-0.5.1-cp313-cp313t-musllinux_1_2_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyasic_rs-0.5.1-cp313-cp313t-manylinux_2_28_s390x.whl (4.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pyasic_rs-0.5.1-cp313-cp313t-manylinux_2_28_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.1-cp313-cp313t-manylinux_2_28_armv7l.whl (4.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.1-cp313-cp313t-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.1-cp313-cp313-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.13Windows x86-64

pyasic_rs-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyasic_rs-0.5.1-cp313-cp313-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyasic_rs-0.5.1-cp313-cp313-musllinux_1_2_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyasic_rs-0.5.1-cp313-cp313-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pyasic_rs-0.5.1-cp313-cp313-manylinux_2_28_s390x.whl (4.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pyasic_rs-0.5.1-cp313-cp313-manylinux_2_28_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.1-cp313-cp313-manylinux_2_28_i686.whl (4.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pyasic_rs-0.5.1-cp313-cp313-manylinux_2_28_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.1-cp313-cp313-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.1-cp313-cp313-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyasic_rs-0.5.1-cp312-cp312-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.12Windows x86-64

pyasic_rs-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyasic_rs-0.5.1-cp312-cp312-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyasic_rs-0.5.1-cp312-cp312-musllinux_1_2_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyasic_rs-0.5.1-cp312-cp312-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pyasic_rs-0.5.1-cp312-cp312-manylinux_2_28_s390x.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pyasic_rs-0.5.1-cp312-cp312-manylinux_2_28_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.1-cp312-cp312-manylinux_2_28_i686.whl (4.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pyasic_rs-0.5.1-cp312-cp312-manylinux_2_28_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.1-cp312-cp312-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.1-cp312-cp312-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyasic_rs-0.5.1-cp311-cp311-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.11Windows x86-64

pyasic_rs-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyasic_rs-0.5.1-cp311-cp311-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyasic_rs-0.5.1-cp311-cp311-musllinux_1_2_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyasic_rs-0.5.1-cp311-cp311-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pyasic_rs-0.5.1-cp311-cp311-manylinux_2_28_s390x.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pyasic_rs-0.5.1-cp311-cp311-manylinux_2_28_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.1-cp311-cp311-manylinux_2_28_i686.whl (4.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pyasic_rs-0.5.1-cp311-cp311-manylinux_2_28_armv7l.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.1-cp311-cp311-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.1-cp311-cp311-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyasic_rs-0.5.1.tar.gz
Algorithm Hash digest
SHA256 bccce5eab775f4b2d36cb120e06e16da70864ea31b311ad33ede45030d4dc8a6
MD5 02afa962ce03932e06f381249c46b622
BLAKE2b-256 60f8a74ff8b1d826642638bf326df738c28a2ad235cb7fc7ee4b0f40f3ba6014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ab27fc33b3ee4819d374ba17427cf7dda5f156a018f92efb80aab6fcf94cb4a
MD5 a2e271e2223f3b49af7a8173365f453e
BLAKE2b-256 a6a0f1745bf972bff1f920e0cfe6d900cc574bddb7788984b049f626b1d819ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7125af55c0e95564bc486d2d0182d8af94fe67ff704aa3f2904478aa453d8553
MD5 4d58ba08118689ab7171c972892db4d7
BLAKE2b-256 56115635bff04a8cc7fcf22626213e07efd0f924ad6d6223b550fd354ae7f761

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7aab18a10b1fec0d43d88468b5447b598394236f72b524a980d14041b87974fd
MD5 2098af967367947834836b53a6180155
BLAKE2b-256 d48cf294a5bd861d29178216b84b1ba1956910475deb70349dab043f39884c7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ac394aa61ba3e251299953810778ee67bf9df1816e26978d4616abd8b219360
MD5 8d23001cfaa6a0ee40fff6c43e63258f
BLAKE2b-256 b6b91df6bf7cc2ed4b47d15cd3025a989fb61c5887524a465a85aaf380405a70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad7abf5af1372a0a89ee75b175817e7f77d3d4076b3ab3abb2580d48af9e0d77
MD5 1cb39195b856a57d189d22d2f3e233d7
BLAKE2b-256 c1b69471b1c3dd70f83b745da35f0358769696b757b7f3c787c76ebae7f71328

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 54c7e799e2c4d7c5acb5f0d382df1a44d15b3d3670597e16e7049caa2b1ebf77
MD5 b3f0eb841235bd3db1ac703c71acb74a
BLAKE2b-256 840689201c2502ddfd2931b0983f03ddcf2d5e7d929ae61763c8215bcd726927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ef85a07c0701a87e069ef0dabe5509d002247ad741626ae861b6cfefeb6fbb4f
MD5 4572e6db60b1931bf27540905b1e0605
BLAKE2b-256 715f8a236dcc0ab5a38610604b6566d481c4ef5fc0f29d30271132fbeae3efd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8ae238fadc09d5fdd0ff7d425eebbc05f1bd99ac18ed2f961180b7dcf3d06d52
MD5 dbf03bc82319cee24bbcfbafda34f5ae
BLAKE2b-256 7336b85fc820a3b88142d3b936cbcbe56c7f48d5c603697bf4d8cff9e2b829e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 1a09f189d620330ef0c6eb93c9be8d79b98be612eb3b2fd92219e1675ed7bbe1
MD5 9398c2e7ae774a9ff1a147ae4a80bb4c
BLAKE2b-256 9388393f9f33bec27fd76f4943b2be98375f9b0223bbcca0759a345f7520fcce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a30f242cdb97c053c9643885b74256c8f0f51878f414549b4204c610166c4fc0
MD5 00ea7fab572469c590fd934fed66f0cb
BLAKE2b-256 8c0250b5e05c114013309a5368f0264772f8547a45ddf44bea780a32b006cbaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d765d05582f1f7d4b8588e5c40a1c01432f701d47535d45578eea881b128553
MD5 fdcca149c8f8065d5752fef904b79e53
BLAKE2b-256 4e4e919caf62a3ff080f8ef2808a0f810acd9987d1d748afe8dd5a11ecdc25bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 edab3f7038545dd9f7ff8318f18a88ad46c5565c3c59e6ecbb0899a39e5d7436
MD5 9af487ad1629a54672db29275573ec2b
BLAKE2b-256 fc083d47f6cbc779f3d639e487c77cf35c2df19db2c0df4432ad7ccda64df761

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c46fd36b00b7a469963eb307037e0bf8e048863009aebab54606c8f97863eb3
MD5 0fbb537d7dcf40df8a51a7448b995ea2
BLAKE2b-256 c83e661676d18ede9acbf1e2966c606bd7b58f4bd0e4e731dca8622beec20354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fdfc330532ec288c1d6f290489ed4e1fe52780251d449bb8cd7a7b4b826a0909
MD5 7503e725c4222c90e7ded447aec46245
BLAKE2b-256 6bd840d7ed3e08654c15267b075527ed107a4df7149082d9cd191cda966b9fd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4f430098d4aa323a3676a78f13f77f93d9724e46cff5e20131905f540ca0df81
MD5 5fdf5924c3e9525027516ead6f1289c9
BLAKE2b-256 00c96a3bfe709cbcfd38eba67d829132ae84addd4d446a5143d571b0455dad85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0967682cbf70e3424f1983592d242afec809b2bc20b589eb9c47e216d3041e51
MD5 7ef793be1e2800d177e8547d314d6a6a
BLAKE2b-256 3750b5ec256f32b29c7edbd3084c7480350975d482fb15ec1d30a735928ab689

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 eac1741bae06c90fb8d830aa42846bb6dc6d79256366d0d0f04fa80559924dcf
MD5 a67333cb3aea9bac7c43d78fbae6d9d0
BLAKE2b-256 b8d709ae925c7fdcc5d2958a9e8d215b91017259733c59f31487c5b238a9e425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b22dc4ef2e8d9d5b0ba58f0c9f3b05fc243d07769f455903a68ad0d890eb0ab
MD5 79f6746f3ddcbd02ee1275f5ac828ee7
BLAKE2b-256 7c678a78dafddb8ec998377ad81a6ceb78142e2a8110f3ce1a9605d5f7cb1f5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2e133692c5b8ade10116c4fcb1087212eb13c34090c545398c0ba4924859745a
MD5 57908a7c3ea55ea7b9914d1ee3999151
BLAKE2b-256 16022f23421b1b051478b13900e3a89d943f47e6bc810b8f2f0d1bcd57a948bc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4535871bd550c09eefcf04f7242c34c707cef98b265b14fca0c987965a3756b7
MD5 a0fcdc7eaf64b383e65675bf0dbfe06b
BLAKE2b-256 518d9dbf8138b5a2df4cd729ba9adc71441ebf112c48bb081d2fade4c024513d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f3c34f308fe2b079a720b3835431c0610ca7c21ee0298d3f7c84ae7a1053139
MD5 f6dcff71606f8c85551134dd5e33dccc
BLAKE2b-256 789e0f57e90343be26df203bd04ef99113997030e7da0c2e7843b40b246e8213

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4779ab0bbb62fd54f1eaeda19df73487cadd725efb6607202c0674bd2fea3aac
MD5 3795dcad49d03426e8aaadf9b8b3cb64
BLAKE2b-256 37f1fd6be3c949a5ff663b35eeeafbea3028e8f6341c58a6207ad6ba3bf83fb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 94373d0e41fbcf636d456e39cf2e907d4d82ec7da42f39409c47d791fb1f5f4e
MD5 665f45886579f0625ecb2103d26ad071
BLAKE2b-256 f294a7ccf0459e4fcbd777d7e4407cb8f23a79a784b6274415f21db7c9dd26a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de5eb2b6b26527bdc5cb0d01ed48161c3732da75c532ddc9577c1f79e94c4f16
MD5 e55e2c865dddb3526365fbc1e7342c90
BLAKE2b-256 2a2f5dc030e7b10c77d030dfd39d04dd92c36c3aac7f727586f2e12dfbedf7c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ab5891d5840e84ee4384592ce2a6f2717d11da9c06bd71f12ae62926bd85b28
MD5 7c1e6d7e51202752b510129438cea0b0
BLAKE2b-256 53b0af8bce5d60607b24f98ad5e9e05e01e37752f28e12e860b203726c9b3e62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 667f6d521a008d10830588d5014b26286d37295e8735452ba704ff05976d5ce2
MD5 27cd947de46aedada45b5be809d796f1
BLAKE2b-256 3e2a7ff56c4595fa1960946e3cb36b69b5b6f294bbb5b285a20fff713a1c0358

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e6f51c32f47e0a48c8824247f6b5a6e7f36ff5478462131039a6062c4ff14950
MD5 85950ea0573b7419ae2f1d694188e4f3
BLAKE2b-256 50f4400a7301a247aaba8839e523ea00befceaed7c8c9320f41abff63e19fa05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 64a4c71b1e574b2eb1c2f7dceb6c3233bb1dc59268d0759d8966a32d6e8f16b3
MD5 eb3bde65f7ad9496c4e685b8e103205a
BLAKE2b-256 6a9fa31580af5eaf5e8bdcfc26c72693967ce192ac007c786181b318df7f676d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 424209a56ff5eb39f757f5f69c4682cd8522fd59942bfcb9e254edd8ae0f1581
MD5 7870a5feebc606d46f466cf7227e55ed
BLAKE2b-256 bee97716acd81313c24459d7cbb22f53da70fb790f1259cd1a3f1e5171684b85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7364e5b2658ea682e0201dac3e0be88fe9e527a4261879834ba928c3a24c6ee6
MD5 8352c12a6a8d2200c1ef48e4e74881f0
BLAKE2b-256 26611a7b93a5e3e2761369075c7ec124b1a947c86b580c295c3209df11496b87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aed4c6ed37b1337446f9dd4e3b08eef4cf751bb9c84ab662c26380ee2f7c0205
MD5 4c23c67117b8a2df746fad343b731c79
BLAKE2b-256 cdbbe67cf92d79b3d214e409264fd40c7c2d0edea79173aeaac6d8bb79fcfc90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed9f250d6feff64061ad0779ddbbd866200ae311ef861674110d361a7d6d6f08
MD5 091712dc6b18c668c097c75fca132782
BLAKE2b-256 fc0367854f99058e268c7528d077d47f1c6fd46be7c5e113cb582a2bee3c87e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef9c205c7d3f3fc2b0899fbd1a3a41f8925e466a8ea1d8f5b8726b43472e028e
MD5 350a7e329fa7d7bab95e72b1e37b4df9
BLAKE2b-256 d463ff0d674a0e25305f5388a167ec5d8994db228fa046cd202ebe9d0c7f24aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3725a59c0f3a2e28db550bfb20ccdce02dc32417d0f02c7277d274d8b4aad3cb
MD5 a3a643a527c029986821fa744fb04569
BLAKE2b-256 dfcb6708ab0c46fb3f86da33a83a281244806267c452d2c74dbace0bd73823c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8312ae147543bf4e1fbbebfabfb95d4cb857e99882d1960efe40551711ae1ba3
MD5 420a95d2db481ab78ce1a0f11e319759
BLAKE2b-256 2f5050a91541230aff1c0ef875256b23e289ca22193c83077ff6c1829b2b24e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1b2e4affcdc26ef87877d2c53e4401031f4989182a27d30fc4c7ead73f07e14b
MD5 9322400a075c79ac057f97ef6782a766
BLAKE2b-256 0f440e7fb48c897cfd6c2551fb65d77dadec7ff86afaebfb05380f71a9bc2e8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a5e630413b63253223d3b369c6ab1b242db4725ad7c8b2cb5d56dec089a41f23
MD5 6250bd2b3b8864b666bc3c526e080f44
BLAKE2b-256 2124646abe135d3c7da4278e73c6aea5ad9931a8c908ad5402211a8c14d05961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 8d8bdf3a1023d3309fbed06384d3d241a5911e79ee5996928d11c958aa55c988
MD5 e86ef11b5d20b8388c8c1257737f9d00
BLAKE2b-256 ad012b4d6bc4a280253f211f803909b6070a1fe0ccf89923cf15f3f0db1a72a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b70defcc0f26590f1e2515a63d26808dd33332736812ca32f97f75d4851b5b8
MD5 48c1dfab1b39a10cdf0b3a7e3c98e011
BLAKE2b-256 5c86d96704677704544ec384980741570b1a54c238b716c4bff7845398ca672b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 69de822257acb5a6bf59320a24bb44fa725574efe5ddef08c5ec5a5ca5c5452e
MD5 d72fbe0f0de28b046e5d5ea1f70e34f8
BLAKE2b-256 c1aff92068f0e10dc09bbbe777b1cd4e0ddcfce251504d4d816d2d53bb8ebe8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4232ea40c21492b06cdd6b5728c9f7651c442dcdf839a7772e06fe0dc610a564
MD5 ec4c61c92daab93a7ff8ee79c234c3fc
BLAKE2b-256 f60b237e1885428cbb2edfeb06a02fd1eff1817f47fd5eaf6cc005e78a913bb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a680bf27a8b5ada44bdd1608091d53aaef7001f978a2f858549c2dea29a98f3
MD5 c84809adbebd2a9747d2df329f96327e
BLAKE2b-256 a3a7f6f685a9f3751a8cdd7a83b3ef97ad7bfdd027d39726f8ab394a140b1eaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d9b79e9d29c7b0bf581c5bc694b5db5774d88ccbc8207026ddd97d2b19540b52
MD5 a60dc21edab59e43f58ea628c9346c86
BLAKE2b-256 0a282eafc2ef008bf06446f33097bc249f232ce790862b88e3aa06603a7b08de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c73acff88fde3644efb4773073b776c61d899ee9462097f39142cd8ccbafd967
MD5 dde24b23ca3cc0c0fc05c87176aef87d
BLAKE2b-256 da9b74a7514db2d12794635da155fdd42f86c4d94944360a9fc3b7d22f356fc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f002bd405d3e43bb19916c50743202a2ef71c20286224ad67b3a30a9d78c97a9
MD5 b5377a9974432e8f370456afb6182065
BLAKE2b-256 efa8535ec0b7ec19554e4f2c7ed96058d5fa95fad3c51d142a2a84e30fba70b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c381a063f5bb99504b2402ef3e0a4214a8b598feb4f33317a3544409b87b3ca5
MD5 8b0b66e842849a4b6df36fd0fe1a3530
BLAKE2b-256 2a44549032e8cd1797c4adb212bd8fb41f2bfb06ac9f30ebab8b6efa3043b102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7033576435ee9a25ba50fc5b046abf330a711b991eac8bca08c5d7a3b46e522f
MD5 4772b923883e479ce73e2ebede910ccc
BLAKE2b-256 daaf7b113a5ef8ba7a79f15c2bba3ab29c6383138e1b620de048345b1d3de870

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9b0988b2bd212aa0e598b3eefddf47a5e4484fcce3a4940686ff6118aa067ac2
MD5 eaba5b7840d97a5e456c46a879e29b30
BLAKE2b-256 5f06449e68dced7d225fe96eb1a7f6aeaf66ac0b2566ed13f9fd66370ee368e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e4996f079a7ae1fb1fa4350fcd2cdb6a8508f3fdaa9d888258a2c9ed60cb0ab6
MD5 ccbb4502949d77a0b312b4c7218ac8a6
BLAKE2b-256 098a5af612fcbac3a39ee4c93de1a2792dfc08e4c417eea76defd2828593ef32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2b7c89f4a2baa5910b4882aa0058b600a1bbca885bc4d561ad5bd21ac63a6083
MD5 0320929c13032935a978da66625d3fee
BLAKE2b-256 c9c099b892fe65b18c10a531928727c0db7ec6fc4654eded364c4625bd863a4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59ae0fe54943d973102becf5772548beafb75a94e333900e49fff02768b1db89
MD5 58b8ce91990f1da40dc0819da7e6440a
BLAKE2b-256 cfd96047b64c3cf8e9d903c4fc5b2c0a137194178088e21634e6090f50a6f117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 24eca3cf18fa76d256c8e07b0d2cb9aaac4c509992a24ab073bbfca1c7f30d38
MD5 3a3525a915271fe0ea0c2c104fb3bc9e
BLAKE2b-256 f97c1ac0f74eea502db8d4122cc9d228687ba35c684aa2704187a7aef608a02a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c96049bd13b611b9f08987f42cfd2725bfc86f57e5494b701b377ade73fe8aa9
MD5 694281798e14e97466abda2de5e8b908
BLAKE2b-256 ea568c066515ed719e18bd28d49ae0c230f51c8d8b70abf5d445c5367187c33b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad3056e7e7094990790f7c704cdfd93a5c0a0bb8df9b99b58e96cd96d7325eaf
MD5 ad41792c78b6439fbf1956defa9041a6
BLAKE2b-256 2702ce5f42e528796b8be0f68d4a704f1f93a64cf31422d9224d16edb4e3561a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0cbae6bf7c139a76cce9c9ce1a2721722c0e83e63a87ec06b91d6edf5a00d437
MD5 9e0269e3024445192b63aa9959a689fe
BLAKE2b-256 25ca43bba706ad25e758766098105c53a86d034bb538f2207a6ec26bfd761c67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf89d8aed38c62686a9c45e4a29b56d23e30a23a5b7ca50a2ee0fc873fb1279f
MD5 55f62a553cf43ad82cf45c6d944a9f83
BLAKE2b-256 5bfad9ab06f5e4b966a33bd30291ea9906672f5ee4cceec09bc4b36f02ef6e53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82ab5ced821404d9a2c5f10b9589724269aa5f90ddea04dcb7a684a98ebffef6
MD5 f4c60e2c4e01075f74756596ddfa1987
BLAKE2b-256 da44ab2da2d2ef843b515fbe46c02716a46ff2822e15727e1fe591a7890a51ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0c9251ef5650c67a210d9d7eb0af25363d8aec266b78ec5811c802fea5806f51
MD5 11e574b3121a4a3ce7c482c1947fb79a
BLAKE2b-256 f9c87072796c2912ae1fd462aed5afb3a30072d35d1227207317dd4b7be24cc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6adf4164e13bedee0d1c4de0bbb00000566577bdca8500648c4017c0e4d1de96
MD5 76809d12056fc7655128cc635ce68645
BLAKE2b-256 8a51f8ab1f39e7d36a24ddc4b18f679794bc3587dbfa97e91a0faea1b8635ed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8b5644e0b13311502b7a8649f5e16432836a1ac51879f7f31e8f547a3faf801a
MD5 d00560860c8300ab4ec19214b53aaae9
BLAKE2b-256 e6abf5f098ed899821f595c7bd80092f6519f10ce012ecdd31544d4d707603cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 457974bed6787aa1d37dfae5c55743c211e7bed6c5c24b6276a3dc12a53ab98a
MD5 486eb90ba75bc31c72bf54880aa8cf7d
BLAKE2b-256 eb6c9d4fd803bc5fdb9df3186c43c3bced5c4719c95058bd31d5118eb72eeed0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19eab24a0b44d00d0e5c4c6974fbfed3b7b664970b069acde0a9a05651122627
MD5 83c938fb2ce6c673f7ae8885c90df82c
BLAKE2b-256 ff417c98cdc1e7eb73653783a06adcf0cbeaba05cd346020802e6173925fb64e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13a3bcb9230e21caa299bdcc46b5016f7543bdd088a4eb5ed3a7abbed4ee4abe
MD5 916bcfcf15516b28650137e7a2a043df
BLAKE2b-256 5f4574db375505aacafe7accbba9c95e46defc95d9bf38e0524a56a7a0877c9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 06b083ccd659887eb16a61545036755b51587f59c36012042778f40223aa8682
MD5 246694f73cd86ceb72f049e127140185
BLAKE2b-256 868d4832733728eae189e689545b0bf9d957d12a116dcba4fa68a81e7e075d68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48031d9408baa0239989b0f498872213783638660f241cf950a487b1d833c2ee
MD5 0d9dec355307dcc5912f7d21d64cb61f
BLAKE2b-256 ad51db244229809c60c74dc5baa54bf904100e74e58c69f2966396d861fd8247

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 14ef0c5759669d94652a0c51b0abd5e469a84e975900f2355f71a4515a37be15
MD5 114b57bc39e58011f963dd4990389dab
BLAKE2b-256 439de01aff3def960f919d5f3db09b503922df495f51d0cb4ebd92730b80942e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85c7bc7f845f14ab540913453be75c22c536c4f1231b850c9ade5a246e614bb8
MD5 7d5a6fb8f62729468800368cb754a6b2
BLAKE2b-256 b76bd4827baee0b3f4d549c5b6fe38c65472a8b54b05e0c40bfe2022fc1fbad0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dda10fd5fef10f24c5194d91a02861b340c4b86acc68f5c4912e2d2ec2a6d1ff
MD5 60fd6e017e729b0de72043aea1896914
BLAKE2b-256 9fef9114760f717c8c177c67a151c0af577a9be10f942f8f841ec80c9a0cb070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f670fcc60da7f6a0f6bca9d1b5e4d40e06cc35ed8ae56e709e0474426fb2c1e4
MD5 a76c0bac929693ca04af6c0f713450e6
BLAKE2b-256 ae46c3b16260f8b844076b90a62d88863e4c3596b01ea3abe507e0e7ba05161e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a4e4aa7bad852848b94c52ff2b3fb5097283001d27ceb37a58015cd276b659b9
MD5 6dd112622e52c15bf5813cfdfcd0c759
BLAKE2b-256 5a4d2c8b815d418d88404993bc5daeb4030ddd5a3ac53e7bdb225a980d215fd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 006be1a5bbf2404dee8ea3c7d20c038ed78bff2996d2a61f3b3027529c31a3ff
MD5 f060865f47b53173dd401022c33a0530
BLAKE2b-256 5d48468ded29f74c86b9387fdcf713437c0c3eb443318e109ba44ebf77397dcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2ff402f0210507a176fda82449c3220aa95f0d27db3d5255b04357234d18d5a3
MD5 d6924d7ae75e1bf8a91dde00f76766fb
BLAKE2b-256 c706e646e05c6a19c3dcdf53eba001a72166955ee1feea6ac6555bad016b711f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 37a3a04eb428a903d64ed2a01093fa3b93454ef0cd734a475f9608000fbf1593
MD5 59a604c2851d490d22efd3249b9972ca
BLAKE2b-256 9de5acd1a8da6c7f0f75e21726389fdad580fd352beaa8261cb768822cb126c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3603244786f146b74d4b1b28579c89bcc4544b39536e0bf79580d6229a92960
MD5 877cef8fadf27b9e116950acf56da2dd
BLAKE2b-256 b18b7018da29eb3b11859d6569a262cdb8773c34428361bf3e23bdb5204ca2e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2dadf1fcc2b35698a769771050776a1d1ea308fb8c5f3a8e9c15beb171edc52
MD5 feb4c906849004cb808575516f863382
BLAKE2b-256 c952eb801de5a3ae42c4e61eb7e957102287444d66f96da84a237f6715fa56b2

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