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.3.tar.gz (419.8 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.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyasic_rs-0.5.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyasic_rs-0.5.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyasic_rs-0.5.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pyasic_rs-0.5.3-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (5.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pyasic_rs-0.5.3-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (5.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.3-pp311-pypy311_pp73-manylinux_2_28_i686.whl (4.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pyasic_rs-0.5.3-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (4.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (4.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.3-cp315-cp315-manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

pyasic_rs-0.5.3-cp315-cp315-manylinux_2_28_i686.whl (4.9 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ i686

pyasic_rs-0.5.3-cp314-cp314t-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyasic_rs-0.5.3-cp314-cp314t-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyasic_rs-0.5.3-cp314-cp314t-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.3-cp314-cp314t-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyasic_rs-0.5.3-cp314-cp314t-manylinux_2_28_s390x.whl (5.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pyasic_rs-0.5.3-cp314-cp314t-manylinux_2_28_ppc64le.whl (5.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.3-cp314-cp314t-manylinux_2_28_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.3-cp314-cp314t-manylinux_2_28_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.3-cp314-cp314-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.14Windows x86-64

pyasic_rs-0.5.3-cp314-cp314-win32.whl (4.4 MB view details)

Uploaded CPython 3.14Windows x86

pyasic_rs-0.5.3-cp314-cp314-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyasic_rs-0.5.3-cp314-cp314-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pyasic_rs-0.5.3-cp314-cp314-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.3-cp314-cp314-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyasic_rs-0.5.3-cp314-cp314-manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pyasic_rs-0.5.3-cp314-cp314-manylinux_2_28_s390x.whl (5.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pyasic_rs-0.5.3-cp314-cp314-manylinux_2_28_ppc64le.whl (5.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.3-cp314-cp314-manylinux_2_28_i686.whl (4.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pyasic_rs-0.5.3-cp314-cp314-manylinux_2_28_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.3-cp314-cp314-manylinux_2_28_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.3-cp314-cp314-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyasic_rs-0.5.3-cp313-cp313t-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyasic_rs-0.5.3-cp313-cp313t-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyasic_rs-0.5.3-cp313-cp313t-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.3-cp313-cp313t-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyasic_rs-0.5.3-cp313-cp313t-manylinux_2_28_s390x.whl (5.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pyasic_rs-0.5.3-cp313-cp313t-manylinux_2_28_ppc64le.whl (5.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.3-cp313-cp313t-manylinux_2_28_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.3-cp313-cp313t-manylinux_2_28_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.3-cp313-cp313-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.13Windows x86-64

pyasic_rs-0.5.3-cp313-cp313-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyasic_rs-0.5.3-cp313-cp313-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyasic_rs-0.5.3-cp313-cp313-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.3-cp313-cp313-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyasic_rs-0.5.3-cp313-cp313-manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pyasic_rs-0.5.3-cp313-cp313-manylinux_2_28_s390x.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pyasic_rs-0.5.3-cp313-cp313-manylinux_2_28_ppc64le.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.3-cp313-cp313-manylinux_2_28_i686.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pyasic_rs-0.5.3-cp313-cp313-manylinux_2_28_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.3-cp313-cp313-manylinux_2_28_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.3-cp313-cp313-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyasic_rs-0.5.3-cp312-cp312-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.12Windows x86-64

pyasic_rs-0.5.3-cp312-cp312-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyasic_rs-0.5.3-cp312-cp312-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyasic_rs-0.5.3-cp312-cp312-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.3-cp312-cp312-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyasic_rs-0.5.3-cp312-cp312-manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pyasic_rs-0.5.3-cp312-cp312-manylinux_2_28_s390x.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pyasic_rs-0.5.3-cp312-cp312-manylinux_2_28_ppc64le.whl (5.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.3-cp312-cp312-manylinux_2_28_i686.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pyasic_rs-0.5.3-cp312-cp312-manylinux_2_28_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.3-cp312-cp312-manylinux_2_28_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.3-cp312-cp312-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyasic_rs-0.5.3-cp311-cp311-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.11Windows x86-64

pyasic_rs-0.5.3-cp311-cp311-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyasic_rs-0.5.3-cp311-cp311-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyasic_rs-0.5.3-cp311-cp311-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.3-cp311-cp311-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyasic_rs-0.5.3-cp311-cp311-manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pyasic_rs-0.5.3-cp311-cp311-manylinux_2_28_s390x.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pyasic_rs-0.5.3-cp311-cp311-manylinux_2_28_ppc64le.whl (5.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.3-cp311-cp311-manylinux_2_28_i686.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pyasic_rs-0.5.3-cp311-cp311-manylinux_2_28_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.3-cp311-cp311-manylinux_2_28_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.3-cp311-cp311-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyasic_rs-0.5.3.tar.gz
Algorithm Hash digest
SHA256 504473262a40dd2c53585172e45d2176123da4b461b408174e9c99573f8e58a9
MD5 e335689febfb7d3e17c45be788fd2eb8
BLAKE2b-256 0f0921d91d73f78714137feb3a321f328e4838f07742e5ccd6a30a6ecc074829

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aec3d431052a8d26afac6876c1df8113c81f12bf089484520af1064b1d73ee69
MD5 556e9103f9eea46af4ec878056260978
BLAKE2b-256 ef2d3d522b6cd42d9d3a0c963010d605d8e0740b3ef004e776dcd19749c88533

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a3706c4898d37a06b465448809a5f83dd3ee8fe489054805db52dd9ceb779fb
MD5 6d723d2e0d195971b8dc3e9f44a9f9b2
BLAKE2b-256 e1898b9943277351dbd3f6317c51c5d62ad93988ac134c7e885790bf0abce730

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8abd5f80a88a081247fb6a082a4f74f81e177c250f33b5d18f2bb115563a21de
MD5 9922f3baf780c47f8a05d12051084905
BLAKE2b-256 cc7021fec7e4d6131df59512592010108b342f6ca3f7007c1b73712aec848488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 844a41c6da9482a4ddfeb0be562640e8eb5bab535600fa58d9aceecee69f487a
MD5 15d608b1b6c35473a9897a2c8432dc28
BLAKE2b-256 90f0b5a685b5feae68620a12b5f47dd883ec389e018d12eed5591323d8b499f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7020f7b9da0f9d7d25bf8ed27eabde05938526d3fa5b07e29b230220221437f
MD5 83eabdc0bbd044e5d9381bd906ea40b5
BLAKE2b-256 6f50d9f06a6fe99a0bea5ac7fefed1f0c6ad2c39eb41b5d3936ce3eaf16ede86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 322409ec21277f9e9dfceca4c46b523b2fba1f26c442fa62dbf3cdfc8a053e18
MD5 f07f93273a744dfa65688fbe4541f2fb
BLAKE2b-256 d86036a46d48cc8e6c2419ff5c1fde1af107642422a8062e8d01eaae2b22125d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 63d62b2f939744ea176ff1b4be607480a42869ed5f6de93c721a32464f7b7119
MD5 f659929088c927eb826692c3bd2e8093
BLAKE2b-256 a70da49d986ecc61e9c4bb83705745f419fc99ad44250abae4d5911e25b835f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d4031b8a9e3b56164d83df442205c7e21386e9660cc0a2aaf8c07d23fc19a051
MD5 d51ed194dffff2f313555b96c0109718
BLAKE2b-256 f2ca319676d216f26bbb2e8bb6553d9fae76ec8617c297cafcab71060a7a06e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 661bdba21a5163dfb993cf74a67942f1218a30074742b23e5d7010a1fc410054
MD5 ae81467966fb7e8bf1c54a9ed2041e1f
BLAKE2b-256 b395ffc99049225faf706742d6d42ccfb49eb60c52111574aa47bfa7d8e030b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8fa72816bbec0d3445633be2b2c32c1953a7b34c604a229e1109649233f62ffb
MD5 33136b7e83be236aa928204b6740751a
BLAKE2b-256 eb2bece644742420a07ffc0c29bfb18ad06701dbbb0f65eed1eb025fd50d8539

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.5.3-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03605a631e39612f869d4c1c80bea5229ff5810f095a728dff568a83133c8bd6
MD5 87411ceba009c2c4771c94ba72bb40a6
BLAKE2b-256 70db54c2be003c8c1cd40646129299fe9f3ab07e73221b3d8f6178ec9fe962b3

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.5.3-cp315-cp315-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp315-cp315-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b2a3ca4b3412dd4cebdc4a2cdbe10075e0aecf81305f7fd471134f26d752ff1c
MD5 ee6f9caa156814c80bb38cd3a8db551e
BLAKE2b-256 57f5d4bd3efdee6f11c5d16427562778104c4bc526602cd94012b43f9248d6de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 731d5e0f9bc59ed6c68de6d8521138b1e43d7eb5a200b4ef06c73d86ce0617d6
MD5 74e6fdefc493915bfa8b59fb468b2b09
BLAKE2b-256 3d111484f90c2816a844a590c77e9fd8b60b5444f3a5afe7f0f5dc624dbf4626

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed126262b44384ee744f49c09c2503d55ba7a2f9916b752bea465b47c9ce2954
MD5 ef0f1cd57e33dc192a4375b72f09b8e9
BLAKE2b-256 2f157923a83b99dbc28f4166bbad49f6bbfc9a7c1645e3539ae3fddcd48ab378

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 353d021b7c9f65fccdabdf8a00bc1bdbfe597ad78ec0c93f837311be53a40ed5
MD5 ec979cc8313c4584c79e615d7b3e383d
BLAKE2b-256 58cca9760776381d3a143d1814404dd46593b6b06050e345809145d75147eeae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dfab96d0d99e71ce5beda323294a99b39c36ffb855cc070969e943f05642b253
MD5 a9dac85041c102358d29bbfa470d1482
BLAKE2b-256 9f2e3a01c7d573c8817843ef8d9f9b813f68b593592373582ecf5c172e8a2748

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3133b8a218fbc6eb57a2895954a15b446c847ba8ac329a99ddadcfd74e86c72e
MD5 66329ff789e193d970c03d5ad7ae2c45
BLAKE2b-256 8d6acc6c4068484a856e8bcb728a5ee2edddb48b8f8a6621d22717ee10b8bdbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8fadde510a8ded57ec7e13be07c21252269814d4df619ec57450147bf7ce583f
MD5 b2ad2733821d4f9da4fb2b75c8c7e462
BLAKE2b-256 eb16c51002a7f7fe2821f1ca5d20c0ea35a9e73d0c480761be92ef80dec31f4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 3b20374413cc16347fde9022dffc68be6f01a72812741e2d9a55a9adf73decd5
MD5 ec77b2bd0d13da228cbaee6f0a5c2f31
BLAKE2b-256 5e4d0ebee56ea20f27d355f42a9966dd8b9d3b82ff8520911e58eeda488ed0eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 97dabb991974ce876798f51ff9524f01a75c8d102907275fecb9d0b2e9477427
MD5 1845c81e01e5eee33ae1cc9ea81ccd09
BLAKE2b-256 aa3db40fcc35ff5aed2a7c2b740ec87ebc882fab7693e105ba64778395eaab1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 008a3a4bf2c7f30f40936ef64a78fdd5215fbd3e56666f7b398f9dcf31d23467
MD5 b35618b49963c033ea272e670ec41451
BLAKE2b-256 29f35342c4980f7bd18129460a324f99f289b7c384014d3dd4119f3386b55e5b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fc94d3062056cfebdba9c72e77b2310ab8b8f9980d2d26a0ff79c589bc31b56c
MD5 78211ec52da29f5d423847515206c4e1
BLAKE2b-256 93a15367a47b7f7fb433d37729d1305221e5f38711f476a0d84bb2e1dd986c80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14b58815a313fe362ba47c6694c8c9ba13e4a864a9328985e7cc06844544c149
MD5 64917bb5c0a0383dcbc5cff59fd126e4
BLAKE2b-256 d4c15141fbc600a89244d748dc009aa15a4fede06ceb8da68c439fe6fae83929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d769f385c27f08848e0cac00f84396b998e324bc2fbfb5bec43344e68df9168c
MD5 58aa13d021037544fa866509b73e24df
BLAKE2b-256 8a4f993e741122200c9bc5d2d63fdb30ec20247b2c11b2034977aa117e80d1c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5d4d0b0863c266aa1940291d96742bfdfb12d1c2098d16ffb223cbc3087021b3
MD5 c775f54da0ca1a7d888f3b941b097826
BLAKE2b-256 4dc592c0f03eb307c428532de2d09484d8901d0e95e3c3c1d27b2c69ad26b36f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c08f6a8de0034a8fcb591aa9e3099c1ea7b6649a2dbdd0fa32dc0fc55fb51988
MD5 076966784ac04493baa8c66b09fc929b
BLAKE2b-256 9d5e7515437807eb4c9103c9ec58b429de14fb6e988301606b960c56d729b4cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 00e67de37e6709798f96f9f1e99609a4838ab900e5732068bdfb782442a1c048
MD5 efb0765e69aee7e395c6ef53c4e4b270
BLAKE2b-256 008a5e8f2d5f94297583b34b6600df456eba15503ad1876f90dd01d533eccc0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 73e32719c4aa3b4f7155ed8a242a5530cc19182716546e93fe7012f4e0de113a
MD5 708b8917cd630fedd6062b6f8feeab4f
BLAKE2b-256 23f350eb6cc33f556c62d39c106d28fd46d98339fdd73f3f8ac63b41bde9191f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e04ef0117806cc47479f5ce95d0976296a073ace419ca886fcdbcb10ccec033c
MD5 560995cce70e53f39ce901bd596ae233
BLAKE2b-256 03694956515e440789f1a4cd2b5cb0ba200af763ba5ef8c9c6b5d1d887070f4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e36551c9d64aa8b2db116ba3684467571115a6e996b9a9256655d2e2fbc83ede
MD5 c246e0cb8387a2265c70002a2d7d80e7
BLAKE2b-256 72406f7669b04f587232f4017ddbc3aadf5bd347a7c4ca03754f14de61c72389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 afc6d30da3a55f52468fb47a89e9003abf3bd3cc37fc09885dc7d995cad6fa73
MD5 af8a1676824a5b79e244a74ae293038b
BLAKE2b-256 2d3f83eeca6ed719b8ac72af03e84b02e3e00a39f6632def4aa4740028808299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 50d7e910928a4ca7865a273a71136da014449d4afa31e46a8486e0749a7f4399
MD5 0c6d2cd26971142101b37450408d47d5
BLAKE2b-256 72f41a951a5fbed7d533747187e2f8f2dbcd5c5f8242e0430b67e622a178762c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f90da18ec052841a2f06d46858a43c22fc8fb9de92df7552b7a048d04625ef3
MD5 bf4516ed00d72e7099bee7f61290b7be
BLAKE2b-256 390b8ce20708911782237b8cdefc298577082c521836f0ddaa7c018013edba7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57c2b4da0e97d7c28396be6f0e500fe34e2d0730566819ca6600ff0f428f85bc
MD5 561a0f33db77618d4690a8e88845f3db
BLAKE2b-256 f514c8422d5b9731ecd1a84d37e903dd72266ae19a35efc9f1b6a45536c947a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1d204e5952dc2c7b56a2f5a0a0e95502dcfac86a5610b965c816cf91f346585e
MD5 64a545d3d0dd0a96f1a19f64c54cbd09
BLAKE2b-256 eabbdb0e6df5c75553151fe575e935b865c9682f1fe8cb1fd38c55866ec74c22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b9b45fd2a7f9ee66b9fb658d66f9a1691270894b22dcdd278d991f926490e996
MD5 f17bb0d3c402c5fb5323d3f57a2b1355
BLAKE2b-256 2bad315f6932bc50f89f91ac84f9756644604de7bab92cc3605cd7cdf71b5dda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 814bf80b71652fce602bbf1afcdc7d0f27c73fd08352fa99ed4f404b63c2443d
MD5 b886256e075eda6815dc717205b2a3e4
BLAKE2b-256 4bde5c0e3a089aa0be1852af785f76f7f72331882e8b9de4218cd3265c78c88f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c1be275b69451b963d90fc4f1e5f417733759e8c93da382d3110aa17df6c7157
MD5 302d7ac77b88c4e3b2a3f81ccb832258
BLAKE2b-256 a4a900c3172e8e8a24a1e6c3c51590c89d5b73a391bd6d58d24acf61c9ad3ce5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f081d10b285bddfc8692e77dce3fbee9c442742431f1754c955f8f3416ae8a9a
MD5 5bb7a82f41555d2cfee9f7a2d4aea29d
BLAKE2b-256 b61c87489ede649b11e1dfff96d20afeadea1d84ea944c950ac1b0010451f912

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 ed646d85fa2ee311d38699efef46c051c9110cee852b89b529aaa384afd92c61
MD5 ab06203b442d6ae165b920c947a7cec9
BLAKE2b-256 1701bd880d92ba77ca4c0ec398a86bb3da1bd18406d392834989cdb0c9f389e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 298666a2aea68dcfc236bccb5cc9df4277f800e0b4b768b01d5f05a1051b9066
MD5 f7466b44bc95ea52badf64ed42c9e225
BLAKE2b-256 1306ccc7e59e72930f1d5d244c00fc29a6aa53153d978237e6ca7eb6b3852725

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ff5641ed9e84a15b54c813ca8119812b4f7023e88be1f06b53599f8b473ce12d
MD5 46fb8030731ebc0253b80fd293de8ef1
BLAKE2b-256 58c43b3846256020a6384a23a48d0518cbea04aa56f9df2eb41c04ba0a4ad883

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21ee973def95c6729b74feec562f368dbe48b7fe54357ee00c178806344d4a39
MD5 444fa26fa6dbb3da199371f4ee1f26b2
BLAKE2b-256 30a5a297d484085df3a5fdbf86c367fc0e2e5a3c5fbd40e8fe9fede0c1ab1aef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eaa541437470f5142062b76f55eb186fc5c9b8f40f70d7963c8bb9594f5389a8
MD5 459a79ca500d80a8ef552fd82d46390e
BLAKE2b-256 f1010b8cb43854b27281923145ab621c2a69423caff9c884f8cf955ac306421d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f6d728e56c70f1c40d6dc30aa7419376937bd6132aa9c20f9e81630673d909ea
MD5 f141c82866ddd4dc32fad8d5b26f570d
BLAKE2b-256 44a91510a65d955638c98cf4e9378794e950a392d9b848c5a9d35fd66bd53d2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 065159f87035de95e6f9148133f14200a3f36eef7b35d5bdcc157bb3b3172c29
MD5 018f0193351c6ba82ae92234479ed4f6
BLAKE2b-256 675c8d84ff8e18cfbcab98d046f38b1c8445299e8e22f3cd8915947a220bb18a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 334297eac44858c0325e8966af2a26990b8c94948cbefd1a8120e508ac47a859
MD5 13bcbfa98a68033d482354e642807799
BLAKE2b-256 aa9416dbf105421d48e9406ef390e8c173483f815f95eaae1654ecf445d8da3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a7a627bcc5dcdb7f93366def0591670fc5543105280f5492a78e2722e39f7ebf
MD5 bc8af0a10e4d76c6bfda7b16aae3c460
BLAKE2b-256 be2d9d7b16be8ed646d00a4e1f396d83ed9813170b96874f1d986520b5c437e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bdc450946d368faa173a932a65a555eea6b7bac2051f0edea42e22fde4fc470a
MD5 77c7ce459e731ee881ca352cb8f92c71
BLAKE2b-256 8fb7f6ef3bccc832f49eda27221736957c5a255dd3afd342e876514808b78396

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e7effcc603e6a9632aea626a9a5ea3f06d73c237d73b99154cb919712559dfa2
MD5 88ea24468f7d1de4fc1dedc5feac1ee5
BLAKE2b-256 da9106b92b9ba8a96e4df3359782ff04779b96e9d505319f4252f2f2fc6f252a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 ce958ad2388f01fb98e8bad1db27f2a0244e58bdb11348f959a26e4fb81895e8
MD5 909811ef7108af5007d3a7975ce18402
BLAKE2b-256 2de210c9f93eb06c7c0fe672a5ec3bcbff90657efb239cddbc5dca786e35d6e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 952d1c457ab896eaaea529126f259490e185916dc374ab82b499ee4149b4a0f3
MD5 c886535e540e4405bb987a18a2a5bd3e
BLAKE2b-256 63828ff21ed8d741a4b306ffdfb161324efa1ce5ff9dd635176070a21b10ab14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e46c0ed67a0bd06996ae1731fc19263024a7d8764c1dc9075fcfaff34a411439
MD5 5f57010f75f7eb50e5f062306ee031d4
BLAKE2b-256 f8a2d651a9d81e6dc5992321fe87399d9e014072676f7eb773525c79639c1286

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ced7883ac0872c46c6a304b81ef9d85cc568f929682e74032b7f91acecf1210d
MD5 8a902a804511e7946a5556f2f7d2cb36
BLAKE2b-256 cb76818bfa5eb2c3bbe4e1ddd409673d07e69e9a8b71e5d4f556d883ceaecbb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f0fe48137a3c7ae8155b4ca9c1babfd8b89a6254339906e217163d80280a0ae
MD5 e97e30a75036b76498c99f9ea956119d
BLAKE2b-256 1641bb7b59b2f534497b8d8fc9f1a1a54f87910899ceead4a0db11e63cbce5ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b3b3ec56b20ecb2eec928596480645e88418e2e930ba3b62caa334cff0d95790
MD5 b4dd541c0047b8469f3e2b9307245be7
BLAKE2b-256 cccbb603ba53ba4954bd52125c7607bb2a2e6e5684243cc560a166ffeafb3ac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec626a69263f8a2b4ba38352193d81629325a9217a6e981dae61c69c5e2875aa
MD5 17799226ecf41440c6775ccc164cbdcb
BLAKE2b-256 737d048219cd4c889a360f55c586ebbdded86c97c4b4fca2908a9a3d6310c0e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1709ef3b40b3dc1624931b311db680edb9b3857dacc9950c54e3431c7452476
MD5 49281d0541354166f3c7c0d22e84498e
BLAKE2b-256 7ec245e283fcbc6abcdbefcddb9e1879f1c1ed3131afbeb5479182461030a787

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9463c3d8b466caa249074d93a5a6d51cb5b1aebf9d79680fd7aa4363fcd1c308
MD5 b641072122f20b449f454256da9cb1a3
BLAKE2b-256 e80b8d9be6a776febe5edc4bae00b91ec7981df7c709b728ed8e1b0cd356816f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b760604be2e4fa6664f0b17b05ab1a4170b8d60871e0ac7e4026eb01666d9e95
MD5 b40305988da770ebe04ff5817ccb2134
BLAKE2b-256 d0b1db0acd482ff1a25c71bbec8286e5f1bd3308348f98932d54248a9a8a2fbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ee7f26e1ff982206e7c0e968071da161c07d5a117286d89e830c6a8615f38a01
MD5 9115f1d805ace2b60933ee8f326e44f3
BLAKE2b-256 4a4dbda86a8019adae8092b9994407130d6b77867194d078f915e5e19c4d619b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 20c0895973d2e4db1751807b5d2bf6feed1381bb3b7958a285aabcea04f2f680
MD5 b006442f92083d189819397f483aedda
BLAKE2b-256 9c0865bef6877de2e5eaa914386ec47ea99f31c4589398fbfd041c82f79349c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e9c4e3be5b63af0223a230c8691b00b958b5f504e12f71cd993779c8143a0d15
MD5 7ea59a9f0a29cedc9b771825c4bd9f57
BLAKE2b-256 d3f3ae5319655b8b01cd4b6f9ae7e5dadeab9189fc39ec0eb57c772376f16084

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2e2156b264b85d1b7e66921ad44b5cd173a8d6e6e31ea79cd521d82384d14ea
MD5 cd1753f42ba56d2fc04196382e941d93
BLAKE2b-256 5138e8e4123aca22288d26ab402949a36a21ce899295ed173679e929bc984a82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a25f5942202fc3f670a93ebf96ba2214ed6b36a80d61c005ed36619f3d18d24
MD5 2948744ab136e5f0268559ed4eb52b63
BLAKE2b-256 6b6663fc85c338dba04e38c2c5f74cb05adfafb263fbd407247b91a8fba7fea0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7c2bd76a17b1c916156b7a728bbae82e61a2ffda1618e6bb1d90c58f7a91ec13
MD5 dc33259e68c1bd0f5a4275a1c0ec3469
BLAKE2b-256 571c38082deea016ab137e3a9ba6a27a83b7afa643d73cb6f4c5511c93da3548

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e41ca2de12ea8798a1f7832852ed47792345bb2872943b61efc33e93a089f533
MD5 f2795b90a60f1c4db572bad5860ecee5
BLAKE2b-256 6e92b4e96b09785d47238da075288d6653314cfd31aac261ae8e81a98d66bab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 194b0b6e5b3bbfe2798541086139b8dbcaa96221aee4daff761f8d9ac2b1221a
MD5 f962a921c23a5fe393761ee1a9d83cbf
BLAKE2b-256 98c41441cc23d31088e333502ba5b4e64635379a44276a86e1e85b8bfbe9d0a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 68d8df6ee8da67fbc329d223eb17925d65849e307a2d957052af904a48c09154
MD5 3c2d77b21980543a1bd7a128a1cf075a
BLAKE2b-256 70c60314b29bb8947cc48de43a5d8eded8a7f96a059e5c267880a67494d02b29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b40382d1ac468bad720df28ed2396be062d299dd8775c3706a1606db5fe62a1f
MD5 587ba234edb2c766b8debcf176e44c65
BLAKE2b-256 f0b11aaf08bc9bd9ac32e0a0f137746ad4ee2e8fa37e9a4673d238d6daac7096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8bf081fa0699e6a1dbd81fa645ce67922eda1d4c3469f0127e3f0b12c36b18de
MD5 31505026fad5078d2aa72beb9dd90f73
BLAKE2b-256 6c4947bc04abe1d379abbf2e29a469eb1554c92510492a6c1a70b4aa448a20a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 37e91d0a37949112d66b01804bf75d3d658b3ce2338b380162a212920317ee24
MD5 4424f4db528af90f9eb186af31a44283
BLAKE2b-256 6e8c6a9fc9ecc4df5affac41dbb60ee19ae13b38a668b1c000f1abd17a8a5262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e24b3c90b2aa1902141f86c5a5a8be288758ce9b0e5be62d5fe8e04f227812b0
MD5 ff578bd43595c762c19ddc0b556c6cff
BLAKE2b-256 8fd4691e334ba81a35a362497d6631914394d971112dba769835a2e5ef34cb35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ad6bb2ccb5da67e884ef6f6e1ae9e2a29116bfbecb1d7424dc715a7ab3290210
MD5 20cab54a5595f1cb84c80f9a83f9561c
BLAKE2b-256 527d7f1dddc5481a4058dcb4b335b9152bbe3b0fa5d1dcde2e614bd8fca31c1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 8ad2345ee6a91d4a88fd650c344c2d731839bd452ac4dff42406f1c974b0aeaf
MD5 8517c836c7cba2314761e5f999ff7c53
BLAKE2b-256 fd8912fc989f9518df903769f7b94af378ed2369d0527dbc773cd070ee620e8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 47c3ab42d86b01296953d8a19d61556816a70eb077a6ced2326a92dc04ccafb4
MD5 df936a8c81a53603078915e3690d2be5
BLAKE2b-256 76bd52ec3b87237ee10bc32af939beab8f3bbd06048a7cb47b6c11a47d091a36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1728c5a8bc1ea5ca1d316c235eca213e51319eab48c4ecfb44c2945b910cc1c2
MD5 3e814785e2d519fbd43df8c8b59dc8a8
BLAKE2b-256 d46d4593101ab4c7786ab182dca1923cc68687b099f26f1b5ddba4cb4c115b08

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