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.4.1.tar.gz (286.1 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.4.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (4.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyasic_rs-0.4.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyasic_rs-0.4.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (4.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.4.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyasic_rs-0.4.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pyasic_rs-0.4.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (4.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pyasic_rs-0.4.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (4.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.4.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl (4.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pyasic_rs-0.4.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (4.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.4.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (4.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyasic_rs-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyasic_rs-0.4.1-cp314-cp314t-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyasic_rs-0.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl (4.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyasic_rs-0.4.1-cp314-cp314t-manylinux_2_28_s390x.whl (4.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pyasic_rs-0.4.1-cp314-cp314t-manylinux_2_28_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.4.1-cp314-cp314t-manylinux_2_28_armv7l.whl (4.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.4.1-cp314-cp314t-manylinux_2_28_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pyasic_rs-0.4.1-cp314-cp314-win_amd64.whl (4.6 MB view details)

Uploaded CPython 3.14Windows x86-64

pyasic_rs-0.4.1-cp314-cp314-win32.whl (3.8 MB view details)

Uploaded CPython 3.14Windows x86

pyasic_rs-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyasic_rs-0.4.1-cp314-cp314-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pyasic_rs-0.4.1-cp314-cp314-musllinux_1_2_armv7l.whl (4.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyasic_rs-0.4.1-cp314-cp314-manylinux_2_28_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pyasic_rs-0.4.1-cp314-cp314-manylinux_2_28_s390x.whl (4.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pyasic_rs-0.4.1-cp314-cp314-manylinux_2_28_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.4.1-cp314-cp314-manylinux_2_28_i686.whl (4.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pyasic_rs-0.4.1-cp314-cp314-manylinux_2_28_armv7l.whl (4.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.4.1-cp314-cp314-manylinux_2_28_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pyasic_rs-0.4.1-cp314-cp314-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyasic_rs-0.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyasic_rs-0.4.1-cp313-cp313t-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyasic_rs-0.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl (4.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyasic_rs-0.4.1-cp313-cp313t-manylinux_2_28_s390x.whl (4.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pyasic_rs-0.4.1-cp313-cp313t-manylinux_2_28_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.4.1-cp313-cp313t-manylinux_2_28_armv7l.whl (4.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.4.1-cp313-cp313t-manylinux_2_28_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pyasic_rs-0.4.1-cp313-cp313-win_amd64.whl (4.6 MB view details)

Uploaded CPython 3.13Windows x86-64

pyasic_rs-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyasic_rs-0.4.1-cp313-cp313-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyasic_rs-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl (4.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyasic_rs-0.4.1-cp313-cp313-manylinux_2_28_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pyasic_rs-0.4.1-cp313-cp313-manylinux_2_28_s390x.whl (4.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pyasic_rs-0.4.1-cp313-cp313-manylinux_2_28_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.4.1-cp313-cp313-manylinux_2_28_i686.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pyasic_rs-0.4.1-cp313-cp313-manylinux_2_28_armv7l.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.4.1-cp313-cp313-manylinux_2_28_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyasic_rs-0.4.1-cp313-cp313-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyasic_rs-0.4.1-cp312-cp312-win_amd64.whl (4.6 MB view details)

Uploaded CPython 3.12Windows x86-64

pyasic_rs-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyasic_rs-0.4.1-cp312-cp312-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyasic_rs-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl (4.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyasic_rs-0.4.1-cp312-cp312-manylinux_2_28_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pyasic_rs-0.4.1-cp312-cp312-manylinux_2_28_s390x.whl (4.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pyasic_rs-0.4.1-cp312-cp312-manylinux_2_28_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.4.1-cp312-cp312-manylinux_2_28_i686.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pyasic_rs-0.4.1-cp312-cp312-manylinux_2_28_armv7l.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.4.1-cp312-cp312-manylinux_2_28_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyasic_rs-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyasic_rs-0.4.1-cp311-cp311-win_amd64.whl (4.6 MB view details)

Uploaded CPython 3.11Windows x86-64

pyasic_rs-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyasic_rs-0.4.1-cp311-cp311-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyasic_rs-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl (4.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyasic_rs-0.4.1-cp311-cp311-manylinux_2_28_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pyasic_rs-0.4.1-cp311-cp311-manylinux_2_28_s390x.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pyasic_rs-0.4.1-cp311-cp311-manylinux_2_28_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.4.1-cp311-cp311-manylinux_2_28_i686.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pyasic_rs-0.4.1-cp311-cp311-manylinux_2_28_armv7l.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.4.1-cp311-cp311-manylinux_2_28_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyasic_rs-0.4.1-cp311-cp311-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyasic_rs-0.4.1.tar.gz
Algorithm Hash digest
SHA256 83f535535dd5caa41ed88eec7b667cfd14c1ed76077869755cdfa060630b1c92
MD5 a38de745636ed8e9fcf38a6e7e7b9df3
BLAKE2b-256 628cef1d98e783a9c4e992f41331d7e82bf5bd9a05e4aadb59597243622566b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51f36cde52c9b707febc4f47ec365e2517fcc61e6fe09cc0f12956544bd73305
MD5 5601fbc0782978b80981f3a810fc4af9
BLAKE2b-256 c6a97136b48a80cbcb1f1549cf1907e2aec47261b695857ca2f9ee4a558cb998

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8ad900f5e9970605ef84ec4bdd5c6c4addb38c0a5601f4f642ef1c7f8524cfb0
MD5 b0011958834b7beb7b506c68520c2e1d
BLAKE2b-256 c740ce36c79c630396573df7585f8ea6d4d0042d1112025f7c3b690df62d82f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 07d3d060a8228175fe573cb1fffab5656e12014d3cabd9916104df24b2ec631a
MD5 6de1ef970d02d8d5c41885232007d236
BLAKE2b-256 d39fea0cda549cad0d9092e480bcafca1299778fe434eaf6d5357632b8503deb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 143cd8bf097177263fc18a4f117aef16832d5a46145cfc8a7674e2794479f773
MD5 1c0eb1470d6ebf16b9d963817c87fc32
BLAKE2b-256 e538b03f9c6561b706fa17bf9298982ac16926cb00f67e3564b2aad5c43a5250

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 93c51730c08fff62bc571cd46933613bca6696777d25eb61980c5a50feba44b2
MD5 e4d7be4e17b8bf0c179e183851e0f44e
BLAKE2b-256 f4b5feafdb3ff64722fe9f356dcb1c100b3146ef859ddfda02c0dca4640ce89b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b4da26c4ac8a54327ecf7ac0a85019ae842e8327711a6fa70a5acfb4d0cdf2d7
MD5 f5fa83659d4d3700cae5f260ea1a7b2f
BLAKE2b-256 a3d3f4ca73f9adf676b1ff35a3b1430b401f6d93eb61a4126028ad43c2091b39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cf59caffca5768fd29df1ca36c9476d156b8cbad91af59cf2280610f64b6eb47
MD5 87df8a28a8978e6c18e7476113f2f24a
BLAKE2b-256 85bbd3b2c56f11bc2ac4dde73ea2b7ddfed9c8638316e5648ea10b39639559e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 99b79aa035f18734384d4d2337432b9d1029ce3eb3ac820094938d87095dd7ab
MD5 3a1b5d35861786a00e17dc315db14c6b
BLAKE2b-256 2c8291e42e9a9e3cf2c39208bd53af2e746ef5d22a6665eceb83da650df0cb08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 9750092ebd26f573dc6cb42fce084cf662f068e51dab79a969a519ee2f4bc475
MD5 789f7ff21a8d9a5ac940e0224797ab07
BLAKE2b-256 772bc281da080d6ee4a8abb2aae080074d5853c615f598e1776129cbaa8e4312

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22c56bc42c21964bead135788b26cfb7178193529d35005c871a17308d0e24c3
MD5 4dee0be22c95e5ffefb8badd5560ff7e
BLAKE2b-256 2c297fc67c6126ecc30897f1c9968616d53d9910f7696adee0c3c3df2848d134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e83d9f9afbee3c501e608f91d22a6cf708b6dd116f1fbd33cd177f295011c474
MD5 47654262fde5c49811c55dcf424b73b5
BLAKE2b-256 73169eb5914b00d9eefa536670e5a758ce1aa1e34ed24408068e647063e74563

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ee7b4ccf0538c08cd8ac2840168caea91e0bdfbc4296dd24b9790a311d43e79f
MD5 87a424bc1eaf54931c8e5fc76b21e4d5
BLAKE2b-256 7e439b6df1f8a220ec81811410de4077f20a5f768af4a6d676d8f386d5d194c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c27c22f553278cb8785e7217347b4949b80f41b5e7ff1052031c666c05847fdc
MD5 a03603ac9db08aeb7cb1d647e5815d3b
BLAKE2b-256 4104da2bf70a0192389d442ee5435fd6d4b2bbf3ad8da79185638e10e14ca67b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9fb6f5a9f6cfa7bb01e2c64689c8f42cb6a2caf92b55ecbc506050f69259b63a
MD5 2c1a29587b1f2d9935320401fcc51c6b
BLAKE2b-256 59a7f9c622304b2f80efedf03b2cd6129b0eb52d6f2a4895f77d10fa35d12fe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3062b92e40012c5bc467f149c4fef240f402a0d70c285815ac2e45d6482dc7a4
MD5 7807a0cb2fd64d73dafe42fbd1a195b5
BLAKE2b-256 32c5b6a51a5507e1fd9ee7a3d6ec22f5830dd7aa1475444fafd2a5c7c90b8cba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c992ff83b58d71f9be8aee8a9a8198c2923ce7f29523f0e0e058e1c49bbf5785
MD5 eea39bbd8b58e25b9a8a1ee0a9d2b046
BLAKE2b-256 2a3f8295e3220bd06ef9c0e56c625fa1d42251834499581c17c7c2bece159305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 14b05a6427b92d43ba126489beb6a3ffa4a349bfcc54be64c7b2215d600b927b
MD5 acbcadcee3272fdbc9e14b2fc6a80325
BLAKE2b-256 6cf297fab9f160f1956144f9ec9f0a90508bf984c53421ca935574f363bf2e2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c427b07595cadd2a06f9a22c2ccf897412b696627a21a395a0dfb8b9a4d3867
MD5 e5ec317500d7263020356852ad6810fa
BLAKE2b-256 90533c91c98faf5342dcf3a0e26faba398eda8328540a7301b81300570f1b5b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6a4a55591f471603247d8280bef8a72ac33c216b3f7387eb216f78512226a382
MD5 8c3dcce79244a9edb9e33d3fe3b3e97b
BLAKE2b-256 e63bde2df715c52b706daa6a501e0e3a9c0dd4c85443f4aa0160436e65d6d78b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyasic_rs-0.4.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 3.8 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.4.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7a7ecb824afe99825de19197d50a072406b39d41fb82cc8e3b6089c21c9743de
MD5 b9f7d1dfecb52360ebb22d6ff9b1fcd3
BLAKE2b-256 64bad601084d7891e71bd1b85be53c749b0c42727ca2d245dfc35c85e1bdb9f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf6974fc0c976518d425d5f8e35943272ed44bb368cf202c3fc5b366f6e82afd
MD5 6ee399bb6d2650919dbe078103c2e329
BLAKE2b-256 67447543331532da71b500f9bdbbf96247e54fc554ff71e6e4628844241265a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd56cec1578efb07fc1628a84269793d93cab66ad7571195ae3c8fbad259a54c
MD5 341bf0538f1949cdaba38b39105a0c50
BLAKE2b-256 2eea3cc51d549122a8e12f266dbd857f87aa5cece803bc9a44a843cd9d5f73b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2066bcd3164f47c2df2f18058a09fa5c522f0048da88b8c89ca5d9e2c54618df
MD5 10584f1238ad219375aa9286fe796d0e
BLAKE2b-256 a6d0b2ea52ad864fbdb23743b5629f4b0e188054d86dac7ba4cad410d1e54321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01d1e6881a254347ca65ef926cd5ca02fd92e527f88b0b9de5e6b0dafb6c0d5c
MD5 8481424395a161d0176ed6ad5973b0b6
BLAKE2b-256 a46f9ba04c13bac17038d71b3107e6ab693c0430429c4afbe4d5e95243564d54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34905d5e1ce91a80630bc96ff66c44cf53e7c4cda7d905fb68776761a180c513
MD5 92678d84a809e862fb33b9aa8b67ee6f
BLAKE2b-256 b82ff22ecb2809ec39d70f92c7b7b6f3ce1f2dcad17e0dd5300ef5f7515827ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 bf4a6b77ed1247050cd0e691550bb1ac28719a1f0216ca933c9167a13e73723b
MD5 4a47f25f6e8acdd3289d02074d07d66d
BLAKE2b-256 232addea0f43e010e0b1439477b81800e668caea3d88a8c8e83d414bd099e5e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e851bcbcb1e99dfa4bbcafd1da22782a4548c11f890c0357e8e08bc614db2008
MD5 6f5334dc6b5f4859617085dba87d5533
BLAKE2b-256 5bab76b241e9d90de9cd067ee0fc50a18ad8094a3cc21eb13cde7e5420bbc41b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 46cce941740d8f8c4484050d8399277ecd2f420002ab2ea3fed9a2c346b6d7ce
MD5 5293973354b78dbb89b6b747d6fa0689
BLAKE2b-256 bc71d446168f31a05fd3877f68b6a686ea03db4791bd3376fe34e7eea9c1fea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4ae5619a43e28dac311fe45755b4eb39094492ed780b1974c6fabae06ad1ef4e
MD5 e231cac6eee50f7cd7cf69d18318e8f3
BLAKE2b-256 848ef7ace8562dc77278ebd3ba162df707f2ca5060af0be89ced68d9d012ba94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ee10af1835bc83366626ce82d4930284979bb236717c3b2172615ca3166d1fc
MD5 b1a7a81bc28427ec00ceef1d3d6c5963
BLAKE2b-256 e34dc6918b80260bc2a53f9b11fad707c991ab6e67e5bceabd2f3f096c4a9b10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a3411051054bfeb3727a03fd7036946215a6a6148debd1b413d34eef5dde550
MD5 7c749e311baf344bc2a01c2dfab86a2a
BLAKE2b-256 17535e54bf84a97e6cc830ca9af30cfb73d36b0cb01ad253b03d3343a3d46435

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edf4c53581970110e1906b84aa70639f655eb0f73684398024512e73ac722312
MD5 5be7edb0dbf0cba97b100b233632daf5
BLAKE2b-256 82bfed068149cb4dff8b522de5dd37d98a251c26c4052013095dc1ebf2054872

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 449778c07e7f7ebcae0a3ef542ad2aaf43e08fb237a7dcb6f0224e81e43e9e3a
MD5 9d9aa5b801e57def9e8aa9210822a226
BLAKE2b-256 e22ac2bbf489d3ee6351234aa7f2d9b408008f629500d2ef889a2a67dd7f8ebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f2666ca505c763039696a0b1657767dc763f48628ef700fe58dbee3c9fdd1e8b
MD5 e728af662936378d36bee3508a9665dd
BLAKE2b-256 74349350c627c97c9d61dc8b6cddfad1ea991b51dba49ca3fdea5c47248b7abe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6853d49ea2afb046648f84e735d52821e659c6b0130ca0633b736ddb7b0c4fe
MD5 76994dee5e83283b8403bc9f0e4b45ac
BLAKE2b-256 5f4a8fd2ed8a847ba5829588139d524ab65db3b7a4cda1841d3fba9c74806431

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 347a61279ef89617ced6a2c65bad8daf2ab8b984e9028fdc79585cdc43eb6c2e
MD5 4633afde79e53ba75164c23ae67feac3
BLAKE2b-256 b3829ea094a6f91a1a517f6fe17201c80e85ea86a9480abbdcb2262c203b3d3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2c422b1211b0db97504eb65c32fa3f52bd3475d1a40ad749605d15238bc42ec9
MD5 83b6ed163c4df2172f5d3153724ff7d4
BLAKE2b-256 b19ded4c4d4e055bf333d8a5d491cc6ccab406b0c0abbef1acc2224599a492d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 72ed0dc8c969410273cbd9ecba7ffb5e3309e8b5e37c84ac734c80a855b2455b
MD5 f42f86b91785afe77665a27e243cb165
BLAKE2b-256 96df0bf233e54f26e3451d163c5a95f5aee0ba57976ec22a2a73ac2339a16e68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80d9c4b59a0ac80455aece54ba6a73dd91c4fdb9f5c8b277bef88111cd012a66
MD5 f72e2462b608257a4bf1090af9995ef6
BLAKE2b-256 7543d65fad79e1e32fce0e2f32095800bbed0b4029e15bd615afa8a6f663d763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bc19c0101c1e07d091b175fe1e0cf6dd21909fdf622ecca7f3ced22bb4ed59dc
MD5 0a51620230af98870880e312a0233979
BLAKE2b-256 cf4bda7c581bea943f180765154b432409ce801bf7a1615fbfcf21fcdb0cf2c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72e329c23c9e65aff6affc79a9d2d61e6cad3773f18f5513313e618e4d4c64a0
MD5 53f8e3a3c74f92f34add94c6b8d64b9a
BLAKE2b-256 ca44cfcd71f97a4378fed63954b003712504a3e66a4891b3448647084595311f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 337f3030139f59f47188b31c23af62bd7eccc964122f1e8d733d4b41ee7b265d
MD5 4243c5c7123d9f229da21655977090c3
BLAKE2b-256 402ece0502608e11a538965fb18ac40a4920dddeee48ae91ff3d2d834cbd65a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69bd1ce0144e456d6702f7b7abea74276b90d54f175d02a8e319b8c368f90f8d
MD5 c54abf4978ffc26d1190e8219e25e4b8
BLAKE2b-256 f577e2ad1dfeb55227250128ac0f5ffd758395f81d00878a3764e287dea0f972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73b70c5383f3e86555829a09f4e60a205bb3d77b1617cdabea2ec6e38007b6c1
MD5 c52cea56511be82a67177b04f4d00135
BLAKE2b-256 549cf12dee5135a49f4c405896a66f4c5ba280d889a096ea07293f5aa2adda7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81bc59fbb9e2d21508f457b295fe72dc1d01b167c33edc9f0e2827dbc13a37ed
MD5 982e10eab816cffb8aebe1dcf0dc8d7a
BLAKE2b-256 db506d8a2c0977c344b302ebc4468d9cfa6cb265bc650b75b49ce6c4485824f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 22a1bc451bf9536eed1a8f855d634df75284232dc900a2a61d98d4093dc392a9
MD5 fa468488cd31d84f22f065e752ff57b1
BLAKE2b-256 88baec06bbdd65b47f073e4902c801b328739df4116f4d8c471f0db39eb728df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c4e29597585cae0037934b3b9ef60d2f5f3d9cf27c8ca80a90b2ecda446050db
MD5 3be32656640c2c5f0c32e4845117553d
BLAKE2b-256 7b2c564ea43cb897924b9d559d6a94ff3a5eb5b729df76f20375d6d2aaa55e98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d097f5bf2cda470e56a64b5ff41971c0db8db811920bae19bcd926aa0221f9d4
MD5 9d2e32e9d94bea72ce67d0e07be3e8a7
BLAKE2b-256 77096378ed266dcd917a8646b8e97f6c89044e2ee645652d2b9d9dd688515df3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 3ec77f6ad10a8ecd2aa9b15e1a89470e0d9d0e97e4873564e08d985cfb45622a
MD5 40619a242cbcc35b9ec2ab1707f3051e
BLAKE2b-256 0ef95cdfeab37791f72484b15cc6c65bf7c88e9ae2800755f08bb9356b14e39b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d2d78f533439a19dbf95ca3121b256b70e5d5c487424a0a61f39b04056c4d2e3
MD5 fd5c4fc86c1b4a6fa54734977d046af7
BLAKE2b-256 10c3191baed25613ae83e9d5dbb72aaed7dbc00fd7a41924795a739fff8e1b55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3905cfa1f84716d531d76a939365507f852dd818bb704a4b56de815572d9288
MD5 ed5afb037b1c556f88cc261b2a32b89e
BLAKE2b-256 b707092ec2e95c86e1055f0d5d05619d117b251b2272d10d632835804eaf1745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9c718bd4eda8c39c7326a494587f2386597040eb5c6808255842ae374b1f946d
MD5 292620f12d4f394867f45edc8a49e9e0
BLAKE2b-256 a2c9436e723bf8a653908617f7ab5e083b97c3587d4e5ab70548f332ace034c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 057c517e314a6f820ac7e020430fc4d9a4ac5f44e31b0196019b04471295d78a
MD5 ff268408c2ffac92977336844148e204
BLAKE2b-256 1c45d2d7879b9ac0b560c786912734af35bf734ecb603bce14e0038d52a57e35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 760c19be5a17781bf626038298e3fd2b0d3a133b10d0ad54528ada5e2addf145
MD5 073c17466fcc881edc60913895562ac8
BLAKE2b-256 ac1ccc4a5a0a3b4c4e33c8e350ac9ad4cd809e101c7c35cec43e2586425a18d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 007fa9a2d78fe5fbc20e410581461aac9db4be0e8b06a55b085517ac28d8e364
MD5 80e328bc6c6080b773304f0076f0ffcd
BLAKE2b-256 839095b93bf6c231c45ae55025cc677ebdfb046a36bd89aa4093eebca440008d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac9cc054d1ddffe8d6b8f43437062525f6fd1e1d8c8d9b2874901ba32c21987a
MD5 8a18cdab68c93133aecc7cfe9b94b5b5
BLAKE2b-256 58588b0d8f90b683d3e0f66758fa5f9ab876a04361ad1933cca2202c57b933ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0b2f3c0a66db0795c97950401eb4b566d58bb32d8454849599a7d0f51afce9d
MD5 540b347f252c6a526eff586d31cc1694
BLAKE2b-256 9696897d3bd26054f7acca311f5d09ed1af19328cd53a431ff1b843ab59d0184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8d5a9a7cd8ff60e4b2d9fa84313449ad1e5c3d1209af17ab33bbc0546c3f4204
MD5 57925f71bca31a615cb47233d93a7e97
BLAKE2b-256 180b26f9a5483902aff2949549de661d34dffe95fe6f4c6f4823689ee84c2337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 31b8975b38bc74b99663324a4b6de81b5e9cee4188de835922ba768778f5126f
MD5 c194d4e2f83ccdfe012586e44aca70bd
BLAKE2b-256 f158e43110980aa16a60e56a1b7f20e0ea1f99217946847930b52aa828aaf1b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 af1d3f543abbc92a197b43dbbae2eb9f842fafe92f49b7bfc4540585c73cdf11
MD5 8df31bb7614a1ad61864b95a92c428b4
BLAKE2b-256 ebc35ffe16dff9695e494cb75a2bc2725536ff716c191feeffd9ceced1fae028

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 efe1d45c9bc8d37503aff4e8d66ee229e5f1df7674cda103a4ef8bf526c4ac7f
MD5 ff8f62c0d19fe568bb3ba06f77c9f2d6
BLAKE2b-256 63ef2197efbd2e6a5d813427d73987185918a746af07b87150989c1d71cc83d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62a5b803c0cd2c51436379202ebb36d4223a7e8655b2f8dc749b39c651a19cae
MD5 c7114a6f3331c0844f4484bd50ae0eb3
BLAKE2b-256 cbe07515daa8357b7495a37ee6e16d58f688ff200f2883a5a8242369ea6e683d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 607a98eab290f72e0d03049c3c8baae1446c507e1d2bccde0587772a99109cc7
MD5 44246f72db7db7cc294b61a53cb3bb23
BLAKE2b-256 c52e190d9a76d4f9de8181a38fc7b230f3d0d1244917e36a9d58b668f278f475

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 15d797826e3fdf018f4d4ffab340abbba8b9512550d977860c6b7cbcc37d130e
MD5 c7d601e5348b5d7f1ba76092ed825698
BLAKE2b-256 2d3588d12f22ac02220fc21baf48f31d282616653ad2da65b85faf8101be75ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 305127bc92337d994cc6f7a50ae76e5d61f6c0ff843b922c87fc6083b809c6db
MD5 692b8cc2afed22f11a0494899741eda6
BLAKE2b-256 3434fdd6c486a24978a49493a3ff78a5eeafc18de6a769de0f595c27e30ea395

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7dc26b965dd3f579ebfce59e011532e50d446ebda2bf410e069631444ef67d91
MD5 df2fd7456a14bb714a9e4b1dc8b6dbce
BLAKE2b-256 9ac94bfad0a4a04c7320c10744c617341b553caa51da3c99da8983ed82b461a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 012ecf4fd23428215fbc9d50acde95fb073322fe9c36484733ef6820149df39b
MD5 ad468655fa522a822fc4b72998cba733
BLAKE2b-256 b942cde4dbdf22c6e670abfe0d1108c0515695e120a86f7f2798cb691f07046f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b7c0ce9517f876d6a2865d18549df576fa3522a8f00975aca2a65aafc66f517
MD5 817086b7fff2403a163366cfb43d83f4
BLAKE2b-256 5f2dac7ab1a5a6500c873558fff1158c17f584b271e4a8e939c51ef91ccc4ee5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7b4284b3734bd387fd1fbee8d6ff67e6119c16089e7b7b8dd3824ffb80e98504
MD5 9521d782c210794e6bcc0f5b5ee444d4
BLAKE2b-256 b4123455723033df87f704e95c8360f5b4f13b244a81be7a4c44710fdfb4c306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f16a4f5cabd8a04e31088396d525c9b1461ed92f99cd2ed7f782f6831b7645f3
MD5 28e04108950a913fb9efb01144727fdb
BLAKE2b-256 aa76b216e4dda659fb948762eba362a36ba4b86af548834bffe0002ada1af7fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 746466a1aa50694bbc7cfe48f3aba742bde230bf9ee39c4614f9add43d161526
MD5 3093998d3b7a158cb155d5735cac310d
BLAKE2b-256 60da2533d4948894ff215a5b42a3567001efa64da0ae9070cd3a1f88e6cb936e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0bb5cc914845eff06824d1bebc7be3b73efd19f43bd7b7257c336fb5b4581f9b
MD5 0476b306db9aba84ac05010575578c1e
BLAKE2b-256 c6bdbed2eb0e3c51fa77c95ecf685b2f5b18cc5ee0bd1275f82dd3ab4055553b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 01b9944f94305c5400beb62b9644f2cc9c67514111fa7c68f63f72c225f4a624
MD5 390503fbfdea20a9d39b52caa61c70ed
BLAKE2b-256 f9860eacf4891a7344b5d30dac1f89eab65e2bd8c556aabb8f2fcbe66d794a2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e05b4a498c07a8c6b8d9b1bd78a4af0849d72f60f95e30c4c296a73d74ee6a62
MD5 e9eb51075b54432ef3e04c368fc44034
BLAKE2b-256 a9a6652aa5b942a8d7e10687b667092bdcad39366ef4833c7ec2632e9fba970a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ba595fd76a8e4ec943f25dad859d36a5299f5b5cd034cbacfb69cdbbf343b8f
MD5 1ef742a5f65cc40bfb070f69d38f5b55
BLAKE2b-256 cc6eb769e8e13cc6fd11fb9a216900133f6177df85f53badfd58c37a16f9210e

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