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

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyasic_rs-0.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (4.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyasic_rs-0.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (4.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyasic_rs-0.5.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pyasic_rs-0.5.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pyasic_rs-0.5.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (4.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl (4.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pyasic_rs-0.5.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (4.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (4.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyasic_rs-0.5.0-cp314-cp314t-musllinux_1_2_i686.whl (4.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyasic_rs-0.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyasic_rs-0.5.0-cp314-cp314t-manylinux_2_28_s390x.whl (4.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pyasic_rs-0.5.0-cp314-cp314t-manylinux_2_28_ppc64le.whl (4.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.0-cp314-cp314t-manylinux_2_28_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.0-cp314-cp314t-manylinux_2_28_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.0-cp314-cp314-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.14Windows x86-64

pyasic_rs-0.5.0-cp314-cp314-win32.whl (4.1 MB view details)

Uploaded CPython 3.14Windows x86

pyasic_rs-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyasic_rs-0.5.0-cp314-cp314-musllinux_1_2_i686.whl (4.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pyasic_rs-0.5.0-cp314-cp314-musllinux_1_2_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyasic_rs-0.5.0-cp314-cp314-manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pyasic_rs-0.5.0-cp314-cp314-manylinux_2_28_s390x.whl (4.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pyasic_rs-0.5.0-cp314-cp314-manylinux_2_28_ppc64le.whl (4.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.0-cp314-cp314-manylinux_2_28_i686.whl (4.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pyasic_rs-0.5.0-cp314-cp314-manylinux_2_28_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.0-cp314-cp314-manylinux_2_28_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.0-cp314-cp314-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyasic_rs-0.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyasic_rs-0.5.0-cp313-cp313t-musllinux_1_2_i686.whl (4.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyasic_rs-0.5.0-cp313-cp313t-musllinux_1_2_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyasic_rs-0.5.0-cp313-cp313t-manylinux_2_28_s390x.whl (4.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pyasic_rs-0.5.0-cp313-cp313t-manylinux_2_28_ppc64le.whl (4.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.0-cp313-cp313t-manylinux_2_28_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.0-cp313-cp313t-manylinux_2_28_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.0-cp313-cp313-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.13Windows x86-64

pyasic_rs-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyasic_rs-0.5.0-cp313-cp313-musllinux_1_2_i686.whl (4.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyasic_rs-0.5.0-cp313-cp313-musllinux_1_2_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyasic_rs-0.5.0-cp313-cp313-manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pyasic_rs-0.5.0-cp313-cp313-manylinux_2_28_s390x.whl (4.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pyasic_rs-0.5.0-cp313-cp313-manylinux_2_28_ppc64le.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.0-cp313-cp313-manylinux_2_28_i686.whl (4.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pyasic_rs-0.5.0-cp313-cp313-manylinux_2_28_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.0-cp313-cp313-manylinux_2_28_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyasic_rs-0.5.0-cp312-cp312-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.12Windows x86-64

pyasic_rs-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyasic_rs-0.5.0-cp312-cp312-musllinux_1_2_i686.whl (4.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyasic_rs-0.5.0-cp312-cp312-musllinux_1_2_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyasic_rs-0.5.0-cp312-cp312-manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pyasic_rs-0.5.0-cp312-cp312-manylinux_2_28_s390x.whl (4.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pyasic_rs-0.5.0-cp312-cp312-manylinux_2_28_ppc64le.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.0-cp312-cp312-manylinux_2_28_i686.whl (4.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pyasic_rs-0.5.0-cp312-cp312-manylinux_2_28_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.0-cp312-cp312-manylinux_2_28_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyasic_rs-0.5.0-cp311-cp311-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.11Windows x86-64

pyasic_rs-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyasic_rs-0.5.0-cp311-cp311-musllinux_1_2_i686.whl (4.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyasic_rs-0.5.0-cp311-cp311-musllinux_1_2_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyasic_rs-0.5.0-cp311-cp311-manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pyasic_rs-0.5.0-cp311-cp311-manylinux_2_28_s390x.whl (4.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pyasic_rs-0.5.0-cp311-cp311-manylinux_2_28_ppc64le.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.5.0-cp311-cp311-manylinux_2_28_i686.whl (4.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pyasic_rs-0.5.0-cp311-cp311-manylinux_2_28_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.5.0-cp311-cp311-manylinux_2_28_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyasic_rs-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyasic_rs-0.5.0.tar.gz
Algorithm Hash digest
SHA256 84b9afbdcdef181fe9e21ceff71b0cfb69294b734956d9c54070bc5173ea24fd
MD5 1d534b1e456e5dd47875fb3d50542417
BLAKE2b-256 cf83ccd75e6c58b5b6dbb6c51f9257b4746ad787f50362beaf4662bcdb69acd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 647af5a478e14feca6f9ef1af87f40f8e0978c047df0864e3a1d82ae0324baf6
MD5 df34f0835453ee35fb36cefb3bb9bc9e
BLAKE2b-256 c84141fa4975bb72d6778796aaf2864f8dce65449541d551a769b04d3556a397

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fcce029733140b0914a4065e006e7dbb10fe0204d9d445759eb55b2b8a9cf0f4
MD5 73d7c302d78f059ae453c43402639c22
BLAKE2b-256 7bc25edada868cc810df91b6c4e1f883e37d83cb42104749d1facd23f788a0fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f0f14d978d5679b51ebe0237f0a7e8c0910589321b0b4658cfb394e4747f8a63
MD5 1062e86f6fbd84a903478a418d379ce5
BLAKE2b-256 6e442d1db575687a23cb81a6520a75395c1e5044de2b0a5255fd92dd15250f99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d4323b3cc85ce324d0c2d87e28d6b4ba7904aa0a7f58c09728f1e42254f09e5
MD5 5f4638ac1b6eeec9b2870137a4f61a42
BLAKE2b-256 400a7c39a78db5e33eca1c8ec6bb74b1ea0c7e8fa802bff3c5909d0e8544e813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d3d27555ada2e09521f43ccb4617cacfd69a22dfabffbd6ee38e515c8649c84
MD5 a420564baeec29aa6dc3d6455cf193a7
BLAKE2b-256 e45528fd369d65aac0077eec11017c90fe49771d29771ce5017bb50357c4bb36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c94c6b5351bba4f0f24421e6e6af448b36545b7448103f836afff0f955e3f429
MD5 06d0120c9287ec36cf0b5688e9f6854f
BLAKE2b-256 ae16ad10f02b56e7ddbe4f86bf2de389d1d28484110006d8e13a58402e504b84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0b0b9bc4c0659c958cfcc3bcade85ebc01cd9e5d9417f42d3e6596c483f74c8d
MD5 3bfa6097900f3f613ba8db3debe89251
BLAKE2b-256 3563c9d33a3b7dfaacd98ae720af303be3cd4f7be1bcd8b20c09882103b340ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 dc6d311356916e1d6c1766e37091c26c7fb172665747a0d105e69bbe19dcbfd3
MD5 51b3d6bdbb996c974da5919525729b17
BLAKE2b-256 bb5dd78f52ddbde3ca307d3649dccbaffa37db21e06320ef1d6aa85412436106

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 243271e4ff793bb849d1fd53cacf5e24c7452be02de44c8b59f9234bcae4d5d0
MD5 b9fb14fb727fd76cecae3dbcd10bbac1
BLAKE2b-256 9980a630cf6d956afa04ecf60e4a5ab387aae730bf3bdf8ca3381dfdd8328afb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c3369eb55957bfef04df8d7430be554747382dbf439bb7ad291c92bd49bcdf3
MD5 eff727130b916f15096cbb09eb87a01f
BLAKE2b-256 9e1cf0a8ae61c2e70e345e958a9d1ef822c4810e3ea663defa9129614f8c4c84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 631c572aa482e42983b1ee882a9fdfd91b3fa2e213a95cbfa82e8acb999e9958
MD5 d16f2c9858b4be291cee4e94f7b31ecf
BLAKE2b-256 d6130c09f24b67bd171b7e1ccf56bb99096b4a83fceafff242076deb60283714

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 46fce359e69431eb7523df4227b539bdc01f05ac1a2653e0abb0c32a377abdd3
MD5 89893404c7d0ccaba964e1ebd09d38ad
BLAKE2b-256 61999c1a3f6bb27fd4579f8834ef0146038b0a67cec69a188fa6dfe568881120

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d5f68232aa0235b58dedd559f40f814d93d69f4e518accebd52a1c2bb5848e6d
MD5 0e66545b1aa85be0f2236c9088a61d44
BLAKE2b-256 6aa07648c0eb1e96f163e24fc7db22393972c5231a3b1e0edecd1ce26da90108

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4398b1a0fbe65f381628b4c544cbf2c7072596b2b6d90ed2c621a6178a6499a5
MD5 25e183e78de0d6624d0a6ddb2897f0d8
BLAKE2b-256 41c6204f92fa26250e4ed102cfd333abe044e06da9933a2e8a8dd417c9693af7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 77c8c7d73fc26b6b8620ec92dce8941b6477720c69f8062b712a60548ff4ca53
MD5 03b51620a66c3da65ed173434162add2
BLAKE2b-256 c1ecb702482ffc59963ed8224863be78e8d8496d01ff9c7d27a5bd2b270db238

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8246b3f70544b4e331c2227fac11dc2d7d560cd923813a9f1f1c2ae380ccc8fb
MD5 3e16a7fa33e18afd0b8385d62b0c2912
BLAKE2b-256 d0fef845bea01eb1f0c6eda21b8ed4bd09d20fa12159272355654c29bee21b8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b4077326f7c686615fc30e707569cb9f6edcfb2fb1ee12e00fe4342242b85c5e
MD5 7749b81e193830e3beef16ef0fb0337b
BLAKE2b-256 d6cc01d5c8fe31618b297a3a70aebdad91af245b6507b4814ae7c6f316865ec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 92bb7e58e70f1422916608c18a4af38485fb0ac2083a758530594114ed7d2d6e
MD5 bcf8f680677e289356cb94a7f5c9e810
BLAKE2b-256 3bc7aa7d28581280c12dd32f0287ff0f913b1e0e30deb1b39af556f985ceff02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 29d43988d7d99468514db4942493aaa26cb33cec3d54c5530803e9e8a66d0329
MD5 ff7b62e4baab8516782d41e4c529fa9a
BLAKE2b-256 d749047f58c7a27ff261a33a4db09c2483a63dc8f059ab8493f1d87225453306

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f30d4c0369ddd3e1948bca1384962242f9a5cb95a5b965f69f0e31306fff2a11
MD5 709b07855e4c6059b9b3b6d39dad0ec7
BLAKE2b-256 7ee48357ec83e46cd6706172bd3bfd07056a932772af0d2456670b2275a6aece

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7423e0c31f78a438b267e9bbf8b5f97bba58fa5cd432d10187448bb9d6be8b3b
MD5 c4223e050a9f0706bb22395ae5141c4f
BLAKE2b-256 afa1e9e592c4caebe941d1ccc4f194ee8062a08d201ea1c5cba155d44a525b42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12a5532d87745d71763e84f8419568fe985f89391d3b6c4afb33d07cb8a16475
MD5 f9ff0f5b053654023ebec84d903a819a
BLAKE2b-256 bf0f3a2462017e9534e64f9833705cfcdc9719926eac5d54fef1fb00c7e6a482

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0d6a3eccd0ae3247555c409b1000e13f69858f365a5c13005bcd980c5b31f7a6
MD5 7303127d896037db55a94cf5484a34d9
BLAKE2b-256 6c1a5a6e36371557003478cd3caa743d2a0e7daa01ff422e28adcaaf56e7d720

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 589719993433a7ed03f163f869498d676517b394ac30e60383479e8e9e94d6dc
MD5 f87bb7b9cae38a5745c8014c3800acef
BLAKE2b-256 593bb324aedbafa5f0d3439fba87d2b7e4850896ed369fa897c83067a99eefe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 437b37a242a0ec363ef84d8ecf598a1236e7fa72d8b4b99747b91f57c40b0f82
MD5 1f58442066a38a96f779e88c2a2e5c62
BLAKE2b-256 8e5e91364c5fb6159825ae0ea9355dc0769139f6923383fc2256d92f0bb14163

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4334a47413e90554fec60d8aa6ce0035dfd2dfe055ee2fa7118a96d2bdba568c
MD5 a37c0b9c9daf3f5ca91c6e43b2454126
BLAKE2b-256 7e548ad5b88b0a7a0ca7d151e905edc451e877eb1081f8a10a565bfc0d2f92a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 35b31b7df6c7081b05ecf0819ed773b8fbe6aca9149dff87ed04ab18e9d012df
MD5 0806051e36d21ba1cb6158a0bea350af
BLAKE2b-256 8c04552aef778cc3074ce150bfb07b6cef07973316842d60c3a0ae5f2a620e95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d7511aea0448615dff001d0cabc60ce86f2b13666e33421aed57612bb4dd698e
MD5 37b87abdb7548fbfd28437726e8ab647
BLAKE2b-256 b30872c2b1eed7d6ebe277167c44a3faf79395beabb6d9c828c4bbeddff2da21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0e5e9dd25c2cd3d8eecbd5088a2fe54dd873075fc740d056bd871a29bde46280
MD5 3fb09821ec037e157ba1fdc9c042293e
BLAKE2b-256 37dd147a2d64248106f7a79e364098bbf6ca717e2e3aa27bd39969041067f8bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 124756f2e710f7c2369992cc9af7cbc9e359dfcdf429600435263002df46af82
MD5 4301f8f89db9f33c7ac5f7d58486bc0e
BLAKE2b-256 0a1924e307b93f5851f1fe2e6675191689ab795db5747b614d72cad756c899bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c49075a99459bcf61dfe04c513da5d2202bbc6d076c9301ec9895ec7cecf82e
MD5 e854ec8e0b0345b4503c64f1fda28abc
BLAKE2b-256 0c0f7ab2d401626a346ac802e5d5b93aa2b565fe68050a425847fcca37b71717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09c2c725ddb9ba48812be17dce050514070741b5cd443c40576c082a8c928f36
MD5 c74b8d6db354d080efeef3ef2ab17a7e
BLAKE2b-256 e1bc6e76dcac2204c52187ce8ab993ca84effc4fc8f250def3fa8755e851d864

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c61e42fde30dcf2f9579d225142833b8b5d619eb8ac4b51f48436141f23a16a1
MD5 e14dcb2b323118d090cf225e7643aa82
BLAKE2b-256 a9f0e3e6b26e3fb2bbef2c53a74f8b445e339526eee25ea27dab178e6677a06c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1a3a5fce156f10716620aecad29337786750e71f3afb2d7c185165e8c49a8bea
MD5 390843ecd3060654232e5ceb24ddc64b
BLAKE2b-256 ef2e0d263bf919161f3da2d188105cd0d4f0d94eb343be38e33e1eb10c177d68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db332576dfb83f572d67a158ae7dfca140616e9d530a064f84cdaee4f53e1fcf
MD5 fc557d57d72acaa0049508d5b1d8832d
BLAKE2b-256 a91918416f79a7bd9ce92910cc3eecdac244e8b23ed88745839df4dbf0eb17b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fac518e168e06f0c19a8239e156deee3102876b50719887db447860840f62a38
MD5 f90849b3b6b256fdc47621d327558fdc
BLAKE2b-256 282dd0a76cbd02b12a033f9536463fdec60cb92278acffd7711aa5535c24a92b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 88d6e1c2bb73cdf188b77f6998a1aa6b6dcd1474bc8ceb4c1ce646e4f15a5b7d
MD5 9f2232685827afc2e0b9331cf54a031d
BLAKE2b-256 ebe8df9eaf0f631082aaac01cff4b609750e2d77dbe695231540b70ead6292db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c2ae7f98be4f0a3ec74eb872c8fa1beea312c9b2fcaa16d9979992e75fd37abf
MD5 ff7894ffa27509ccd4464ab7d3f37a3e
BLAKE2b-256 4c88d455fd4e5a9aaebfa00715b78e9543c28177286476e2990153207ee23df4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06f3c76ccef006fd2352490716e1e6c2d15dd4ad0c4d8f5443d308fc9d81b5f0
MD5 a2dedf81aeba2011320cc46f59e2df81
BLAKE2b-256 79a57cfcbe56727f42638bcb748f3cf37d78c2e6fb300dc0b842f0ccfac9fea0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 47c09ad21b16d51604005db387fcdca5713a6e5848766a8839d1cec05fe7c5cc
MD5 51c2f7f0bf0d088b67d1b298b582c0f1
BLAKE2b-256 7d424dc3c4a63e0ee34d0ac49b71b9d564169a1b5713587ea91986773edc6357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b21dd4d25dd46e61964e477f0540e6c9e643ae7f89002acf569b6c823398e3f8
MD5 c6592c3144e737850b49950b5261dcef
BLAKE2b-256 9f816401ce88b9387fde8fb00b1a046e30235973a8ca31df6022a9b1e4c62b80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5133a9043c0c3a0e311a0e048cd098291ed6dac8e649952a7f1065e081c6800d
MD5 a3ab269758f885aeaf747a99ee2cb6c3
BLAKE2b-256 fe77a9c9f65527ed7e44f74d93377aacd71821b79bdfa583db2f39ae019bbcf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e89c91923f037371a0a18c7ba66fa2c245c7e699a42d4c05f2e935f49734864a
MD5 fd7c42b1d10f30bd23b06b92915c50b2
BLAKE2b-256 bc7433c0670175d1bb9d48ef44ed2ace10668ff2711386d46979d2e7faf095bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc45c33bad17fe1f49ea0e57a80b0dda3a5cb48588b82bf154370bb0eec4235a
MD5 75e5ed165e18a6a0c11f103927483321
BLAKE2b-256 5c89df0110a3bf0048762f709791d25d565020e9a28252656030ef4958f07f76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f5f573d443090d500736ec77ed2621cf9df4d2e82732549f721993da439c221
MD5 647b2cd3db0e54422065ebed76962fcf
BLAKE2b-256 a7e2bc5c8477a433a4ce7b76b9e3ff7f0a1aada8b1a1c69230f9ace9b3f83943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 72c4c2179fb12958924520f7ce0e0c7ffc6ccc7b383404b59e6d56e8599ac028
MD5 a9cda3159b69e50cb371c28f2834bde5
BLAKE2b-256 45d635e9ba768705817d134016a8e4188ecc2f6979b0ab4afed8732411361e16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4702541b84266a8293883643489bccd8c25011b0f9c8aed12101ae43fdcf0e61
MD5 ba9cd4b1571f59ef735eee80e8be5f10
BLAKE2b-256 d6e4d359a60c28ce321586fa9d83fe25175beb49ef7e85036ef31e446b78509e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8880bd8036ee0e68a86fab88c4f8e2052f68cee8864420a7e3e3975dfa08b5bf
MD5 1c0d65a012ccefcd5d0e01c8419788d6
BLAKE2b-256 abe2622823844539cdcc11ec59b392dbe08a2b519d2652f6c24b6306f38f762c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e557f677a63b744921383adcd2d505f2d222ec54a5f4fae31e6f10a1459c41f3
MD5 4a3e1c96f075bb4b61cc496c8dd7dd11
BLAKE2b-256 85d1851b093db86af3ea5160ea8a3a1ee6a1993afd644a19d44e25061e4bc6b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 51422f6243be17fa5b550418737460910fd06f9fb89a22fb53d32289d75fe774
MD5 15e47f68e0dba8deb6b5b07ca57c096e
BLAKE2b-256 daa7dc32d22e71aea0c80b4d24781163b9c9e244a191701c3de8974d14bc3283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5609a449c2890c17789aa6e85369da6ed569d16d1f2b0c19285f76fbbeb9f60d
MD5 35e5772cc6db7cd2de940eec8a379f5f
BLAKE2b-256 d572794b3fb3df6716b44fee9f665aa5444599bcb592fb8a5497261d9c681a1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 835cbb8f219851c60e387bf6be9e7bdbc644841c6cfaeeb2184cb5e51ef7931a
MD5 f9a76e44247a10e37dbc8ccfcc7d5fd9
BLAKE2b-256 caa84da54c0a6b79ac470e87f2947d09d7a305eb15542ec8037932e24e0cfe93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41ebac98157b75142d7026d6a5df86edfa1a2934d66623e6f7cd416744a582af
MD5 e54638332808ad90ca20fa5969bfeb38
BLAKE2b-256 49b9d082049f2e9e2b42a3b27a5638350c8f80b2a5093df2e525361972430b33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b9b5b9bd8500aede3babe89febb1da54434e5a96489011433f4e48eae8cfd02b
MD5 526e8a259f1b74aa76df80bd26b14abc
BLAKE2b-256 6f65d09dac5c07d677f05d5620f773ccd08646fa782e200c321e2e319898e7e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4cd28e5807ddc2ed9ee1c74c0e3e36d7439b9e8dd099a92bcb18f40e52b5c823
MD5 379d5e86c1372bd74e74862738c963a7
BLAKE2b-256 15d533614c67f32688b760edc283caab673a87e34a25fd278ff660b8a90c3f70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6bae5060f2db691554369d1390e120c75272b595cd2dda3a9dffb6d92067672
MD5 9204065ea78409e820f1d275901da10b
BLAKE2b-256 c1d17b023a9adb68ced6e663d44188a435764291eebb4b02293a7df746cb3381

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff4e6b012192033fc72db31944d609bb99102e560478a7f68ee1f00cc1ab3151
MD5 b17fc909fc1ab8df96d9f6899afc1259
BLAKE2b-256 dddb2a9f6e05fbd321c6dce3e69f76a143bf592299c17b6d172f695199332269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 071fc76bebc590669af1262913b6a8f198dcb2c6a2e6d00cb89416bc394398cd
MD5 ea7ab63d3f8e0eaaff1e7f48ed9dae30
BLAKE2b-256 1f5d1ffcca5af2b45ce375c23338179725942704576a4fb1db3bd64d885441e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 40857b6f1ce36b5c16be0f1c27f43f082cf6475aaf04190e9930d05348a99f76
MD5 c3ad08e11a075f5bfe32e0b31a77d8c0
BLAKE2b-256 5f8103df1f8c4d93593866c332b61de69c50674d10bd4d71d3838575d3dfabab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3544c9255a3122ff9affcbc1e5835e2fb1da0a24d1599a0c0e93a751a9422cf5
MD5 ad07b371f3b3fc2eb3df71208a1aa914
BLAKE2b-256 f4e45a85d9935e67f9e47cce50dbe7c7774e7fa27cb3c535b6f9eeca431ad816

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4a48416ec2965fa4c7f1f758880d6d981bba2c0a24a6402d9611bd30fc1d5b03
MD5 731b11e6f0c2790f021400a95ec25b91
BLAKE2b-256 d5483dece5bbdc05848c98e6343a95b2c939ce420e77d59b2fbd8a7efc15c9c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3eb2cd2a917c4d5e836d97756aa2af3bf5e744156f121c297a49726f5caa737
MD5 46ae20432a1f79aaab77c4db6ecd74ee
BLAKE2b-256 b4043e8efc085cb106eb0671b19edf8af4a7f78c35de1a54c7b8f3db75ca3596

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1751ec9cf96291adcfac60405fcfaf8641fd2ab3394559ad0141a006392cc7a4
MD5 ea4abc1a69ab7fd20d1fe86087c8aabe
BLAKE2b-256 7a695430415b4d05e09a600429294b42b496df373a773dda01a12d29aa87dee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0096f896194c5c9989dc7ca8d6a06b7185f0fcf224bc7ac35a329ef49f36d818
MD5 472f8eb88e086732561c2b3c4d01ed52
BLAKE2b-256 ae30239427bb1b85989b9f16fe713778ce6163d526dbf12ca6a512fea02f72e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90c7b10033cf13f053128f53fee8f129210dc50abff6cad92582a596ea4d0b62
MD5 3ae9b23453dc67cc3c9e32baac520e29
BLAKE2b-256 97fb3cfbdce1ac9d96ad72165206f2e5ee61ef605ab9e9c9d7f5a4d9144a7a15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9d2c11e105c7fa8039ada61a68126a094b418a054a3ddcb58b32cda9ca68cdb
MD5 53b749bd5374431d9665bc487b76fb5a
BLAKE2b-256 0c8d71ac913235b078a2b952acd3dee5edb380fd0f3f2b01a874abfdda6a4833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 82729bd272369b9fe287ea49d848ec78e88ee3d9fcd79bd2b94967c089c708d1
MD5 ed4a8675b3b136f32e4b7fd4e8995167
BLAKE2b-256 63d8fbbe867a107f3e35118a77bc6af0abfad0282dd875d635753fff8c08ac15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9fc1bafd61239151ad4b2825ce32b122b0fcefd0d257710ff595f7cb854bec09
MD5 586d017a90b0fc59094db0e87c433a52
BLAKE2b-256 1e123d7c496e9a5328e9c8f307ec1a047cc995d4b4f17bd705dd47c5e6ae4b13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 67939b616f1a6f7acab2d6e21a0ee65c906714de12a897e4c8ac54e2d9a42b2b
MD5 7be93163b01e093db8b681f27e8febff
BLAKE2b-256 64a360034f1a89ecc8e7b473c4c1ff8d8a580cacf4fc611489d3f465913cd2a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e9229335a93ff240e4080ef4fecc08da6ba8a66a1290efa2a933afe37ff96693
MD5 ab7505a7d838f69df697e3b5d70656c1
BLAKE2b-256 4abc1b3fad0f641f20d1edf4999f6812e73aa52cb6897d1a5e4f44b319037c47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9eaf32201f40b7fa4ae4f57d190b68bf32841ec32c0ea8fc300c77876f752968
MD5 d70e432a5402bca2a9720fb49113837f
BLAKE2b-256 7f5579d01905e1b741f74007b109af60dad4794e78c4553e9a61169558cbb5c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8730a9877b59756f7d7699aa9dd15470d5c72c6d34921830e2310dc9a9c43ea1
MD5 25d050d81c58a58de57ef23990bf6966
BLAKE2b-256 63b6920992aa73db11f746cf12b4c99c6de7f4d8807b5998d256aaeaf98a5faa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c1c6534a7eaf83219985435e29cb043234d8fa516e57a5873df5c6803157442b
MD5 e1dc2922e6b61013394b78593661f1a0
BLAKE2b-256 d64c5479940733b0c6ad8199675bb8af7f171ab04714206b696f3f35b5908d8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aae84e6920c9f4345d21e69f56a73c2b7af02bf38d512f91427dfc3b9378b018
MD5 ff37dfe707b4c8eaa8edf327914a967d
BLAKE2b-256 1b613916381365f6e1f62a1189f370c9298532eb193a1818335afdac94507be9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0a8b150d4ebeeaf0c200c29bf85d95cd8df1ab890af00f439d3d2212e8614d6
MD5 1429f60c0c3da163150e4d3a57e531bf
BLAKE2b-256 a13a1984b50b854322b8cc6e2e0c09c2487ba14cde2755b5a05a336738487f29

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