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.2.tar.gz (414.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.5.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

pyasic_rs-0.5.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyasic_rs-0.5.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ s390x

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

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl (4.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pyasic_rs-0.5.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (4.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.2-cp315-cp315-manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ i686

pyasic_rs-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyasic_rs-0.5.2-cp314-cp314t-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.2-cp314-cp314-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pyasic_rs-0.5.2-cp314-cp314-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyasic_rs-0.5.2-cp314-cp314-manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.2-cp314-cp314-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyasic_rs-0.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyasic_rs-0.5.2-cp313-cp313t-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.2-cp313-cp313-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.13Windows x86-64

pyasic_rs-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyasic_rs-0.5.2-cp313-cp313-manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.2-cp313-cp313-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyasic_rs-0.5.2-cp312-cp312-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.12Windows x86-64

pyasic_rs-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyasic_rs-0.5.2-cp312-cp312-manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.2-cp312-cp312-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyasic_rs-0.5.2-cp311-cp311-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.11Windows x86-64

pyasic_rs-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyasic_rs-0.5.2-cp311-cp311-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyasic_rs-0.5.2-cp311-cp311-manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.2-cp311-cp311-manylinux_2_28_i686.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.2-cp311-cp311-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyasic_rs-0.5.2.tar.gz
Algorithm Hash digest
SHA256 c959563f34a12720ca187abfdba0dfd5ca7356513fcdea95d26923ecdba188ec
MD5 d5fedb522ce60b089c87a455071f6faa
BLAKE2b-256 af96bde8662172d6ed53795aebce3c920a0664b3a64a37db5422972bea7d2af4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4eba7f145a33f72f4d61768a0e5f66e3630c6b91d6af652da0c30b0ddc81509c
MD5 ca106f7041e9164c0fe6709d68d7e185
BLAKE2b-256 15afee35ccd07645849d88fac35237b8b9d670bb347242d86bbf745a84a0536d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f92a829fa88152c80bdc56e32b8d55390339dbdd6fac9c17dd087e5e8b06f23
MD5 49e2d3cea094156bb710c30cd33a11a2
BLAKE2b-256 6ae52828f2296505f2b6c57e20a0774c902cf7eeb081bf15fc60cc933cc102b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0ce988ac149cd65fd8d40e6d005136c7efa9f543c1fcb920e27acea88137d27d
MD5 0a614c3643c374f05b180ff82a8c80bd
BLAKE2b-256 3ae10f38b60c392ac35510b9addc9525f0728bf7a20605827773748c3c8c5458

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bc395d0d3aaa74c61e577fad92562b696fa1bfa913c9d2225c40af16004c517
MD5 d6dd891ff64146ddd6dad9d7ecf37a67
BLAKE2b-256 9a5b99d164e7d372c965a85400a122499ca8832a713db00ec9cf411651e3c6f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 05409708c971509d6abc97113f4a6ad253563c81c53d977b20ed0d94368e539c
MD5 c13a33bf0007c2590e0bb0a352b5eb16
BLAKE2b-256 3ab73a32ded517649f0911636a6148037a91de9a6e1229366d10178a7a83d851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 044f79b675b5d167cfff5a16e4f94787839d31a805df80ad58a821170d19c5f4
MD5 b0e5eb76e50a0fc1226f4cee3f163f96
BLAKE2b-256 38274dbff727eaa353bc2aa7257f49dbbd6da8f1b540041cfe3f3c6513d0a5cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cb98394f04d12382f01ce7c839830a9aee6a42f3009890d043cfcb75028a8c94
MD5 f7e77459df72ba123176d0bf90afdd78
BLAKE2b-256 72efbdbd996bac8a3e34dfc29ad4a740d78b753a439732d62f7da301f3b51737

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 74ad6b25248613fe70e97fe4acabdfc6dda5b43cccce1ff2dde1adc87f37d279
MD5 3ca3975f6a8fa5cbfcb8e3610b539096
BLAKE2b-256 74598839b596f0dec1d5ac6d858770dcffab90cd0270a2b5cc73790f48d8ef96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 66d66f39e507a97e651eff34339ee68941020ba71f0b9ffda9fe51c5fa37f058
MD5 37ad0db8bd7b7a49f7ba1dced15ef163
BLAKE2b-256 0bc2af61912c282653fa654cf434be350db392123ef7947e5692823cb562f94c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c6b64384165a305560ec516eeebbdc5b857ee6dcfb9436407951bd210536f717
MD5 61cc33a755970b603f0da1a6e9935a71
BLAKE2b-256 2e74e6f4e728faf47e3f5963d1df03f11633e7e10018e6ebbef381b81d6549fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d454590f62c3b689820369835998f5c57cb138bfc4d8cf9c904bedd1f1345e2c
MD5 27f154c08a9a3ae47c5a28b8ec0bd17b
BLAKE2b-256 12862be7a176cf84ce34f5defe5b54bf48698d4ea69996027d45c9c685923040

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp315-cp315-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b26f690b236fa0632d973b646a321f97e5c3bae32e6c3c7912053e10046d3199
MD5 ce4767119d79ffdbfd5344d0dc8469b1
BLAKE2b-256 0ef05f501b816b40eead06b7617545e280366a44217c2eed8a38585e52c59f77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34144d03b464161db7c1a617a9011267c6450b9fb28eec4e41fbae365b5733ef
MD5 7638227e632a98e30419ca36ae3a569f
BLAKE2b-256 fa31d079a4536315d121303d3569125c20caa7954658a2023c5469d32a356054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dcf5a133abdb36e1737e63bba81c1ac4b5da0fc9a4168877bddf0776b50bb1e2
MD5 770b8c942203250a8a795a2237eac97c
BLAKE2b-256 609afc7fa6e8c472c4fbe9a775fd2520976085f53e5b7f0f2e35675d88d8d768

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 33e84b242eb3af25da8aa810ed04bf769e642663372101383db6023f6924b6f8
MD5 46ca9805e6766d48d134b20991833e99
BLAKE2b-256 1a07b952db4c2facbcf350489afec88c094925313f822d67010502ec39cbd0d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 181851a416ff33147daa2173ded7420242ebe01885dab364261d634f39d95c95
MD5 dc9a5d5efcc10a6dd773154aa3147661
BLAKE2b-256 3c422bef964898a3f07b2a2b339f853e5056082ba65082d921045e7a6bfd1846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0195906db2313196b2c5938a13c0eed5e8b8b0f14c4438578c98ec814194bedf
MD5 e470ae3dd3c03a7767d82fdf9834901c
BLAKE2b-256 28973861a032a3bd9470ace217af7ac687cc3495cce7f10ffe7682b7b8f3d18d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a705c082c2f582088168c29e3ec9b8db29aafa91c7200c029c5bd6fc3c49ce05
MD5 afd0eb0859057449c6865235136b92ad
BLAKE2b-256 80159074ff3eb2bf5a12d1729ad49dac24bfb5a401fe1bb62976dc642b5d4f23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 9a33a35b66846f791ca337edb29cde187da368a03ee4640615f6798e398f822d
MD5 c50b9c5dfb2305e3b62afec197bb47c5
BLAKE2b-256 2677f6a03488321c5d561032c07df048620ec6ffd065638b389e215c31aadd1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f2c9965ec8d4c007978b71feb37d79e038210814967113b7a69fe09eaf5ed2da
MD5 dd2a172168ac664a47971020d6092cf5
BLAKE2b-256 89d0a3323005f1d948d230bbed64883c56ae76764823eb4a2c2f5b6947468eea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 09c8d486a47d1fb4ae7445a9ed551ddd7ce1e4dac3ff5cf116e4965b514de322
MD5 7045f4f8eaaaaf39a9429ff9625a555f
BLAKE2b-256 ee65677fde26d4899cbd503fa8907ac2c79cdad9484005c4bac976b728775b23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyasic_rs-0.5.2-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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 07deaf38e359d760856b54b3d07720e68fb64df8afe3d86be0201070509f494a
MD5 cd4e31e2e4bf409ae00e90fb6c4b0841
BLAKE2b-256 07943eaa102d7beff12b8f9eb820449e491bb3ea1b5c035ae4a8d3decde8bc36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd2d61c7d3532150333ccf8da1bbf5d432eac151661cf43a7d388394c1f8a25f
MD5 66b44d0149ea0e06c2c0c1eb7f3c8777
BLAKE2b-256 0581ed3a90cf421e17f01287d29d41065560ee39388b1d20d40cc9a66be34139

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fc021c012c56d2ed27397c6b6cfcf61d5b2f55aac89d84e632a271d124854aef
MD5 53263d980b9641aed9df7e06ede36fbd
BLAKE2b-256 eded0189fa91bb88acb8a8dddd1722d30378bb51ffa328f7f723eb9558172c4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2a0235394163e96f416d3bd8ce7a56fd946945032700a0f05353ca84c9cc3fd0
MD5 7ebceec3869cf533db64b7158625c20b
BLAKE2b-256 86c0bc7fc8b4a30f12ab3477ea4216c3f130d2eb09eaa5f5e15809b68bb3baa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ec5916cff019f593b77dbe5d0a4098dec66d3c0cb73beae86fc92f668788d5c
MD5 4289c2f5ff9cd597596853dc0fd41287
BLAKE2b-256 8d4c84e6ba57875551b2ebe76bb128f39ed866b5ea45a9738be99643e87189be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5afecb8263a4ddf01d395c62cabcf8d15f0f102c0e296b81edba3a78c9b44271
MD5 8f159fc3cbe376f0db34520fa0cb6ff7
BLAKE2b-256 b349b81c6e3d4efee18cd52f7385cb31ae9c7dba740f503de5f13c306f2a355f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 02de87da5355b60c1064a93c7be1d6a5135f3378f498db2a9c4cd717e08101e0
MD5 e3f9b6b03d1057a200a1da570cc7509c
BLAKE2b-256 a453f151132f546a92c4bac9a1c71e2429e91ce8611762741b8878909dba4109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7d06faf6f6b39dcd161cf1eeb5e6e4204b9d391267908932af04e806e40fc617
MD5 36031f1cc52212f90cadcf5d8189f7de
BLAKE2b-256 06fbe20c20fbadf0fb7329b2613ff53abfaa849df202c2a8ed14ec61614eb488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 442009171a2c82c5b3f9254f6c693df7d1dce15536ea0cfc6800e144d38e0ff6
MD5 088f4071d002aa6720a40f9aff040c7e
BLAKE2b-256 dde7bcfc991899a8a355806407441084df461a627b818ea4e61b05beb4699e15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0d30054c2c091fc16adb2a9a6953761843d158516fbe7d0eb288e52f58289dfc
MD5 e5ee97a5fcd03e8470dfe95f606328c2
BLAKE2b-256 df630cdbb8c3d406210f523584f89e3d079802be367f1b985d25963feb8fa1e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a466403daf9a0e99337dc7635bf7259e8e42f2f161513fbf0e8a51f23e9a798
MD5 70121bdf947017f75c124bbe0fe4bfee
BLAKE2b-256 1c10e6860d4e2845599cdf8b3d8eb4df4590712dad6dfd1643e15151dc25f0f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74d471102b63ec747f658c3c25b10dde5547cc803ac5e747291cf1d82046be18
MD5 a22fc74405b1d6a33a46043fb1040f86
BLAKE2b-256 3582727526f5a02c142631cccf737d975bcff53470fc062a9fd937218a1edcb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 944e070a54b8a8f5bd7ca36ba40916b10f18f0e86ea17f740aadb9b4c672fa74
MD5 ca9e5b5f31f97aad9d865879b31bf2cf
BLAKE2b-256 ef6730b0ab3edb9ec57bfe23c19e25f3074359e18b4e05213fd0f0065b98f742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 032d488c0fc8e1e6e80f92737be88e5cf7bcdd3b878001ad273a2ebfef683a42
MD5 291d7ad6f70356c5ef899474a0121dc2
BLAKE2b-256 77634f83352e32afaca129a0e0e37c6907ed40cbb9f973b6d9ed2c496593c3d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b023ac300fc06180fa2248bc258466aa887003cddb4b9bed71d0717db437ac2d
MD5 bb758357a95d40447e597970bb85e800
BLAKE2b-256 ed6ebb3b24e2680511956ca52b539f8a4960f4ddf4c18e8a1866cd85d4112702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18c592f368d56e7426f999205bc47bb5b449ab279c930f4dc692b3b29668494f
MD5 bebe9dd2dfed077073389ff7a54fe79f
BLAKE2b-256 0b9a8618f38366c2a618028d794dc136784f5d84a7ae5f38a827bcf6d1944101

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 85da980825be2bf881067befd425bdb2f1802dcca1c8ce6f529fd1fc2a6fe6cf
MD5 060b43fb536651195bf29528fa76d2df
BLAKE2b-256 a03c8f0953820e9e4ddbb2f298a16831e597aba1902773d4771f03bb00185d49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bf9f78bd88d6c8b0e2203f218d54c57ae735014ae2ddc5f68af2c8c1f4d8eb65
MD5 e2c49e3156e549acd0c7c1cff7c82c3e
BLAKE2b-256 56fcaa5da3da648e2e99fb6e3714998ceb99e25623fbc5c875ad6e21b2ba92e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 ef3b91ce43d6ebc2094e5b34be845daf9b0e3517d242f033dc2066b97a434b74
MD5 e57e01afecaa13ce54cdf6890c4cefc4
BLAKE2b-256 9fb208b4dc12f6e5fdbbd8acdd5210eef4831c4e11909bf7d07cd5d09a675ff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b52ed624d0c94dfc18998035aa6859080d1677e31d6fdc4bb2e16ebb82590d00
MD5 27558a5150be058c069c9c669db829ba
BLAKE2b-256 f247685b71e7c69fb1f29a247a655425d73f53fd6a24a12c81d2ce9aef43385a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9348813aa7a7bb3f7a11d491de45d6633be121a5b9670001330d2dc4d2f21bcc
MD5 eb6afcb1d42dcd8910f10fdd341f22aa
BLAKE2b-256 26682ba65d3f1534f2b18d952cf860c2ab31b2eb0c0a02f3e507f16fdfd10a52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b5d2890071884fb0359d1d04a5ca3029b8d30006f2b807f7c6eac97a76c4d2b
MD5 2d133d21724b8f04a8ae10e7f0211b60
BLAKE2b-256 d5c835da3ca9ef9974a18eb62b2077ad3734b3612fd3c4d20ccb88cb8fa8f59f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1518e9826bf02ea3003e5123970ed2f0b39fba798c61f83636d28b6b005942fc
MD5 a7d8b51865343bd808e496ed5fc6f32d
BLAKE2b-256 124fae6252e278d486ac70403d470e303c040876c2614ceac003aebbb3108c96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7a51fb1b6f5bc87eb906bbf6b19df956737253beeee0e03e8dce6f468d35bcd3
MD5 a4fbf05723a036bf2226915b25a361ee
BLAKE2b-256 1563a99bad563ef095ecc8fd22c3937a2b83402e49d1336e5076be3d6f5adcf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7de67967912cca16b0580431778442314313638b8cbefa855b0f65fb1e58189b
MD5 9aabdb2ac0a5647152aa71fab69f0989
BLAKE2b-256 011b114065566b2927dcf1912d6dc513fd6c6e9aa69b26ca4f0bf554c3a7fb2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1fabbce23f319b0201353f1906a8ab17252bbe5dbf9c69b6098230065753cd8f
MD5 49c28322312ad73d0e8a72fd4235174e
BLAKE2b-256 49a4dbf22bdf4162060b58c4df3c4e51a35894ff203ade6b9b37922933660736

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fef154a217dad178d7e657596c1df0afec438703da0a01c203335070e7bbc559
MD5 3cbba4cbc616a14a0154d60acd26bd7e
BLAKE2b-256 5e82fdc36d68cf15e2f30d1fe17b57b024ddebe924d374e3749fe18260e5aa9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bc25f952abba8a245688d7f024b88ee75d39bf221c4b34103310707cf4ae4ddb
MD5 9aba1b185d52f496e9b10467ef09ab04
BLAKE2b-256 56ebe1ab0a5eeed4793228ed40e2282d185c46deb8e105d7a762e61102ebd71e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 abeb80e82e9666bd31ffeea7f81c561213c120609ecbbbfe9084fcaab0cf9f40
MD5 9a8256999cb1a33862667bedd719c790
BLAKE2b-256 67aec0c45988dbac1b92588c03ce5f9f3adcb2f6eb8b88a3353cf8f00f503885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 7f49427b013088f7a74f478a27f4df955a8dcfabc8e2de9d35f1d1ded87c4bf4
MD5 d7cd1374ac2a0242703635be8434be0d
BLAKE2b-256 52c37a26f737a0959d3c6f1af46ba3b9253ef1836b6a99a73e9449796eaf62f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f07e0ab928cb14cda9e273129b2984eafa14920f0fbc1c9577a29ee74f722f3
MD5 6183a05d06fc0a5db8132eb988c3a147
BLAKE2b-256 74eb77f20c932053660aa2684ee060113354631bc2f50bb6268f024a29d643c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 564f7b3b13f5b32a53a2d3d918c653f4e722a6822aa41212c15fc3c3f9c9fe97
MD5 9ca6789be1469e87c6702d9fbf560770
BLAKE2b-256 eb94c1e3fbf018f42a1c8ba4cb8e3628c2abb2f9c06a83ee48acddf719093bdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7278f2289c64c3a52480a830349ebff6706696a01a748ccaf0ecc449de9bf6ba
MD5 5281cb5c5bf85e4f162c32311ae41378
BLAKE2b-256 4876b16f9e1832086ab4617e10a4fcd0f35902d47f44331949b43058f4b35883

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7067e79d12fa56893412c9b55f08c3c625c193c3a07f952936a043a9cb612ed9
MD5 1f7fe728452d33b3f475b3c3cecec99a
BLAKE2b-256 230f6661dfa57975af6187aa48783fedc3ea825b08fd1b7a4f734ce7c1dafeab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a3e3956c74f5fa754c3647cb5bbd8fc3e70ee50243084e575b5c468c9ae76a4f
MD5 571f054a8bff671b5f5636d9419fdf66
BLAKE2b-256 3ffba604058c4e374bb3a9938222edeb998611bd62df67395f09fe190408c00c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5111b00454edd9e23bfc48c3175f268ed94de62f565d26cfe9ae129bfb64453e
MD5 6751120a571696995a23ccb9f9dc5f5e
BLAKE2b-256 018896cad899373e34284e6250889a050907a5c21f3096b366d97f746cd843c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc0798c492dd06fd492f0e6effba577abf49c918c23459fde7bcf5fa750a52af
MD5 a0ab11a9cbf6586420cc2461163cd199
BLAKE2b-256 b3611963033f6848fff672ac649d4ec8ba5d2f014b771445c3f67a376f420f6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f841e9663b93130c22ae72b71ddffd6be2aa1e3a60c056a8fa6e86e8b9751ef7
MD5 becdfcf053915960e0ad23d8d9eddbd0
BLAKE2b-256 c23a27c200d8eb70533eb8c8bc8fe84a0f8b41891bece21ceba620e1be568449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d7734fbda3e55f4b20eff5ca7e0238fc24636dbac1b9ca6fe9d4f7d809cf539c
MD5 05184fe021da860882fc3a721b5ec960
BLAKE2b-256 e8e4793c5918bd5aa2cf60a153a5e288566d9629570b85c5827f2dc11e2d63cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e185f9e1e90acea2f86be8359a404d8e7b9fc18a2804b424a779a13411291806
MD5 cd9e96e39d9be883b05c85e2c57f3e79
BLAKE2b-256 c5a3d7abc620fec58000815362017cf4aec4d230d708a59987eabc6c61e02a90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f990136cbbf859a008eb2560c2f0c3e2aad0c4a33321fca21ae51749bffa19f6
MD5 a8fb468bae760d013ade5f14945769ba
BLAKE2b-256 33d3781e4b10c42b7b31ce909be4c0c37e4c70deabe39a751b5c3d9359b05bc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4b26092fe987e342f2ff3c53b3185ef1e44d099ef754e695a38b02537ca3d3d7
MD5 aa928c102fc0984df5fbb197b85ddf92
BLAKE2b-256 736d5944118a1dd630879c4b729a73d7bba27dabfe5f0d387a013347182e5a5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 05308261dc2da5a64722b60d3493c19d6a8ec71568986efe190a3d181b40686e
MD5 f4f0fe5cb1bf287aa5385c38a8230f04
BLAKE2b-256 c31bfa1907e57d34aa4145dd9e8de54be1a9244ce083d70dddafaed6ff2a32c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 098135adee15765e4f37f38e24fc36e88691d5b759d8eb373d194c5474703ab7
MD5 2e798f0ec0a2eac345d5546083b8800d
BLAKE2b-256 10597406c9cbd64bbdbf29cb09eb9ef8ccbbcbda0add28857dd3d64542528315

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 591c5813d477a04e5c5793458d73cd1a440939f7b590519e3139238728778577
MD5 95cec7e005270340dc8b692a326d10fe
BLAKE2b-256 0acb7252aeaf40829c97ca3826a9063feaf0ac7a49611b548b4ce4d92c27fe08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9fa8f40d8c99f825c207d55ef119e2ee3d6435a2387944b8a463e383491dbf34
MD5 40b7dd27e79a99b25fc996d30c3d1aed
BLAKE2b-256 ed9348a51240beca6a13c614aed01ce9b3a07933a2c68f4c4efdc2b9d6dc6702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c550ced92fbf29f0d757b869dc24032223bf7c5a5bf4cf9f95dcdbd330c39cdf
MD5 99d41e51ee785056eca4059ea49445bd
BLAKE2b-256 30efc8a3edbea48efa290ddfbba1cf24ff26d3763ad37c2ff2d6a9c44fa477eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 58362607ca7c7a5743f829193132ad23f5ea8dac77b872420ec3066402823646
MD5 dab72ea37edae2ac699942ff4b60feb5
BLAKE2b-256 0cc17f2a54fcb33f404b7052a2ca5b68cdfef190b4c32f17d431e681526d774a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e25a1dfce110a618038d698121a7fc985416fe9c1aa7ff07d55f880ed4c99bff
MD5 a25e1c1cd552c6a13aa8fc491eaf0ea7
BLAKE2b-256 bf06d441806ed4f2b15c7aaa3b635057c7f9600d94c5f13bb91a747dff8b25b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e60232b1da7aa565d3a58065b4e79a78a3a4853582d092ff0b8e4e2a03a95f6e
MD5 9d5f5e48fa291181e8dc7147b61f701a
BLAKE2b-256 6afc7f2201ad21d1522213883b6ce178b01078111ee9f505d700eebd15aac69d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b1d331cead051318aa984fc9f152f3ea9dd4fa911c8b2d7be97d1e7572722bc3
MD5 96883f0a271bf3b05982a2669055c07d
BLAKE2b-256 671d25886b253d1800cb7682fb046c1d5f6e5a8a36b06a8d3ca4af4b750a3884

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b8f8ae48998e0df1df347a943da3096f680afb51ca85d40a1df72c8da512dadd
MD5 57b87fe4f2e7f1b27139d5d110c12983
BLAKE2b-256 5b4d49a43a456d20fd6328e850989c90efa7a3cd4c6dfca25f25f65ba4a47881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9b418171ee8a171d8ce991dea6948381ea4109bd2b9fa152d3cab0f75c7eaa72
MD5 9c196a2c829df267fff30e0435fef840
BLAKE2b-256 3a2b4671dac466b976b316f5a43d4ea25e1f3508faefb600dfb68f4f0c594556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 032cc6c7675c7d12e62bd9f805ce67ce6fbeeaa7e9a935b72fa41604ffef2dd6
MD5 6ef41342370eb21489cb10ecc4b7e826
BLAKE2b-256 f189722533afbef247ff477b32fb440c2aa5fdcbbe68a4132a3d3a1bcc27c795

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbdaf28b0e61bac6f6842c505d35536baea6728434601516ee00cd47878bd831
MD5 778be924022bad9f783e424825e40d0e
BLAKE2b-256 1d1700a5f4ede46c19af6aa678caeafd7d0eef5a2ab07bdbfe36030faa90f0e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 905f825e64790552c621214efc2dd565e4a0573a6986e3456f2a468e921ca98f
MD5 01d74dcd49da5e1f7248d2e9be3f3e3f
BLAKE2b-256 5e7e5325bf9e0e8d271f0ea3b9f968434964f1e756c1e8db72fae43de241a263

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