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.2.1.tar.gz (207.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.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyasic_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyasic_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyasic_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (3.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pyasic_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pyasic_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pyasic_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyasic_rs-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyasic_rs-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyasic_rs-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyasic_rs-0.2.1-cp314-cp314t-manylinux_2_28_s390x.whl (3.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pyasic_rs-0.2.1-cp314-cp314t-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.2.1-cp314-cp314t-manylinux_2_28_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.2.1-cp314-cp314t-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pyasic_rs-0.2.1-cp314-cp314-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.14Windows x86-64

pyasic_rs-0.2.1-cp314-cp314-win32.whl (2.7 MB view details)

Uploaded CPython 3.14Windows x86

pyasic_rs-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyasic_rs-0.2.1-cp314-cp314-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pyasic_rs-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyasic_rs-0.2.1-cp314-cp314-manylinux_2_28_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pyasic_rs-0.2.1-cp314-cp314-manylinux_2_28_s390x.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pyasic_rs-0.2.1-cp314-cp314-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.2.1-cp314-cp314-manylinux_2_28_i686.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pyasic_rs-0.2.1-cp314-cp314-manylinux_2_28_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.2.1-cp314-cp314-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pyasic_rs-0.2.1-cp314-cp314-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyasic_rs-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyasic_rs-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyasic_rs-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyasic_rs-0.2.1-cp313-cp313t-manylinux_2_28_s390x.whl (3.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pyasic_rs-0.2.1-cp313-cp313t-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.2.1-cp313-cp313t-manylinux_2_28_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.2.1-cp313-cp313t-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pyasic_rs-0.2.1-cp313-cp313-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.13Windows x86-64

pyasic_rs-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyasic_rs-0.2.1-cp313-cp313-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyasic_rs-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyasic_rs-0.2.1-cp313-cp313-manylinux_2_28_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pyasic_rs-0.2.1-cp313-cp313-manylinux_2_28_s390x.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pyasic_rs-0.2.1-cp313-cp313-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.2.1-cp313-cp313-manylinux_2_28_i686.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pyasic_rs-0.2.1-cp313-cp313-manylinux_2_28_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.2.1-cp313-cp313-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyasic_rs-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyasic_rs-0.2.1-cp312-cp312-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.12Windows x86-64

pyasic_rs-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyasic_rs-0.2.1-cp312-cp312-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyasic_rs-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyasic_rs-0.2.1-cp312-cp312-manylinux_2_28_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pyasic_rs-0.2.1-cp312-cp312-manylinux_2_28_s390x.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pyasic_rs-0.2.1-cp312-cp312-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.2.1-cp312-cp312-manylinux_2_28_i686.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pyasic_rs-0.2.1-cp312-cp312-manylinux_2_28_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.2.1-cp312-cp312-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyasic_rs-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyasic_rs-0.2.1-cp311-cp311-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pyasic_rs-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyasic_rs-0.2.1-cp311-cp311-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyasic_rs-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyasic_rs-0.2.1-cp311-cp311-manylinux_2_28_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pyasic_rs-0.2.1-cp311-cp311-manylinux_2_28_s390x.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pyasic_rs-0.2.1-cp311-cp311-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.2.1-cp311-cp311-manylinux_2_28_i686.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pyasic_rs-0.2.1-cp311-cp311-manylinux_2_28_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.2.1-cp311-cp311-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyasic_rs-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyasic_rs-0.2.1.tar.gz
Algorithm Hash digest
SHA256 0d70c2e7137cb248f71f6684afbba384df33a8b2f2e4ca4ac0f15d86ff1e97a0
MD5 2077fe2b0c1262bb28f59c2529c29aee
BLAKE2b-256 fa9024d0bc0344999c0df54a75819dab38a517efc19e1bd994518f3b822fb7d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3c9ca69f19f039dbf0cdd245583bde4847df412f2a4bd2904a8b2074f65fe93
MD5 07465bbf93c13a30ac26d2e0f1341540
BLAKE2b-256 6e3e17a9baccf1db2caf1b3cc57afa83e7a6d25ccb09f8b0d606edde1fb18286

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 660e0166a41fbcea089b1405528e9490aa2b87163707842a5b993fa4c776d09c
MD5 082a9125db000c58cea2c427ed9d72f3
BLAKE2b-256 40436a3be08d326a54336fe8070f402a8ba26deb93132eb8db3684bc1056ec31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 22cf7c1828ca9e71387efc0a948a24267dcaea93060effa046375b0359ef87d1
MD5 beeddb83ca408a5d8a7ed1029c27f041
BLAKE2b-256 f7ca9e4b8eb13b7eef8ea51eb4440b48f1df889a7b7e002166bda8e0e66c29d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17fe8b05544fb4357b8fe9df7eacc7eaf84784b48e6f1a39e0742fe28e8e3521
MD5 0cfa782936eb12e24825af2cb1261e7d
BLAKE2b-256 594500cbda5eb50e1f5699605132e3042a018770605595cf8589e45da6e39214

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1a3c05c46018e25ddeec8171912dd96f828300b519504e5e695785a8b9949995
MD5 a38fa8a6edc51a097530b876a433656f
BLAKE2b-256 43511328f83445143a9524fe36b0308f055f8bd77a921a5d97eba265f5713730

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6d6b3b148e780f637dd3cd5150bffa175982727ca01082f99561063e38b64e98
MD5 fd688b91bbf2e3f6844d68faf0e3a969
BLAKE2b-256 7f4c858bea327c84f7c318d6d6b61a2407b4d7bbaf9a34a3c80c66783d79f759

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 743d930587a7e87217032227a753c572b5954026f0db63ebc970a03a77bdd27b
MD5 f633e8c558b339aef4ab82d94a234666
BLAKE2b-256 c4cfdabf2b40e4a59c1f632d0f8f5092a115cc9ecba379ed66ee6a9c69905a96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7ba8929ddf2b09c63533842bc443bc7e1a52ca4cb752a11adcbaa23eaf1efc8c
MD5 9e3cc15469d315a878c1866cafd9e933
BLAKE2b-256 48148e886ec4a26b7589489f19b658065d1d68ee2737b37a4939a933e9f90b4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 da910fec88d2c9d67ca551ea0384ba83f47bedd9d84e77690a43777d38b8a31c
MD5 c2f16c43cb5fb033f86d7cd409f0ad91
BLAKE2b-256 9840a6d717c3abf92bae250221b01f85e411a615ad7a6b9e27ae0b118f8de136

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8603c0a69a009c397062cfa440cdbb4ec78208676f43f6ddf31fdb7608f8ec12
MD5 861093083c354b2861f60c49c87309b8
BLAKE2b-256 a21a10dd5b7d76b8407b78726a06da2c1dc0e48eb3ed20396dfdbd3d9095af2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f618907522b234a59f9be3ccdaac0fff1f642b7580f3fb6dde5dec57be60fbe
MD5 cea5d9c14ec991fc6bf1c1ef92e225ac
BLAKE2b-256 3139cababc0ec3e153adec4900f91a6a2a458a1b2c137100dea170ab3d7d83b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c3032b6d9069cd07b9b10bd8c7cfc3571f57895ec2a92af7fb4db793afdc1ca
MD5 3fdafb587cdeea1d36a0b205adac0746
BLAKE2b-256 eaa97a932fe2f4572a95507e7661b94d49f405fb2ab1e46ab24ccf910309c3f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 42b3ed90e453ea683b93d00c09b8b0166b09e39904e6ef2afa203de7294aeb11
MD5 8705e6b153889435cd2aacb700f6d0dd
BLAKE2b-256 bc6278dbc93963996901e4c89ed9ec5364da69be303f2453e94afa9fe15fbd4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39827432a691ff1556f8b6662918461800294d771b8a3005b9cf4e446c738c59
MD5 e339b021fa60e1c0e409e2eb924c1248
BLAKE2b-256 98573140b504dedd4ce1674ea51ea862d1b7f777dbd438bc73cea1985d358281

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 68b3a363824889afb850102a7a4bdd6ae6ca43f2b79c7f36b2615f5e5d0c0783
MD5 b383614e2618c8f528f5e22c4239fcea
BLAKE2b-256 d3ec2482199230bc8dc7750ad5b10cd4d62490f8c8a973345f6d805154feba63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3e9a63b887f5c91480534ec2f916d85f133d99ef80ae002d015017bef013c956
MD5 35e715f7f781f017fc341a7205b7d0b4
BLAKE2b-256 c2098b97bd8230d95a485def1981ca8f88e270f143cd25f719eb0955d0912e1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f0d0d2ea41c75a8234deb7ed9bfdb63cbd5f9db1214bbc56cea68a1860aade24
MD5 eefec0209ce4bcdc009c9d81e122a3a7
BLAKE2b-256 3c79eb6b23eec5df773a8341ab4e7a353d04d840cfbc9e54bac07f0d0197870f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 baf702202ce91b6faa7445a15a7ba232e73cdbe06d4c6888103da290a16c270f
MD5 a97aaa26b9ef6908e9eb4a42d6a42390
BLAKE2b-256 ce8cd6c7f8416b2dc4f103a116ba5e78aef59291379a6142ccb288f58652a3e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 22e7a70b10a413d1ee9e9a37ade333f88005d3d5db25f9347b303d725eb8634c
MD5 e5e7ceed9ede3d798aa3dca96521e05a
BLAKE2b-256 34df1a19081fc82b9185a360a457cb57283519c56d0e45a7e214280933ba276b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9cf106a6e8ac6d02b391d72f89ff64a759c3c826486407ab9f0ab8665ef35a23
MD5 c9e0a394a77b81c49a2cf0d3a15f6903
BLAKE2b-256 1d1ddf9460cf947ed5d22f9990888911bef4f35c2fa363bed72a137c36b9048e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6020c73d3758a50ece696ad7eee647f797a0ce6181f2cdf1c8705838371e184d
MD5 053a9558607fa2a8e577517d938982a1
BLAKE2b-256 4c8a05e66308da3b008cdb2ad2755ed957b87f8b0ae6027077f017c546891936

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8631d1aaeab76681f134c2625592fe17cbad28e85bcbfe46dcd5b31dcc4e7b20
MD5 df504306fe3f09236e3666be8ef6e4af
BLAKE2b-256 1e8cd0f0317e25cac44620eb0a08c9e5a4817d38e5538dc95de8c25a693571fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 75c2869ccd636398c470d06670a2b3a6f18f916c1fc45bcbd5aec43a50975cd6
MD5 25579399e225720b296bef920f42683e
BLAKE2b-256 b6e952df95227ef05108e9282cd8daee4c433dfc2776caa83088917b17095db5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a078a66a467d4d3f602789701faf7709d04e9b4f153c6dea7547f97cbb52daaf
MD5 2d597786dc645cbbca9d19b2e7d917da
BLAKE2b-256 ee4c9fb9eaf498b4ee6f5b347064866460e60a76f8b73d376c06f013f82985cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec03a1500a6ded6092e8585f3295abdf5c7f49680c42770c23d44911e5e811c1
MD5 13c3c98eaceb093e4420122fef15dcfc
BLAKE2b-256 e1fe32a6f69c4fba68e7eea0e802a455f47e1db5c898ee96515d653b786a4e52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a1de8957db4da06d2f3cd881162052b8137aa475b83202e080569a448c4bf790
MD5 14782e501bc9016e2bfc1d5a37dada1c
BLAKE2b-256 20098c5ccca280c113c6577c3e6db0a5f884d5155f431a8d8108bfef901231d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c0a63e21b3be55fa6c972478a6f39b87c40cb1f1e416ed7e2270bd5a9a2600c7
MD5 6d47c2bc1b87757a02f14a6f8332cbc3
BLAKE2b-256 291e2fcf22d942890ab1f0c8d3f197f0b49439d7e3c29d0dcc06664e2a98709d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 82da77721dfbfcfd4fcc53e1a4a9c64370a3b38c4ce0b173d0731b98eb8c0736
MD5 826cc09c67c24873a666147746c90506
BLAKE2b-256 6365673844b8ecd669609de0556670daa9163b8ae4d104982fc21f7552bdda01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6617dfbd0a151d43af307b72b9698ae61fac2e0548c762a99bff0a0a253505e7
MD5 67479e4a307795ed8683abfb7025e51e
BLAKE2b-256 f999b403b816f261772f13e33ce989496e9d15fd90920700014d9f46d1960c6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dbbb01c586fdf1dd93506ca69561d1eaa8600c3e0adb7c902a209784cf41ea92
MD5 2001751168d97ebd6b207e1b289dc1fb
BLAKE2b-256 16091671560011fe808224c0a4e3a868e13d00f1fc62feee8713db80554d81ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efd5ce98687c22452523101530d99f8ac5327dffd2eb89cf1371ea88cc85973f
MD5 b04f707e08ca1dd1474cf8127a4ee63e
BLAKE2b-256 8b8d9c0924719556d21f2e726551b6244b1148dd56b7779b20c24794216618ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 150020fb8414d8fcc081634e21d4365c145fff76954602f4c57ec8c29ea23baf
MD5 bd79d81943844449d4b6c71afeb1a544
BLAKE2b-256 0ab4688d89927c63226c3ad64b11a34aeda168f58861d91c2fea3e27dc88b787

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d13c7c143606174c764711955cfb9333249d8fd6493e1474f2887f00a0d7189f
MD5 f635362708e7a7e10e89476ff803ce10
BLAKE2b-256 c916c1200d222cb3021f91e020c99fc030cead7b9a7b7808357a32142d2a314e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a5c7c4001713b0da2ea00c968f33bcbc803e9176ee9e9b730f9bbd087ad1c27
MD5 ffe8981b0aaa524872e0d906c950bd5d
BLAKE2b-256 b22c3629a50146715b38dc3335cc4046243c25d028c85bf5bc2230c859cbd550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ca329ed320f8985387cfd18300f41813420f3ae996d3587d432eb228573d081
MD5 4ed02aa53f9856806150f6cac0b6a87e
BLAKE2b-256 e2ab3deda21c25189771a4172938c73f414f9c13816c0ca2169e36638d0e2568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f68210a8ade1791af4c3abec4b565a191374ff94fba16740c459468f932e5933
MD5 a54e566bb5920efc4ab2183974624e0a
BLAKE2b-256 9ef38148da7d70f3a678aacb6ff2273959f6cd48769f0ad926376e91b28fe430

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 01ce94151d5f48e8727169bb9baa90130dbda40017eb67e907a0e012a2826a16
MD5 c1c809816231fa428d7b94e400c9589f
BLAKE2b-256 7e353b2f86a73b8b342eac5605050f1fc22810ecde7ee1b3667403f38212e66a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 132f0ade661e92e51fa7e008840a6ca5720cb8fa8eafe6f83b6167c293b2659a
MD5 c64e42c5c357f227828e04191d2e4155
BLAKE2b-256 f82c236be0a5a600d3d172a9941747fc9dbbec96519e151edf16e1943cb238df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e47cbbf4b7e850dcdce1b0c3ac9165140eed557488827ba39401983880ac7341
MD5 c870dac07ac451e63aa729e9249e8a00
BLAKE2b-256 247bf7753e54ff9342714c0e378dfefcb9cbf2c863b7a88dbbbd1d0cf4270275

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c12c2a95fa21bcd26725627d8569d4a27268c017c479fd9aff08a9cd88e2022f
MD5 202a7caf284613cfe8d553b313608873
BLAKE2b-256 0e4877140ac19a6b8589a555d2d98ed7f47030b9590cd5bd31f43824c7d130bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2227dbf7326d35214ea113aa3e676868831c3108f0d1f7998d6cbeca637967a9
MD5 9a8261a39b34559cd521e79f1feb5549
BLAKE2b-256 fa429cf0df9cb0509bf504d99ff35a9b7e6befe2c1d983c977d9d1874b4b052c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 225ca508b2fc2ec976310e1b074ea9f3c845c165c4a70b2d2199922d66d4c2dc
MD5 a8a39c062d6bca16863c1775d4bb52db
BLAKE2b-256 883e2507a597ae4562f0b372d13aa4f3d0429d726980735edc598714fa734d64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ae12601c57711ba2fa75a28300e8fcdfae9c15c7f583e8293e239fd80b0f592
MD5 8aa4ccda81ef374bd8d8e884954f4991
BLAKE2b-256 39a49d0c824f5e7375af60570342e4edd87bd8c4290d80f37e2c47aa740e1443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65983e4bacd37077aefdc0ba7c3bdcdab06b80a3ccaab83b437ac07606abaef0
MD5 4f9dac7b1329d4cadee9da4feda3c9dd
BLAKE2b-256 c58396bd5bd8cd88dd791ee4bdbf39800bdc6a119b5aec44377d9023645c517c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c8705e0193f0ebc53c737feb301e2c8d6ce06b04d67ec29b2ba10473e9e34a9
MD5 15572278fd9c5c8ded03c940268b696b
BLAKE2b-256 4f1309d88ef5040bd70d07262dc7a2d4d1a840cabb2d1967c321106eba48b60f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0482e3b3fd3e1dcbf3b24b69d9c8394b9f290c7dd2d3984331f76cfe89d8f8a6
MD5 4a8bc81230e3b1ec70fc8ebf918a3ed6
BLAKE2b-256 5b90de65e29b5ed0fba88f13b263b08fd9cc1bba4ef8e3d6d6dfd7bfc32517ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6ffa34753fccf2349aa5dde9cd226743a2600b5e41310b659b04947e57cad94b
MD5 b21d374692376e5f3d9b8ead9e2dba65
BLAKE2b-256 51122a554b7a160ff70d1292e4da0e2080cd2f983c31a570fb76f85005af77b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b109dc351356e0c2b2b7da5422025a0f5e33c702758b75aa56b4987cc2ac4f5e
MD5 c8273c668c5f269f6501b00ee4a3e5d7
BLAKE2b-256 852ee08f73e7962e25c677763e87398ce8420f737fbd4133868fd91cf0dddd5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 583d453e78f4c87b4c7800da0f59049a79a3291f249f554d30cedf26186c1b59
MD5 d653f6bbfc90bd5df17efd2f5ff44db1
BLAKE2b-256 9ac0b3b17f69786e39a1971e0d1aecb1cf46994ce80dd66839a982cafd0d1ebc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 146683af40ffcf44105581756739f7af5f57875edd23afd725de0e4b96bfbf73
MD5 f547098366544b702e397b15288a9ef8
BLAKE2b-256 066cc72ac3b94c6332b861c90f76081bc9e4bab22a7e5b8ae1832d176cf75aa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f979ef03e24f45805101c0209a211f036b49d042e21e81d0b0a378e657ab074
MD5 d37e130880d5315e0fc6e47b81d06b5f
BLAKE2b-256 fca1eb96ca577073dd8b19fae3a9c300ec823974e4e0bba2a1420edb7bec4131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1d3f7de1a3631ca03d470346229a7011eabe2b57a13f269b76606b923c5b240c
MD5 c3230582dab87672cfaae0ab9485dcfa
BLAKE2b-256 56a110708589984d7a8e034b9cb043effb561e982bbd634f0974e6a044a5213a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 132d098e495e69232538713f3c980a80f5b0d1c4eba1c11024855ca070e8bce9
MD5 eb1529e64d3788c6c65c8beb04c1dc92
BLAKE2b-256 e58c277d7335ac589e9e71cbad1e7c59bc4858f766ad2dc75372f5d0f8ce7d31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2456fc260a3ff806ddb139096423e95b20367c1111189fee5df0623903681040
MD5 e378ec9a3f88edfd773ef0eec9c82f13
BLAKE2b-256 8f8734ed17d1cb83e605748f24ef1fb32657206b8b3a1f8ff9816b980a8fc553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1c24929bb686b7157b4ff7e38751a3ce1471d932dbfeb7e103dcf9a6bc1ed767
MD5 4764b13fc270c59d177705bf5dfbbfe6
BLAKE2b-256 388f1e1146af3bfbe4b527d143e897d66299424fb9fa4b8bed3cf59f209bd176

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d08a783464351257ea68848d3bb86921624936b336d639d8223be6e54a2f0a3
MD5 e5bbd0e768a29ca9a3d4fb85ffe69912
BLAKE2b-256 4aeab773d94e44df0abc0920866b270d65859ee2c6f387d509707decef758414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 843fe91253bb3f12889fd6069bffdb9758b03f1882d532a383e6d06a2564867d
MD5 a7d53d59b786ad4df1c96cd89e31fac2
BLAKE2b-256 35e1345c2ebaa9cc2eae0650e4503b239d96a4004da06f28ebc834f0496e2871

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 454055651eb20e764b3e9f8eb5e9b1d33d814658dd79fcc56caf531692adc150
MD5 9d3afa86d445d439d1f94ef55f5c2e03
BLAKE2b-256 0b868803284cd9a4fb948d969742f6fdccafb094fad6983afec2280305c2d86d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e32a5f9bcd3212c18b8d3450b67b43ddd451f9378984f14102938f2b3fe386fe
MD5 f4cc7eef84a5d3c61e426f7f17e23226
BLAKE2b-256 e5545faf9e1569b0c9642d2a125226a42d3b9b1bd12db51454e279f98de45fb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a3929dc569fe1e1e1e8df12c02c9b61d983605df93ce961666263baf45efad50
MD5 ad61fa21f410dcef3edd76d199b29d2c
BLAKE2b-256 645f4a8798aa0c7033b4d2dfac0693ce4e8d10cdbf5f0c378cb87804529ea0da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c1fdc4f9488e90545671e7caabd0e706d88ca6e4f8b278608ab28a82fec1363e
MD5 7894ba74652da6527993bb0980e5faaa
BLAKE2b-256 8dde54fa97d0e75b158fb895120a909c6248f8591249e404b4edfc683930eca5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6e587205e6933e129c817856491c80b19d8c14b8852eb810ae21d0b84000b9ef
MD5 c4950415bb6fe5f779e9f5a7f90bff35
BLAKE2b-256 61a4cf3d70bccd76e94649100e0c878840ac5afb84d63873958be3907a711d31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 349714f3b6e49ddca874f9a306d25654bafccd13735cdba0b53e67f9d2dd87d6
MD5 6dc578493ae1322a1645f3a2631ef099
BLAKE2b-256 ba39027eb2d20fc87f77f002b2b80fd17f4cc2f27364ae4f50ced77e24cd488c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f859688935bc21447b0fecc16e8160c1c8ddf09ac829043db9722d53794a38a1
MD5 db9b5a2eb9306edffa1c69baded32abb
BLAKE2b-256 c0e07f65475552a2151cfad48bd022c7f7969d9d40ba6d585319420d0b8217e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6aefa222028b4d92e2772dc9e0f1f551a564bfe9c67a8f019d627afa723427a
MD5 0d6a717fff16d6954b2a34f9547a4586
BLAKE2b-256 0f20528accbcc5f01363b6bd718617527ce31ed4f67ed89c84ff8c50d6987b02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f517bd267d9ed4c88d9896d8b28bb29bc51f08b95ba9d688f2cde3cb9a7f0fc6
MD5 9fb1bc39ed107e1d8accaf1d65d73052
BLAKE2b-256 2e0bbfcceef11dfa3c6c9fb8107c6a936866a3fbd39bcccc119130869b314427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 663c57be309123fdaba87df9d7ba8ddbed94def3db6d486110a602ba1a787cde
MD5 813ad40d33415fb055e66cf08af20c5f
BLAKE2b-256 6f6d6cab89e0875c3db2695d09cd8a9bc5aed26bc4c71a678de81f0ed626dd4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3a28738d939931436afe11cd3a3fb6cb81a560d4bbd235d1038c8036984aa83
MD5 f47cd8eb844e8cb8331c67e6a44ad155
BLAKE2b-256 abdb49d6158b26d4809437d8e03b7ba10e3959d9e36b188f3748bff7b53b05a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d2582a4e2a7fd2483ea43fbadeb1d512812292856094e9bca7b0fb02d939bea
MD5 4819f6b315a99b1d01a8a24b2c81451f
BLAKE2b-256 11fc7191688ec768e8f1a448ecffdd13038ff1975de725cbdc11923692724065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 574b18814debbe0afe416584af58c3382df9bd6a7b04f8325c9d8b0f645f7448
MD5 31921a31fb7a111501d04061bb1dc0d5
BLAKE2b-256 50465f9f4f2cc03433bdf1425362701149c2a17d3685f65349cae8bc17f8dbba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f3444f2ac3cefdb0a91fb8cacf11e1a74f2e598227b1b9cef584ee7c4d70d13a
MD5 4944b6d78cd4f039a976f7c1aaecb061
BLAKE2b-256 4b05a5cf799d44c9b6ee82a30940fe52fc2289cfb921c7153b61c670edd417be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 350d1d4df8330e500b8fc1f71eafe434413fb3a0f9447adc47a4270f836b8942
MD5 d259c85c2d27b69d9834609e8189acb1
BLAKE2b-256 73f2facad07fba86b843ec6c92f8badc90d927f9cca48132bcb355ef26b4f00b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 eb8eb9ef3b7d8fd1c8f527ced5b54f98b2f0c480122369c79a30b61daa3048e9
MD5 f5fb1b3b4c57d4c752c3056625ef76da
BLAKE2b-256 c8fdccafbad5493c574d3d1b0df70b914b511e3b41ebdb7978ef7d6891116871

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8df2e2a0eb49f4c9588e7f67610c76ab665e5aaeb15e1c56df6234ac2f3d36ce
MD5 c661eb3c01c004038252ce01a5ea636c
BLAKE2b-256 c74087d43843b93075c2613917a8cc1d1e2d7fea99400a1aa31bdc4f1013db45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7dc637185b49bf8d5dec976bc11eb44b22d4eaa06255cc4ebc91cabacb83b781
MD5 9b88ad1098db067f497d7c7441638b98
BLAKE2b-256 1be1f4bbadadab1bb2cdb5abe7c9ca2d17916c08bce8754193578154649ebe0b

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