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.2.tar.gz (286.9 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.2-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.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyasic_rs-0.4.2-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.2-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (4.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

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

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.28+ i686

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

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyasic_rs-0.4.2-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.2-cp314-cp314t-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pyasic_rs-0.4.2-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.2-cp314-cp314-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyasic_rs-0.4.2-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.2-cp314-cp314-manylinux_2_28_s390x.whl (4.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

pyasic_rs-0.4.2-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.2-cp313-cp313t-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13Windows x86-64

pyasic_rs-0.4.2-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.2-cp313-cp313-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyasic_rs-0.4.2-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.2-cp313-cp313-manylinux_2_28_s390x.whl (4.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

pyasic_rs-0.4.2-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.2-cp312-cp312-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyasic_rs-0.4.2-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.2-cp312-cp312-manylinux_2_28_s390x.whl (4.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

pyasic_rs-0.4.2-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.2-cp311-cp311-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyasic_rs-0.4.2-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.2-cp311-cp311-manylinux_2_28_s390x.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyasic_rs-0.4.2-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.2.tar.gz.

File metadata

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

File hashes

Hashes for pyasic_rs-0.4.2.tar.gz
Algorithm Hash digest
SHA256 b1b9eb7de23e83e56c05777748296c0322228561ecf15099ab4c0366b471f8d6
MD5 200ff89470a78ea3349c31a7d562ed90
BLAKE2b-256 f392476e7e7c29f2fb12db1323f01f6f469a7578390e6390a78ea62701aafc11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84c2655762f31566f98dc753d33579f122a72c41aeda141150fce664632292c8
MD5 2bbc5f82ee4972607e9d5e52a56d25a7
BLAKE2b-256 ce5a145202f985cd6b8f7b621cb9af7cddddf11fcd4f7bcb2f1f8a8d565f2c9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 330a7707cfcda6d60a1e7789a9bd12d9becac6455a168a67c5afe62fb2e5556a
MD5 7714b6a71c474484221702b5ff6cc60e
BLAKE2b-256 d083203b05a4628ced1b4d7880532bea43fe3813a1099a25b9a6fa82024fd891

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1d686615e22058bc82fcdc5508e7f5fab17c1e689e4b55f43161eb21fc3e22db
MD5 abada19ffb1160a6432703242b81db7c
BLAKE2b-256 aa59aae06887a8aeb2a94bb33faeaf92202ee67e459d6aa60131b1cf9da14bac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dec89f8fddce4ad27740c83da18b18081453620a12a9b804941b101e593c9cb5
MD5 4ee479173e8c3f8cefd4f0bbb1a8b0b0
BLAKE2b-256 593a3478742dd9409d4660eb0ac0b1741bfffac31482bc96903f55ed18975152

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7ea00c9484e64223ffc240c0ae4319ab900e58ccc28548a4930b3544cac4fe1
MD5 e6eaa71c539684f287306df38836d9a0
BLAKE2b-256 06a993a1d90fc46b7eb51a15c260f591f0889d0d26bcc07448e70d619e104bf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ab4b0153fc7b2c0a3a20858a5229f9af5f8dca4de45569f9f2fe5b2de4f7d63f
MD5 789c220bb549e338fb656fea5d241924
BLAKE2b-256 07ae39eee80e58dcf6bd2b9d0caac29fc66423bc0d723820e30e7665051c0220

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a6f04a4a4cb9633ae5775333cb6eac286daa7cc3c4e174a4de64a218e032aed8
MD5 3e861bcde35270485d433bb84747dca9
BLAKE2b-256 40ba46d020d41c5fbfdd34199797f23b416fc4ddf58e094f872d1a555c791591

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 6092fd0cfc553f50f71d11e8dd9fa70ca52b5f9d1958cacdeca51e3cc553cbcb
MD5 d50f4b6ecf3be469a100e2fb79ed3b83
BLAKE2b-256 a3da985348f0d3224823832ebc9f17da8ceeed2124e9cd0af0b915c914738719

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4df05991f87e0172ff06c23f38973f307c5fb697e8f09e7cdefa7230dfdbc80e
MD5 2051d5b64890e460633cc86777b4417a
BLAKE2b-256 a2de367b56b4f5c12d37e1ba618edd69b2188dfb5f8c3f26024fd4ebddfb5a1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 199cf1789e223bcc78ca7683aca8a5a252fe1d9a46d738d9819ac5bb13d025ee
MD5 c9a9a10e817a0996b28d2fe71540c6fc
BLAKE2b-256 60e0c964ba911d47b3c0418ade805d123713425ccb68e96eb3d422693b69d5ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25ab54194a99699d3ec3c9111f07ac57cc5eb9868cea0bae10d8ae17418fa421
MD5 b1794dd1ca7fb13352ca1da07df9be38
BLAKE2b-256 543222361c781fe2db6b9b4b13cb16a08149e9b4d54890898c24270f897154a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9a1411ddf0488717f1e94a737f3651711dff6e294a016a71de954cbb7a593cf2
MD5 79fcc2aa9eb367b01b9eecb4184553fa
BLAKE2b-256 3419e9ffb31a5309891da8005abcd2154ad30cc58c444d5a130b3d2a00ee63ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 30a44612fbb1076d76b983fe14e935a6a3aac193916b502c359ecb4a24f2d328
MD5 c6184c18692dc7f06a22ac44d28a578e
BLAKE2b-256 aa8759a95a53cdd9513f311f32db73f4cfc6370d8bf86307be0db4ac54e061bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e80adfbea0ce0e127a11495b7f3b29378ec97c1ff4bb636db2f4b39dbfe6db2f
MD5 307e14e3926f1ed9562f28e16eb9fc65
BLAKE2b-256 7458a16da82bfad5dcf583d73dcb4acf23880bd9f9ae8689e645174b8bbad78a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f9d03f70561b7a1e8695480bd9b0cdc84979c4e0235d9933be3df45f30fd0309
MD5 b34c01049610d652c65243027246f595
BLAKE2b-256 04cc5c5ed259fa78bb37df2fb053529db43e97465cf33997f9e1bcabf9757b3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0b0734cfbd7be29885dda6572042d43b875131d9c6211fa71ed38d9d3a5a31c9
MD5 124e1fc21ef78ed8d42e7600b532a709
BLAKE2b-256 5aebbed9577393903322e51f3e1fd829639b0639e781c145a0f950306779d4f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a2df5b9708e4722def4ca342ec0354b3441712c9c5a7854c1b9476d4217addb7
MD5 0c41301640c44dcbcdfd20324bef83c3
BLAKE2b-256 de581a78ba82a4e3a6627a6700d54fc6e4a47e57b848713f6f713d6b1269ae4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bfbdef5533544ed9f16e2d3b3c5cbfde408902cad6a0e0d014f743e8561aa5a1
MD5 72d404c571677c4e4b59ab2dbae76671
BLAKE2b-256 bf6341c4eef816d19d060c627c408bf41822a8f253ee0b43b8eea23b09e9f915

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e458567ca65ecb1835869df3ba1e5bca156c36ae9237e3727ae30a60c977532d
MD5 9d098d7317a7aec42f7f235a92b47d06
BLAKE2b-256 895403f4281e2b63bbf4b1b1928d33f84ca66a760f1ef09db535b3b21c8c2e75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyasic_rs-0.4.2-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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0bbe297118ad3d0a3c709744652f422d9be3cf4e5e60d72858f36de584188a9d
MD5 dbe2c266a799dd14526c6e09a6c81e95
BLAKE2b-256 d8df3429c629e3d9552c32691e88aa42db33c425fb981e3584f92550588161bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ba5ab8be86fb3595f819355207d099218ecc0eef0ac8049e12783247bc23884
MD5 040d8e365201a45899fea9b9164d3695
BLAKE2b-256 e74e1e1fa60abcdc0192b16d8626c7b886ea5b315fb39391826aec45a7621644

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6a66b4ac89b3594c1f25483827e974913a3a4ba8521f9a79b91412a3ef20fcec
MD5 51ae8b99825e2c1c6948d9bbdbbec009
BLAKE2b-256 3acb1e409e0eb95f6e51aa321e35b2b439a02698866a9720070d8398420f5735

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 849448693d7fc57847e7dcd56fcaba2f82cbd94168a0cd4f9986f9e338271087
MD5 473d5535ca937ccde726c557b0049578
BLAKE2b-256 ef4b7bcd77a7cd23aa1362ba4ba4d9b9b54c2615a70494850f5aec864e4dfde1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e77ff58896a0d956b8433b5945a9872bae328e9f2334c37f5a070639895bad1
MD5 47ebaa377485cce5d54c55c29b9452bf
BLAKE2b-256 af54569a4bde328e84bb855f330f0010d5c3f66f6d6a334b25a92f51a435c2a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e176d6a58c2487eaa58d333b0aaf07d2dafc677d7acd38dcb30640b8b81c74f
MD5 566885b6dd02516f4b3b37ea7845ceae
BLAKE2b-256 b3b3ee96ab044c8d20c07d9f9cf08c91e353ad4f74e1b84e5776584ed0dafd45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c52cfba4091aa5e147a5147acac891f0bfda6cbd98a6ee8b9f242dc495514043
MD5 1eafceee392b970c5977e1551aa0d290
BLAKE2b-256 9496cf1990aff308be8b7b840b89c7f4d321a696b0d01d829878a1eec6efbf7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 774fa0deb0b16feee0c4727b6b837bcd74ab4e6392c349db78415063bd1aa144
MD5 87dafe9c36cfc3117a2e1758d8928017
BLAKE2b-256 d60ed4a3b327899e785950b90a4c629db974f57cc4dcd12e8451dd218b759101

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0ee96f415dc92ce898db72c77c96a04bbd91786604ceaddf62e0dd11614f9754
MD5 16ba87374746201fe7d70349aa612f62
BLAKE2b-256 d6e58a5b4d12f27661e790a527aa8f33b14b67458b2699ab41112ad08aa6984b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 01c2c1bd080da053c4e574ae31ec4cb0481b6880c45bbdc4632e62074eb895ff
MD5 0bfa11345a86a05b11f8123fd65f15ef
BLAKE2b-256 b7ecbef13f0ae834821759aa2e21a81e92b39fb5e5b9930526981617e6b6b2ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9066e8a910c24c2ad87117e90bd88cd94d4219e93c27633cfdbbf9e0271e27fa
MD5 feb1f96ab57fbb3f7804928f0b1affde
BLAKE2b-256 b49b0ea77680889d574c570f2fefff00095485623f41dbcfe43dba6c23d70f23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6419c47b8eb9302616204b15957f5fe36e7a46e8a562d5dba1729c3c44c0906
MD5 a3eb4daa5a5e0f2db229e8cdcbc7cb53
BLAKE2b-256 d44e7b0cdbe9de0e63da76b4012dad1ebd7d73b9c57c8cc8d30fd264e81e5c0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94978c47dc5c4bbc7309d61a8a7b2660d31d8fb51f069107187617aa6767cfa1
MD5 7bf33eb43458aad73971435d08231c45
BLAKE2b-256 74b28aa4137749f610c6ce0489ce96df45144b2f907ccfaf6f65588fe5688f5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2db220a337c63173b4123d1892c14a50da33d71dde9c7335af227245fd13819a
MD5 b3c81911723a0b0fd811e312cd09a879
BLAKE2b-256 3d4c50c2a5436d2c7165c77a7e7bf5573e60e1cdff203b3c0d4513c8214a4c48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bed8a0f9480907972e3a80b3855599eb90292fca9faad5b36be52e768f686fdd
MD5 44d62c33eec992d7a30bb590321ff41e
BLAKE2b-256 ea102251f1222269ed769766613ba5eb22a6d671c01fdad37129ffaa8fc0e54a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15bf4cdb003031229785ff27e04d18703bbb02f60f2e7f4d5c0acfff34c86961
MD5 2a5cbed61fd0b22cca263e43df7e5184
BLAKE2b-256 3d5a1197e22bf23572e9926c361099812afc05494f2d755845eac78270e4f996

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 66ecd9bdeaf4eaab1b77bb4029ec80f6f9a2b53c0dda6c9bfc771d6acbd25fb4
MD5 6520d46fca1658fc4ff256446ee959f9
BLAKE2b-256 79813520e92389b624e583b41227d700461bb3e42e43c97fd658559fc76a8915

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5b02993726d16060074c6be1d6788cc546d228c151489dcc92fc1b44ca8c0c99
MD5 782da254adfe92342929243b47c0889a
BLAKE2b-256 db2557699605cc5a98d669735beff278c2edb5d60f6282ce52218f07c6851d16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 ba303139ec666e79e44e4d8688b965c7014437bdb2ebf067448739286f42140a
MD5 a24c92da89d3b858b60c2181766698b9
BLAKE2b-256 81c87dbc73a56d9bd330eb1774dec4262d84fba3d1f03b5d1912c5991a68ba9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32f4d5a0f48ec07c893c0eb86ebb99cd18f00398b0d228964d7baa48dcb00832
MD5 c732997ef19b75d64fa7c16b0bc00198
BLAKE2b-256 4f355652a11c07e52afd98b1023fdebd9e4f405309dbc1b2f91e9503ee88a7a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 258a322ec909068ff013651475569ef08257c02f620f56ef24d03d3e7f6d172a
MD5 f87bded58af809e94050d6322a72cb5a
BLAKE2b-256 c76b7035e6cfa71aa47a14184f085e71735629a5a0b1727ce440284341e19cca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2565d96f2c41d8fe2e2f38c553a4aff5ce49f45fa57fe3d0983560ef8a711905
MD5 6f587709430c77f75897fd0c158490a4
BLAKE2b-256 b2b90459006c9f3964b475f3f93ccafb3a7937dc2e2c588e71a2ed987b8963fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3de6c4a82a51134aaa9e1153b22c142083193ed65a23248c1620d3ab3a9f81cb
MD5 c147c33be633ef9388741535229490e9
BLAKE2b-256 c4a11306e1c8d98fa4a43fe5c6730d262a329338331f75cfec40424555c317fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f1b24bd9fc8adb6752bae3728ab3333018a4b64a1349a8e05f5d05c24cc805e0
MD5 4f72fa791b9f8e18a01978d2738f979b
BLAKE2b-256 801cf30b8405abbac118b75523a98581b0c1bd2a614063011d4ea94ffc2e9abf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d53bec47f3d46e1a46f16d22c6d716887e3f7cd494b8069f610b2116cba240c8
MD5 1dcb6f2c733e8a1e986419defe57f284
BLAKE2b-256 e25401ca43f1dc2c8cbef3aca29ed271219a9133f05d56f3d70c61b8a938286a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e216b2043ff895ab6b99f26d39b3d3992ab00c5ea7d31faf4f08bc89996603e9
MD5 d7787a5a3febcb0739d759851699cbcf
BLAKE2b-256 d007a4a709c1bf8c83d89025f1e266a562d9d62751f262db37ed46cca198f6f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b819dc24a6537c07442a580ef564da3e56d9ccff1c1666e7a04aa00764dbde08
MD5 6e1ea1cb08946771a91439cbcff25976
BLAKE2b-256 78a9bb78a43e46f8a96451e4d35778cf1fd48444eef4f8d1787cd45c9df57fb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9be862c145037f45ac1ca2c7e99ab6ba10347cb1bc67b9bbcb0a8dbfb437bb4c
MD5 d92ac183ac3202e45944b7b0ca08292a
BLAKE2b-256 7e092eb78ef467c5e04da941529861efccc9418c3dfe1060c7f9afd74a7b657d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 40b517015443d86e8306bf412036610cd28695d480d0070a0984da9ea71b2c2f
MD5 e65b02b48d8d79e178ff4b2032b94e1e
BLAKE2b-256 620ae0b3f8d53b3013acf6eea8db9431c3495ab1da31ddbd80e2e2b5bae88fa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 477046fae98eab7ecdb8c1dd6ead8dac8330b1f4fb42ec026bf80ae8116a8537
MD5 e81cc1a87b3ab2497794a2531003ee33
BLAKE2b-256 a1ba7061d4abe7bc318466ec5a4d7bf6f6240c5501a2ed1fe9ce1b45efa2a142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e10a29bb9c21fee7a0222fb798afd0988ea7cff913000f2ea190a6454984fa3c
MD5 6af55530131f3a344488bef370eb5b5b
BLAKE2b-256 051c449aa3b384c65bb189049153ca5ae54c89bc3202195b5336f846429f9985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb166c4fb748bbba0010e897bcb4e216f2447329e551148d41b4a787c0b9e0df
MD5 99dcce26ffbbd98e0277d95f4bf0aaab
BLAKE2b-256 3cb562d6f9488992fb21d3ec5feff282f77a0ded52cda4718fe06461dfb5aa30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1f975f8cd34588fcd0770c4c81fe8a4365b36ecf730fdb5369cdd04fb184ec7c
MD5 cdb074cf88479e810ad06ae456f36663
BLAKE2b-256 7309410ccacf098c0a03b33ca7c9fc716c08846eb702a0d0ad49f8920eb73ace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1512d6fb9105772b53c5110e82e1f69ed3d9c1630fb00a85b73dcf377745cfa
MD5 4f6285873daa893cc73b6181caf2c74e
BLAKE2b-256 0ce297715f12c503a0db151cb738a8fb9a58263d11d725773f71bb5e3ec0403b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f0997dbac1f6a444531eccde1450d35c0b123f809ad3bfdd4385ea8a57243ca8
MD5 617d820c1afe8c292f05cfa5a40b93f1
BLAKE2b-256 b4ba11ab5665685fa80cdd0341671c7047cddd69581494a3e219417f1cee322a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b87b4596a480efba00ddf40165be76ba6cc5b9e2b90934aacc6a94631b4e9aae
MD5 84c9b8f41e46f3e4a58dd500e07d7da2
BLAKE2b-256 1d61596d6d2569c680255dc15e51777cd65be51657617dd8a8eadea05afe27c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 996153b42ccf2b0b2ef1e628413b306906faf9bff116eac12170a70a2ae5325e
MD5 bfab7bda0a67f833fa4f5a8195392ed7
BLAKE2b-256 8637ba1f8fc0b7bd0475760542762998004026c640ba6c382e7f5c32beee3f00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df5255cf7d3d943f305afe0baecdd46771f76fc3f53609cf93679dad0ddcfb6e
MD5 a91acbeddb412ecfd9654477f368beb4
BLAKE2b-256 aa2ab32e6594cddd0847d3a68ec05bd03ffb5c98e68a257d5b3dd0418c04fd72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2828fb9cf37f22d69c52185540d65a583e08b33e1abb1db56bf1cf4bebacc844
MD5 fa2dfa9f01a21ca2d172ba2dc35854d9
BLAKE2b-256 0be2518243ce34fa59cf50185c17e3f979365ebb45ee1710929cca589036aa4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e604a63c61f97f48ab2283fce861a707eba7bfcd17f3449cd0d1bd416c9b21d1
MD5 0feb499c8cade86f66ff137058f06b12
BLAKE2b-256 a833da5314afea30709f5e93044353888479eb2c298f5b0eee8151b3812517fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 361133f63d0cbb4227acd8ed08000f6499b60e4bfaf21c7774d64ddd1f0499e0
MD5 2ffbd846138f715903d947fa363cd9ec
BLAKE2b-256 a9d77c5fcd5e474284fe0392efd932fb1e5758d84fdd8b1218a014eb2efb6f57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 82d0183007466f921b0a7e5452bbe7eeb4b8b248916103baffb00b246eb2ee6a
MD5 4258f814b4f62f4b3d2e0122ea23f3b5
BLAKE2b-256 bf2e633fe6cd11a4035664c29f247afe4314f2c73503411b1dbac2c4d2f48fb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1f241b34622528324c534a155bf34d011b803a6f7efc81763852ffa81833b2e0
MD5 7e3fa8dc65fc94e666ddd60d0d163661
BLAKE2b-256 a40b1b1386f194320860cf782f4edcdc58eeccf9a32de982404e607a346944a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15cc55dd9a8267df7fea3612061c413b17e7edd6e3e819970ba1702adfbaa4a3
MD5 6cbeb8b7527b6d9e4981191f10764d39
BLAKE2b-256 835b8c16565a700a1d7dc617f3b040f3501178a6034bcd1fd08a460d2ec759d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 58bd1c6e25fb9a26cf162d0535094d669ae6e410cc4d6b0e227c37f474c9e962
MD5 84ef2c3c6b404a8a760eda85b9374c75
BLAKE2b-256 512725be7776b3c64e28d443778643921c367e6cb072f9d7d3cbf1a7e9208621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dcc35d4fb388065c3024f33bc5139ed8c8d73564cf6e179d3785fb563afcef9e
MD5 d397007586ed8f08f0eef859a1e2ab6d
BLAKE2b-256 638452d4ad9f8231cbc74e42b78a5b478a8b3bbf165e8a303ce62cb9bb92188e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 82e2ad8232f553af16b3457ffdf6478783746416747e3829cb24267e4042ce2c
MD5 5d395db8cbf899f7cd6525a0fd2413bb
BLAKE2b-256 8e83a823199d04ce78035c46644d2ab83c2d9752eac257ead4dd255ad12ad6a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 55a5639d80c8cd192eb94b5c8555b45cccf37b854fa61e961633443dd7baa082
MD5 22ec85b8b2dd1570cc8905345de15338
BLAKE2b-256 4d0c95436d436350e180bf21f4f5d1955675e4c0ff9000c0897c9c09660b27f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45ac599e9d874f9383afacde7948ce3c0a5b0b43a53894e41e1da4fa92d47477
MD5 3be52686b426c42f05f157cd3b2f3802
BLAKE2b-256 1687457e939cbab8243324d265a905726cdce2c5a3dd0cc7bd9d9f585f179485

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ffce356c674db0f6f075a3fdb8121d4ecfe7cf754f93f7f9351d004010175dbc
MD5 f34658d41dd8858f2921f7a346fe8d51
BLAKE2b-256 789da2089343487401f7a9ce19a8c1db8235e46640f8385777d5b57f6ede344a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 24efa671d2835188ef894f9cdec8555be357a1600bac4ef09ce5d0c89b31deee
MD5 59f3e3920828e07fcffbc7b87c2d3b17
BLAKE2b-256 eeadf0e0335cd70bc853d5eeedf5c4b813f64769638990c947e3c5b03fd13cc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cd47afb552108d52b0aac49669feae2de8d11ff27581da1c2ecc7989a803d2d3
MD5 9508360d4b1701994ea76463ff413121
BLAKE2b-256 fd64db8ae73b13185b8657ed4859a6a11f8ee9ace6e06ee1953c98775076f01e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 13ebe325787ac951d6aab89e4ddc3dbe2ba60b39241edf773b2d9f7079443245
MD5 8ef1e33c365264406f5a2f6a745ed381
BLAKE2b-256 600d290d643e3bf672cdc2268405dcba490b3bd3666dc1225a0bcb4a888c20aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 287992fd8bba3d491678d6bd0b4f1084b0d97c2942ffaa0c60ab965e71f04894
MD5 7172d69ba49721fc791b665ce9482973
BLAKE2b-256 8c2f155434fe16c4a8e91b812f578dbc08715fd7bd858ac27f1bc07790108737

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db05fd7bcf9b956b0ec730568ca4984d154e44b0590c82035db3a853e3119fc7
MD5 0821e3585a296d7e5f11ac255563c176
BLAKE2b-256 5d589eee1e74a768709ad43dbe3055666f437e9a35c0ffbc52cd978fef6d42cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55bcebbcc9e2e6a94833d5a58fd7c5b832fd875f0aae9230c0a0d442ae7932c9
MD5 55159ca58fd74d7de9ad06bbe66cfb7a
BLAKE2b-256 cc676bfea5f302941bb14c9bd260045424e1188b94b43f2e49bcf63fdd868127

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