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.1.5.tar.gz (175.8 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.1.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyasic_rs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyasic_rs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyasic_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (2.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pyasic_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pyasic_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (2.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_28_i686.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pyasic_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyasic_rs-0.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyasic_rs-0.1.5-cp314-cp314t-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyasic_rs-0.1.5-cp314-cp314t-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.1.5-cp314-cp314t-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyasic_rs-0.1.5-cp314-cp314t-manylinux_2_28_s390x.whl (2.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pyasic_rs-0.1.5-cp314-cp314t-manylinux_2_28_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.1.5-cp314-cp314t-manylinux_2_28_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.1.5-cp314-cp314t-manylinux_2_28_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pyasic_rs-0.1.5-cp314-cp314-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.14Windows x86-64

pyasic_rs-0.1.5-cp314-cp314-win32.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86

pyasic_rs-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyasic_rs-0.1.5-cp314-cp314-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pyasic_rs-0.1.5-cp314-cp314-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.1.5-cp314-cp314-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyasic_rs-0.1.5-cp314-cp314-manylinux_2_28_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pyasic_rs-0.1.5-cp314-cp314-manylinux_2_28_s390x.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pyasic_rs-0.1.5-cp314-cp314-manylinux_2_28_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.1.5-cp314-cp314-manylinux_2_28_i686.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pyasic_rs-0.1.5-cp314-cp314-manylinux_2_28_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.1.5-cp314-cp314-manylinux_2_28_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pyasic_rs-0.1.5-cp314-cp314-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyasic_rs-0.1.5-cp313-cp313t-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyasic_rs-0.1.5-cp313-cp313t-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyasic_rs-0.1.5-cp313-cp313t-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.1.5-cp313-cp313t-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyasic_rs-0.1.5-cp313-cp313t-manylinux_2_28_s390x.whl (2.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pyasic_rs-0.1.5-cp313-cp313t-manylinux_2_28_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.1.5-cp313-cp313t-manylinux_2_28_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.1.5-cp313-cp313t-manylinux_2_28_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pyasic_rs-0.1.5-cp313-cp313-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.13Windows x86-64

pyasic_rs-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyasic_rs-0.1.5-cp313-cp313-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyasic_rs-0.1.5-cp313-cp313-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyasic_rs-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pyasic_rs-0.1.5-cp313-cp313-manylinux_2_28_s390x.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pyasic_rs-0.1.5-cp313-cp313-manylinux_2_28_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.1.5-cp313-cp313-manylinux_2_28_i686.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pyasic_rs-0.1.5-cp313-cp313-manylinux_2_28_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.1.5-cp313-cp313-manylinux_2_28_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyasic_rs-0.1.5-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyasic_rs-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyasic_rs-0.1.5-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

pyasic_rs-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyasic_rs-0.1.5-cp312-cp312-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyasic_rs-0.1.5-cp312-cp312-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyasic_rs-0.1.5-cp312-cp312-manylinux_2_28_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pyasic_rs-0.1.5-cp312-cp312-manylinux_2_28_s390x.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pyasic_rs-0.1.5-cp312-cp312-manylinux_2_28_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.1.5-cp312-cp312-manylinux_2_28_i686.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pyasic_rs-0.1.5-cp312-cp312-manylinux_2_28_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.1.5-cp312-cp312-manylinux_2_28_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyasic_rs-0.1.5-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyasic_rs-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyasic_rs-0.1.5-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86-64

pyasic_rs-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyasic_rs-0.1.5-cp311-cp311-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyasic_rs-0.1.5-cp311-cp311-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyasic_rs-0.1.5-cp311-cp311-manylinux_2_28_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pyasic_rs-0.1.5-cp311-cp311-manylinux_2_28_s390x.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pyasic_rs-0.1.5-cp311-cp311-manylinux_2_28_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.1.5-cp311-cp311-manylinux_2_28_i686.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pyasic_rs-0.1.5-cp311-cp311-manylinux_2_28_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.1.5-cp311-cp311-manylinux_2_28_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyasic_rs-0.1.5-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyasic_rs-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pyasic_rs-0.1.5.tar.gz
Algorithm Hash digest
SHA256 6a8c052a5c5c730757584e9ac271a465246aed0d6e31d4f70bbf7e7e801661b5
MD5 cae78a41ca339aa825702712e2108a0b
BLAKE2b-256 68d008a50db55fce5a2dbd45c09d9f03f962ce6815a2e02fdf3eae71aee3720c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c73bbfe18569a01fb1016417c64f4a237d835c1164a7d300d93725cca72605f
MD5 39ed77d185248290012bb3fed09a89bc
BLAKE2b-256 10d5e521f3d9b969f0dfca0d2ddbe227f8caf8c15d10b05cd62b8cb9a730e46e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 641ab0924a03ea73ddd4b62daf28a7916fbc94709ee94c0bc21b506887b2606e
MD5 e1c73d4d652ec817abf25b0dc7671a94
BLAKE2b-256 e7af12a5cf43a07febf0265ea261bee89576ce446007df935149634c38916067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4c905ba450e5191076055fa462f76decebe4d7ea8b731bc5488316928e0b0a05
MD5 4ab98189e019fc915cb8d426b50ee956
BLAKE2b-256 6621438aa20c248bb7e17a3c4564aa68f043383009473fbea4e51a3a7bd0365c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa73dcbcf0f331f047c4681d35669456ac7d71a51f20f69f689a8b37713a1490
MD5 b8ae3fd4bb83b3ae557a3705ac925dfa
BLAKE2b-256 4a3ecbd9e7bfe26e73806ae1df1741035250775b2b5cb96e28e48199016c0eb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 178f9d0d806db8e9ff1a7d4a1b281d6c696fba6bc3d0550af16ccbbac3747a1d
MD5 c2c3c4ff3808e8133c13ed84e4184952
BLAKE2b-256 12f0a6d9c42972ea77a552ba09d4d5931d00b9443d0b8c15cb7c121b0499801a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8a8943e8de16eaf2b71699ba7c76e2da50a45d1e965da35d51e8cb48e88b49af
MD5 ac64f2885b9055fa639022bf3fb3a7d2
BLAKE2b-256 cdca21d3baa9584595b56ef4d451386d42b238fa69a1db6717faf5af2adc77ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 88d34a74172c3888f475b2d48da727b4ede004460e8920a993dc4b691f655a3c
MD5 6e6fea72e186ee37538c89f8594270a2
BLAKE2b-256 99a85b0d88755969310a206fcc72f339f6d767edd7e1841bbd57e61978dcf457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 4b481e6db993012a6c26ac105f2c3ade5d0d86b249d3d1406dd3eb5f2fbba264
MD5 1328e496b91c4a8e9c6d2837f872028e
BLAKE2b-256 8294791a8cf28680cc39ea5e076c0ef94fc371655afdb8497701885ce93598a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e0d15d9e469aa6a2d50f100ca0001c98763e8acc772afc66be8f5d7e5314a122
MD5 7fc0999b343938a24ae30123abb2f6d5
BLAKE2b-256 62d6d17c3abc84eb7969a543bd5f4a9dcf64768ed676ebdfac77427e79de703f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8274c2c079ace8ce3aac785e575f5c907ae77eeb6d8465b4580c52af66e733b3
MD5 f1c36db9e4f6d9d0d46b041f27eec79b
BLAKE2b-256 573dc4f6215bdd12d96eaf7ab82338de46592a9f52ca2db7579ddad0a2b57b20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94a7a9fee144bedb227f743fcc71ecef0d2a3d39dd71833dd01f376be34f77fe
MD5 58a99cd7fe3518e288942d2d6c330a06
BLAKE2b-256 bc82f35fdcce4a1aa948f5e9871fd36ff91c1ccfe87ea52ee282e4b82272ce45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 058351c308f5ee26c1df6bb8cda80e805d7debf34a22d88488d7827338bab8cb
MD5 3bae8c87bc6163944ed8df2c8eeded55
BLAKE2b-256 ff127a3f0152f075e015e8422ba3300903e76755b3a66d8b8467e50468d061a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7ac2789d88aa78dd990b971bc3543cd65b0cfbec3728790dc0c46d996b5f6317
MD5 33ae6b2a555b4e9f297853b46253e48e
BLAKE2b-256 e40ccbf7becc3fc51855328370cf12d3ca9c29b5407f464228a93add9b4d97f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a368ed3f50404b3597781a0cccba25cfae1c431ad32827a97f0fb197680af7a1
MD5 0ddda327e45b9e34af1c213f30cee711
BLAKE2b-256 209e20c3d3efff7a470e27a60b87b32fb27ea0c36f3d6feefd7bfa5ef78f1cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 56119eb50baa6c159d67019696c33d6ca3a35dc171db954168cf2e17cb322cec
MD5 427335cddca8a9e276bbca0c0d5a1dda
BLAKE2b-256 e0ca6e0d4d7f7e326f411108a818f1315b0381dd7ea7cfca5df20142584b9f00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 59c10feaf83176af82620b67e8642ea8c51fa15d7139994a90f849e778fd838d
MD5 1286d96dcce52a4975b45bebab689898
BLAKE2b-256 c5cc29e4cf89975c852ea45b4b4c4dfa475f85e8497b805e4dab55151a47da29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 dae5372bebd358d47e51283c80943f4f67a4755a75cbcc1b322e1a6dc447c709
MD5 3ed1950cc4119754cf64a738ff3e49d5
BLAKE2b-256 d6a4bcf54764cdf3f2f6d96a56e2519e36c5e0f983f35df0a4998e055508e45c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61831ffbe3cc78ba14fc9e32cf5c36e6fe31209459f5611983ece2da8ef8f617
MD5 e21ba08e0c1e805e77c084852370d97a
BLAKE2b-256 9e19986bb65043b6d35ca557c20da316c630ca72d4599934e5599e81bb2f6c44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 264012a40c05a16e0f2323bed0d0d1d0b39ee9094cddf8130e3c5a5c77cbb01d
MD5 715e54e7e00888a3d61047a07ad615fc
BLAKE2b-256 79ee1da0d5d54c6c492c22706ed7eab9299e822961651bf20225488aa83530c7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c3139610f66c8d152d95fcdeb5e0543da8013323114e6e717d57fd0d0cc3a149
MD5 ba6ff8a385f9d20d5342bf3ea280d0e0
BLAKE2b-256 36f1aaec6a893585d4f94a450215692ecabe47b6fd7275078211d67f0f789877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23ddc7925b5f10da51b7750933533c93124f12dff76f3154903b41872f358772
MD5 3f139257db1884909fb01105f9f9c307
BLAKE2b-256 1d56eb40da2fe4c6cffa15259bceefe2f3cd660fca333f7fca86db6e8a9dd545

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b95f18558b1fef9c2858efca4fb867b8cfab602782680455bc27bec9747fbf5
MD5 0e4093d3b029dc1b6bce3ab7dfc18a6c
BLAKE2b-256 f8294bcc348d8973a53df3a16019e3b75bec09c25de6b130b62766919c0eb0a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f33da767f068390c6bdb0d0ae1b0bd84c5585344fd425f7e9e8fd7f0f931d1c5
MD5 e6cd93630aacfec48013885a196135db
BLAKE2b-256 727d45e112dd584701bdd12634192c36fb4813271f70d26740d9c4e2a9d3a19e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 593665e15d0ae429c9c4b009a45e2c65b962ed45711a74aae032a2f1c9a202b7
MD5 1103294a2b51365fe9fdb972154e471e
BLAKE2b-256 cc465d232cf821071f84b2a2abdbc3210d8e72977454716fdc660efaeea038c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5f9777f16568f67c7d2b43af30a4bde1bae77f74deb805121221d41ba273c98e
MD5 6b3c5beb3dcb1b142367328972c5dd91
BLAKE2b-256 079592147fdc1e4866c95fb1bf395be25a3adb5571d553d9545ff09933545586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7bf7f92898fa228e1c4d9e75c610f46a02e542ca47133fe8bd329893d898e9f6
MD5 aca11ab1375775da2ac8f5c9887eeb12
BLAKE2b-256 17398674da1c0acb4e1eb040deabde78a44a59b800c2cf83253ab06111d1822b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d5af09cf8ebdc7a668d226877ba16ba670f623e4c5b76269cde92f8135386040
MD5 767df70602d23a77bffe304b82ad65f3
BLAKE2b-256 580b907897835b13da607f809ec16c506bcd0c7a976933559ff1b007522defcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 26d906b4f16bed6476ddc4a6a2494cf1f1f6f7dea5115ddc91fd921681c832d2
MD5 d11629b4d0ce9a621efd6480dd8dbc22
BLAKE2b-256 66abbfa22f881743416a4cc716479f92471daae79316953561413960015401b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a33665e1d9b242464bcc3602730132776f93a49ac0c4f680555dc3904546aea5
MD5 5864691171c7497eae57df3fc905778c
BLAKE2b-256 0ea97fb3d8615507ec7ecd4350fc7974fa4bcc57e3771cfd581dad6a2bd96014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b310f8decaefcfe89becd9b04f4e8decd361ce9cf4e14c4fa76d218bf5a0fd0
MD5 d5a0e27276bcac4724507a3cbb97e52d
BLAKE2b-256 ea339b6a8b1a0134837474ed7b957190897d4a9c6f74345caded4b1ae2f1ca83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7e67853c98d85c5f031c38fd5c2f8feeafa46042997468ccbafbacf94432061
MD5 194639e0634d98c75cbfa02b7c4f4094
BLAKE2b-256 3bc1462a1ac8830226c9cd9d1d7eb79d5f7ababe993a49a5687a68e275db6ee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c95bc4d4efc2717b6e146b4e10777f92a5ab0f4f2ab8d5ac20a1dd9332d83ffd
MD5 65863201c9a894bc5b9a19884838fc95
BLAKE2b-256 ae390d79e20129b7558a95cb583d1fc9b688e2d19d3f0d2dc436f70275d00258

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f44086e8c9c1f396c7b194f2ca60d18371d1a7a0a137f4ae89e207061fe3865e
MD5 cf2bfcebdd725d524ae7d90bf5bcc0a7
BLAKE2b-256 57a4ef7694d2cdf8521d8857d7f63c4c9bd974015082492597a92eccd93576da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9cf6486c8b88c63cf53964b97af65309d5a681d12099ea3cd3245e3f5f91e4a6
MD5 04e75541382f937c8f2c859db82380e6
BLAKE2b-256 6dc809e476592577ace6593c48402b58615a94d0d98aa7a6b1d9e86352ce8538

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3cb8e3b8238068354a9cb338df42fd5e78e409ef52aa87fd8e553d2ac3b31aa
MD5 d98cf08a22c7aac411408af6f0feb85e
BLAKE2b-256 0c32ff192c6b7ef4eaef00c2ad31689e601de08537738042f062302828fbba48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2df5ca16634695d39f1ae838ad82a6463c8f033b3f78c856d6dd76b0f821d0d7
MD5 17e8c5477de78a7595bb05c1ba617619
BLAKE2b-256 6787dab2f2619ddac3cca20f9e2704fc047a0a84ed0238d9288b1851761c10d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 71269bf99ce81d6163d785029d99b5228d52ea90037c7723d9e5c6f56e954d71
MD5 25997a67f3dc60f29eab3e381093e7bf
BLAKE2b-256 2d2ba1d22945b84bad45922fdb6f4b965a6cc4aeb58f85e9bf0df5aaddea1228

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 44a84737f702a9d3446c2fc18157b3a38c56f4fb3cdb784fe757a01179a9026f
MD5 53b591df207c801838fca5f8c8a78ced
BLAKE2b-256 443380e538617920a1db329757a944c95e97c6bb6e3e2bdca8400e04e5dc7f42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1cb7ce3c8e309a382dc0b23656dd281c30228affcaf5fe356cd566eecd62764
MD5 3532d60bbcea61c575f194a08d00a104
BLAKE2b-256 c1714780daa6df6073516d139e3e9e131cc67d673c21874a085dc239d5d14990

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bf7e6d65d547df6338de93c4f19b5c6f455ef16b67117e1d316bf291d6feadcd
MD5 2021935e861754b62dca78b85e02e130
BLAKE2b-256 f59e78d8f4b77aad6c0f33beb703192185000040efffc2704c0fe630f35f3633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b623ea97326501677193f46de60e9b7157608f5069a5646806203bfe28c2dee9
MD5 44476501a61819a432c4861464e9ea5e
BLAKE2b-256 282f25fda9af1ad80c8b7534c362df239c62f1793cc1b409e9ac219658f69c41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5d4e57eb48a46b01f4739ff36ef4e7567a137c4d31ea2f81ba78a4a2cdd4e54e
MD5 1020c6b8c504d5274b3f28c4bae96f44
BLAKE2b-256 b3cce309180c4aea801c0c4f9a16f227065bebe3b975c62cfbde7d58fa3761ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6ab881658efa12fd942953e0a436528d12d39af0f26512eff04ead29d2529096
MD5 c31fbf57b13faf001169bffce5649fc9
BLAKE2b-256 110bfc20aef965072d861ef4ec799e7e115da51ddd8955a5f0159d71787e9820

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc33a0cab9b8e5594cb6ec8b109ec8a321f9cf660c64edb901da7449ea5fe25d
MD5 56e5afe4fb24c5adc24a4ab8d8da1932
BLAKE2b-256 f5dc1cade5de90929409e56b8396204a3ca7b8b609843029d2023d943ed95453

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8d9980dbe36058e5acebb9cbd736c5b3117025d36652b7bc0b6037902ed3423
MD5 df0f87e4019327d3dbc0262ee42cdc19
BLAKE2b-256 79761f76b9984690a13d00a9944815711a23c5fbaba031911c36ce970bae829c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b4918db4c8b2122a717fd0906e6c623454b794104f19462b03459b58f5a9dd44
MD5 8a78797b72187c165a410539b0adbbe1
BLAKE2b-256 35635cf4158afc9a721b1a5630f99fc4b290206d902f908a5657ec391df8a5f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bcda7a43ff7d63acb5635435f220fea1032a26a598b5865567202c7ffead6046
MD5 4518747b63f3b2a1dc410fa7e2db6729
BLAKE2b-256 b1618b28878d2ce7a7e8339f72af68aeede68ae3e2677743a00ca7a02c1e2837

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 df87aa91e5157b8da8250bcef9e6c77bb6a7dbb44a92dcdeb93e0cc834fddf4d
MD5 1aa03ab3e624a1cabdb927d326f351a5
BLAKE2b-256 5eda4dbde47066f09333607f428b2d5884cfc03972cd8b2044ca13e7adc523fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6117cc60b162d1a26a06c05cbeb07b17d8c62c9a04a974db51e40b6baec3af7a
MD5 e7c9567537fa03582fdf63463a68a7d0
BLAKE2b-256 f199ff6a0bebc32d32fbfd268680bf8a7d95b029def9d8a4fe192df496d5ca05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c4ff6ea71acbf36dbb257e6dfa586a25b6c9d24ddfba9e706988ce5bc6ac0563
MD5 17e53f9ecc954b5da567ae79bd223e10
BLAKE2b-256 d851914d011da893ae7026683bd13194cb50559d629db2837d1f1521ce56e9e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b3b7520c5377eded9f2338a4088adf3793a28a30af6abc713cc431ad6f4c41f
MD5 64007ff9d3ecb27697d4b69c6b95e4a7
BLAKE2b-256 be555a564dd66e7cef75c7acdef4c0b81b54e988cba7cdf712db6de64e7ae2d7

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 33379db42b980a3733b1e28ae59742af3682ee4c2a6286822dfa38c9c61e3fe3
MD5 358136816449676c87a6e7e4b5f8cc8b
BLAKE2b-256 169607959ef468c2e3c738419bb393b354d9687d012f4666eaa9632a7e6d4958

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f7677188df4b738c78aab2a8e2452d4752bb33a46839b861d2e55111dc712195
MD5 18d5cf4649e2cf53f597b19fe19edfc6
BLAKE2b-256 83fc99c9fc5af391d728d623c17c03e06c15db3e4f0cb806ee4e1ac00fd9dd9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49162cdeeb9deb26431f30ffa76619a52f0f9146c0e6299946ac73592db051cb
MD5 0d73f1b53cc07c207ac1ea76a11457c9
BLAKE2b-256 dda236cfff8cd7a9af6976ed47f5e48d5b417e194a5911599590c1a5896601a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a7c1737cd73073106209b58d2b1950548542494e7b7bb7962e30368cf8eca52
MD5 3fab2ed611f4a313c9fb8286d31c95f9
BLAKE2b-256 02e31d5a1cde587c22bcc2ae661c09ce22417a15484389c5c915c61c5e84fe92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 154b3b0ef47f1deb85b800a6fc6926db019ece4baea3d7e2255108dae7e1442b
MD5 5836e4aac784012a2f5d7ee3d7da7678
BLAKE2b-256 00d0114df102ac9b2cded6b45114bd7b0ef295b0db76c91ec596d4d07f059450

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2500337c3d875200cb5af2f9ec9e2fc8606bac1039566a8a44ab5ad93320032a
MD5 cffeb89683586b173a7f27dadc8bda5e
BLAKE2b-256 53236d459c290911d5e9265365c61061ce11147d22cc78bc0e24f737d9791caf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0b63ef664018f8d2d9b1dab6422c6e5ce124235a92f124cca03596695a724c1c
MD5 000a76aafedf1ffc7166bd256de6fb0b
BLAKE2b-256 47f4b0d6427f8ac3f533adb738012b4eff9e37e6ce11b5760ed96c256ffbc2ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 bd13f7f16e1790a0ed31e3dfa18edb5715c890cf0315e8c8374053c58d4c6db8
MD5 8c7aa9176452007d1d0c9de13d89f150
BLAKE2b-256 a52e5994b73eed09896c70849efdb47c2fca2bae88ba3f8f691469807614cb1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 28a1c7da9d5b885218c92f500111e271eb5bbc76307666a6a218a0d13b0752c2
MD5 6bb737456461fe966bfeaa90bedbeea6
BLAKE2b-256 636059cf0ab6c1cca2b79e1edbc9d4b62ffb43ce9dfe43d17b5de06b61c158a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5eae47c718f67fd35a0a8875eef0da5986a54be3d677e0e6a0af0e7405258333
MD5 97fe1b64216687edc3974fccfd0da2fb
BLAKE2b-256 0ac850b1ed601d90d3d41fd806fa5c1cf0def015605e84a0499aea38cb943a79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a5addaec03a91adbb5e570e3d8287f56573f4d54ede1636afa190c3a23dec01f
MD5 e48cd9346eb3c577f86a17b081b02c15
BLAKE2b-256 c0bd75296902e6ac51a97e4b74e7b59b75be4d8eb2e92cbf27608944c9f5a045

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d9db7a24e81096ee2c08da457b3bf64a0089a859674e2770ed1d52279389853
MD5 de5887f34d574339f5e5fb8f7677053c
BLAKE2b-256 ab4aa39381bd0e22fc30d69d0bfbdbc1bfea504f8bf1a1dc3ad5a3b3e2c3a448

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67438d276eeb452d6a9d9ff68c25c5fd7626d9399e74d4d693b5cab18ab99bd3
MD5 c26b46de29ef1fe89831c5f33588d1e1
BLAKE2b-256 ec7f46207eff7a4c29a6979eb206280fe2325736578f69b65b8caef8caad1589

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b3f64acbd115121283232482db8b85c498105d94ee64a58cd9deb65240f215bf
MD5 ad23e9b01a7d18403392d20a38ccb4d8
BLAKE2b-256 7fe38ca9f9486dc55238cbbe1b7930e1b326fca879066fc63972df0238298a5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6f2368d21641bc1cc220c2089df520de3c11941c50e8ead0a5746c0467b2e345
MD5 9d776043c527c3adda2a80c5e3032124
BLAKE2b-256 a5d5e45ef55150c396e574733095a60fa053522db8c80c42eeaed73581734b1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e42331ed9ba3ebea2060927c34f9135e93979f49abc01e01b192d35549c1e9dc
MD5 b94ef8aa4dfaf0305c9e05dad7c42e18
BLAKE2b-256 b54cf7755b12b0dd92e65aabe0562118408d51e00305b304fe2be8565d300647

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0597287c00cf240573dd27af0e8eafe1126ba06c98e7ea3a90b6cb4c4db8d242
MD5 fe729a432dc234f9f8e94bf8256d08ae
BLAKE2b-256 1f9cf9fef51a83e8ef23abb00423f260bec8c3e730cb3d885744e516bcc6f367

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc22ad824d8d065124d878d0b82754d26ef4c10dfd132f5255527c03465db458
MD5 039ec4e7bfb82fd3bf14725f4d6402f1
BLAKE2b-256 97747974ec44e5836c89049d0e05dc5a5c6de78a408ae179fca2ddb913d8d20b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20d690dda096dfba9e0877200b38be4bbdfb7b2fb8551e37fe567626a26d33c9
MD5 fe602f1131b59a08718ae4ed78201ca7
BLAKE2b-256 69e4bd2613333ecdbd2be6b378e06fdf9ee201afecff69cd7a782512b97585c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b51ee9f112937a5a3b7598c6ff7a9c4b115c612979d6963b7d3c34dcc744672
MD5 07d6ed07552a777907c78a9b051e4a84
BLAKE2b-256 c8bcb35381dbfa004edccc1c887c0f770a3f7f3abd5064631f21eca9f9f0b88e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b52fadc888d762ca40ed321f5bc87bfa7a570fac9ecb10ba849f76e928662f12
MD5 eefcd916408775ac46f98e597ec1de84
BLAKE2b-256 576bf74f140c7f6ee57896795d3cbdad81572645a2701e9fc2a75459b0304f50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 823f63c1a008299e1257738e679b71d4aefc4202399f071cf5d8ffaee64f5b07
MD5 ba93570eddc5011313b8b17559c96ad0
BLAKE2b-256 544271c5cbf1bf9eb3d470a34a89bf8eb9a455659e703fd28cba446d7d5070bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 dce09bd9554484b2d639b80aa4077259597c0e95d14887e4e4754277274f5d4f
MD5 bb26b96a5e44b007f38d91558f242be3
BLAKE2b-256 3dfdeb4d90eea26133a92ce830902c1b5376804e434dc8bc9c42e5e82682c73c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e9af45ce0e4151faaa8bc7dba6126bafd118913236f7a5135f3f7dc968e67cc4
MD5 7f01ef65f8647e2cb8cb514316af443b
BLAKE2b-256 01bdd1c23f52cccc11183b3aa201ec972e7bb7b602227ce6ce57ced5785dc69f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 31038461d29937bdf9df55d7d01113edb206237607345ec35a349034b7195646
MD5 38018f59c568b7c345f1dfb5173387dc
BLAKE2b-256 d912c248627d5147698b065d30d4d3cb1feb1c8b6806613f25d6b0fca734043d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2f5be4474ff533efa0e6a95e161ebd17b354949490c959ee050067fa99327c4
MD5 d4454970a7435654819fba08a0159145
BLAKE2b-256 197963531f10cac30680f8f1975d31739880264aa679987c065e413db8a3ed42

See more details on using hashes here.

File details

Details for the file pyasic_rs-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyasic_rs-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d574d3b1c2e44c02d4af9f5fcdb31595c64ab47b37b7b6c9bc8a459c43c19fc0
MD5 27ad6fd831d4cc3f210d7b7384aed6a6
BLAKE2b-256 c8256c777196b414c0c8f45140c5fed80f56b784131b3472b47e937bfd93b0d7

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