Skip to main content

Python bindings for asic-rs

Project description

pyasic-rs License: Apache-2.0 pyasic-rs on PyPI

pyasic-rs is the official python binding library for asic-rs.

Getting Started

The first step to controlling a miner with pyasic-rs is to get the object that represents it, with methods used for data gathering and control.

Getting a miner

If you know the IP address of your miner, it is fairly easy to discover it. Use the MinerFactory to select the correct type.

from pyasic_rs import MinerFactory
import asyncio

async def main():
    factory = MinerFactory()
    ip = "192.168.1.10"
    miner = await factory.get_miner(ip)
    # now we can do data gathering or control

if __name__ == "__main__":
    asyncio.run(main())

Miner discovery

If you don’t know the specific IP of your miner, pyasic-rs can discover it on your network.

from pyasic_rs import MinerFactory
import asyncio

async def main():
    subnet = "192.168.1.0/24"
    factory = MinerFactory.from_subnet(subnet)
    miners = await factory.scan()

if __name__ == "__main__":
    asyncio.run(main())

There are other ways to define a discovery range to be scanned, such as:

  • Octets
    factory = MinerFactory.from_octets("192", "168", "1", "1-255")
  • Range string
    factory = MinerFactory.from_subnet("192.168.1.1-255")

Data gathering

Getting data is very simple with pyasic-rs, everything you need can be gathered with a single call. Extending the "Getting a miner" example:

from pyasic_rs import MinerFactory
import asyncio

async def main():
    factory = MinerFactory()
    ip = "192.168.1.10"
    miner = await factory.get_miner(ip)
    data = await miner.get_data()

if __name__ == "__main__":
    asyncio.run(main())

If you only want specific data, that can be done with individual function calls:

    mac = await miner.get_mac();

Most data points from MinerData have a corresponding get_... function.

Miner control

Controlling a miner is very similar to getting data in pyasic-rs. Again extending the “Getting a miner” example:

from pyasic_rs import MinerFactory
import asyncio

async def main():
    factory = MinerFactory()
    ip = "192.168.1.10"
    miner = await factory.get_miner(ip)
    result = await miner.restart()
    print(result)

if __name__ == "__main__":
    asyncio.run(main())

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyasic_rs-0.4.0.tar.gz (274.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.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyasic_rs-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyasic_rs-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyasic_rs-0.4.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (4.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pyasic_rs-0.4.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pyasic_rs-0.4.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.4.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl (3.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pyasic_rs-0.4.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.4.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyasic_rs-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyasic_rs-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyasic_rs-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyasic_rs-0.4.0-cp314-cp314t-manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pyasic_rs-0.4.0-cp314-cp314t-manylinux_2_28_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.4.0-cp314-cp314t-manylinux_2_28_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.4.0-cp314-cp314t-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pyasic_rs-0.4.0-cp314-cp314-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.14Windows x86-64

pyasic_rs-0.4.0-cp314-cp314-win32.whl (3.0 MB view details)

Uploaded CPython 3.14Windows x86

pyasic_rs-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyasic_rs-0.4.0-cp314-cp314-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pyasic_rs-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyasic_rs-0.4.0-cp314-cp314-manylinux_2_28_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pyasic_rs-0.4.0-cp314-cp314-manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pyasic_rs-0.4.0-cp314-cp314-manylinux_2_28_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.4.0-cp314-cp314-manylinux_2_28_i686.whl (3.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pyasic_rs-0.4.0-cp314-cp314-manylinux_2_28_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.4.0-cp314-cp314-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pyasic_rs-0.4.0-cp314-cp314-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyasic_rs-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyasic_rs-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyasic_rs-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyasic_rs-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyasic_rs-0.4.0-cp313-cp313t-manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pyasic_rs-0.4.0-cp313-cp313t-manylinux_2_28_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pyasic_rs-0.4.0-cp313-cp313t-manylinux_2_28_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.4.0-cp313-cp313t-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pyasic_rs-0.4.0-cp313-cp313-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.13Windows x86-64

pyasic_rs-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyasic_rs-0.4.0-cp313-cp313-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyasic_rs-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyasic_rs-0.4.0-cp313-cp313-manylinux_2_28_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pyasic_rs-0.4.0-cp313-cp313-manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pyasic_rs-0.4.0-cp313-cp313-manylinux_2_28_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.4.0-cp313-cp313-manylinux_2_28_i686.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pyasic_rs-0.4.0-cp313-cp313-manylinux_2_28_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.4.0-cp313-cp313-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyasic_rs-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyasic_rs-0.4.0-cp312-cp312-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.12Windows x86-64

pyasic_rs-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyasic_rs-0.4.0-cp312-cp312-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyasic_rs-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyasic_rs-0.4.0-cp312-cp312-manylinux_2_28_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pyasic_rs-0.4.0-cp312-cp312-manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pyasic_rs-0.4.0-cp312-cp312-manylinux_2_28_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.4.0-cp312-cp312-manylinux_2_28_i686.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pyasic_rs-0.4.0-cp312-cp312-manylinux_2_28_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.4.0-cp312-cp312-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyasic_rs-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyasic_rs-0.4.0-cp311-cp311-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.11Windows x86-64

pyasic_rs-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyasic_rs-0.4.0-cp311-cp311-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyasic_rs-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyasic_rs-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyasic_rs-0.4.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pyasic_rs-0.4.0-cp311-cp311-manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pyasic_rs-0.4.0-cp311-cp311-manylinux_2_28_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pyasic_rs-0.4.0-cp311-cp311-manylinux_2_28_i686.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pyasic_rs-0.4.0-cp311-cp311-manylinux_2_28_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pyasic_rs-0.4.0-cp311-cp311-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyasic_rs-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyasic_rs-0.4.0.tar.gz
Algorithm Hash digest
SHA256 79baa846c9d2cf36704884573787f350119da75bfb09e8d920ef35a8ea7a7aef
MD5 153191b87ebfdc90b2c763b63016b98d
BLAKE2b-256 4c9b4da6051810feed6f74c383f365cc0bd1edff664eaccf835624c93fef09cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25063b1a5c73660b8c0d4b4118c30a49fe096e6777a9e65340bb0be15bf38c0a
MD5 2229e0b22bad71bba8234297e0b390f6
BLAKE2b-256 ba144463fd4d6baf1060a3245d31ad7a4f5554225853bba2ba82a1d433de531f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a9bea0e2ace1c9d16fe6c763c61469c7ae9520addd7ffffdcd88876c5c50e53e
MD5 d0dddbd33fbda1906ea66b26efb15371
BLAKE2b-256 0af4b11565868e33492d5dcf566d2a154648cf59167590af1098327464d51612

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 37e91e2a37737c4fd6d5242bddb51a1d51eedc282652703d3db9a3d6c5fd2799
MD5 dbb5ab9799354e1f82b385ea8033a6ad
BLAKE2b-256 fbfd17af63016f9ac86f0bd91a2097866ff343df6d7065beb09ec4ccff75a5bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 861df78631ab649afa22196a49d849de7b01012e0a465fba1cc385140aa8accb
MD5 bbd28d909c459e2f8c34d740fa757be9
BLAKE2b-256 10921d35bc4261f0fc6256e952fc7e3976a3c69cffd859d2148ada846e9a1a7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 22328df0591be493ee27491078638ce6d7458db28d8350c5d04f2c92e23901b1
MD5 4457d082069a63282f20781fda25220c
BLAKE2b-256 a3fce47a0fdff96abf8830e4d3cf7fb67b7b9498fbe4640f2072864c19c4ae00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 adea2b0d319a8eb5970a233491da28451e526f8beb3c4cc4ecbb040d8eed2250
MD5 b2bcb3b0b2cdf5f131b81c7a6a1b3268
BLAKE2b-256 4a0fbc5895cf1505dcaa1992baf45cdd21bf5b26ff62d96f0c159fd23fe20d65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 474aac35ebb95b661c5331c1baffadf50196e98150ccbabe67efb4f5ea59ab54
MD5 8cbac09c55464a326f219c8baaffab87
BLAKE2b-256 deedfb9573a34eeb1a2e70801b2332e7c25818af7c3610e6aab729d666c01d76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5ca06e3734de6611138a02423ea9fee0c69e561eee661e231967e637b3c14308
MD5 8f88771d0c967e82492935a5a4af4f6a
BLAKE2b-256 091f850debc98eb17e4ec1056ee9520c72fa5fdbcb00ab964cf63add2857275c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b7ea7e22e338dea6f72fbe9d54562b0ab3d8e9409eb57e39b8902719dc93c15d
MD5 8c2acd583548b758065cec1ab47fe683
BLAKE2b-256 fa49f48f0d5caba3d0715e5f6584862c0a4f44ec5aa2c57cb8895a0ae695f939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03b788c59a89817cc1a139fc8ad7d25fda8b12f5c56ebe2d3944b51d6e4ef85d
MD5 05899a3530ec64877b2d4281731f15b1
BLAKE2b-256 c71c3ac06752d16964982a0db6a65e9affe34d0bcd834bc5d32cfa5b166084a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a54142f2340d82b2266eb5dcec3e3454d2100163a3a210e4a0bc9efe04f19b7a
MD5 5a28b9a82090a8ea9639de6b73480365
BLAKE2b-256 f43fa0f4817a091c4e9819a2938aa9810b093e1494d484e9f609176c49d88517

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de4dffbf2e4528838bcde939173982587b9af9ea3e1ea09d80d86bd6b151d395
MD5 e78defc97a4476c7018f7ef3f94f608e
BLAKE2b-256 e48aaf496721f6618d43366543adadd28183e3578484309ddfcabd761a20a875

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e9af9c7719385da2ae05982d9d21447fd3931366825c37add17c9eeae414aa16
MD5 3e6dd16b1ceab777d023fbb6e89dd485
BLAKE2b-256 a9e17946a9af3c7e115215b2c02256f915d50246ec146fa264c98f86ec3a439e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bd9ad803ded643eeb0a8b8c619181061e9b6fa0758fe5148e9610bfd7d3c29e
MD5 0830c8497c0829af471c826bfe1b171d
BLAKE2b-256 5b5732edb3995202ae44eea31105cb3c30f5deaabe1aa43e73f4c93c6ecd3b28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6634e761361cd18cfc4366660ec14c4e5f720a712cf9ae29521ad02cb525b3eb
MD5 35f871ae1ca9b1f5023b3ef175b6ab23
BLAKE2b-256 210bd97a27f359107f440bde3a0f160020bc6cd7295438805c40386cc71a1041

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fcbd15b2d9578895239fd429c9dd292eb0695a9aa523b6b0c6a984f1a736fd10
MD5 df33fe647b4ba9597921045b7f1e170c
BLAKE2b-256 87270d2e64b3c070c0a8e9a47c42ab40a00d242def89ab6c98c20af55fb28f7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 82edb8b90c4b1d93032b3e35deffac661528fba9e99b4af9ef0f15813a5316cf
MD5 d2a68feee039316d97b7e0435e2c7930
BLAKE2b-256 cfaa868907e29496bf763c6deba1b2925871c49f9bdb51d71a7e49ddc6118a63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d5f3efaba51d6d1c6dd2d80a39c8ba533fe8ec1a9c1849663e94ba1ecc8112c
MD5 ffd6f4fad2b15c80dcf858c4def27067
BLAKE2b-256 459446a393a4de775fea371c8fad52717f8690267a8567be90e505332a256414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 04339529249402798dcdf4b2ea8c8be811f96941e5d64b0d41481430633d1655
MD5 32c2446f4255350e961d8ab6dfb7b674
BLAKE2b-256 bc912d564d0a6dc7ced0b64d888d735bcff610396143b2b1ba26233f10e6dbbf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6cb141a4132667cda2f7150e4e0a80bdc8a73febcc568164a55048045d9d7933
MD5 7478d4033294ea9b8fd2b755f0679d77
BLAKE2b-256 e5aa71d0c420e6b2dc77ceee0bc01a11a6db110bbef2abdf88abc5ac545a8a8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f76d94103b575116771b109ca446c602ff8affb5f26b12cdbc6dd0fd9b8d28eb
MD5 8e06fb3be64631600c1a5528882c0a57
BLAKE2b-256 e7ac4b3cd17655fdfcc2646bad703fde2ec8ce5829b6f80329184a1f4daa2cb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b4d8970a44c4fb6525923e082f3b67de6ee196eba3bbfa083d4b48ab09186f09
MD5 c6372d3887377ccf6f4ef6fc123f2230
BLAKE2b-256 52f4e160e00e1653b2a61c7ccbd83cec6da8872036ad277097a6265b1e84a236

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1fb8afd15507a922fc5183393b6f6b76a179e440d36dde38fdac7c0720c72dd0
MD5 483b3c86cdb1bae1a9397f3749e2bb5a
BLAKE2b-256 b46ee39496779e2870f8ea75cd3dd6b7d244b3135c06ee7bc8e94d6cd4525dbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a9d9224f8f4903c89e11749a62a033e13be7e40311734b86abcbbfe30bb5a1d
MD5 2d7b3068b49f0df036a41ce21d084379
BLAKE2b-256 0ebc7628deeef84813811164f4c58448ed501b824d1fed270e293647e1329b65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0160eb01c0ed4f72ded1fe2e8994dcbbf6060dcddb6fa3b81c1113a022d183b
MD5 c2a22c5116413cd607d43a980243935d
BLAKE2b-256 77d8dc0a5811c2984374eb72d5bcd1183a6ec260999630f05ecf040b551df207

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e1b86f9363f2ed6e931fd97b610ce849a32d05fb8b81bada68fe4d804bd480f3
MD5 35bf02a36bbd01d7a944f9814b9de5ed
BLAKE2b-256 0d4d114578462668bbcac0369d2ace6feb6185802f73de521c217afcf6cd2380

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7a0d68d95f67046f97f46ac2e6b5a27f669ba2182c5d857ee8f0ac33c49bb46d
MD5 48364d08bd27341bb1358954e0abf1c4
BLAKE2b-256 51225c10cfe73355c5e457fcdde009c35424f2684215ed241c84966e3b17bdc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8578617c699cdc2c74ce8d90b902ff2b13fefdd0f2dfcd3bc316eb8d29a13435
MD5 4c0d77d9e47ea4a5427b4660a6504e10
BLAKE2b-256 11f4cf9d13bc6665965307061f754fe6ea324c8840683241e0c82186cc771ba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f1533971f5365fbea0d9e15f6b035d517105c2e0b2c03c9adbe366cf200614ba
MD5 0b0ec2cb98307b0e2bc35cbfde43b78e
BLAKE2b-256 72b2e89d2ba5a1656703da4a8cdde8ce842d6fd80ae48050130cb24c25cc5a0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d6b3efa7a73780b43af648302a9fd42b4c5a08c0f3bf79744e909e1b0746bb9
MD5 22e1aed5496fa64ece63ca73844edf13
BLAKE2b-256 f7465475fc5db9859dc98b62907014c97f15e75201eb7404facbe9d1c80a59f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 223d1ba10b69d6e6c6c42d57f030a0230f7c330bf7a9a51d518a1cf1da40efae
MD5 df5d0b616f2e33489ab3883bc69b60ca
BLAKE2b-256 7c4c15b17ec15b457049b4b5d9ad6689e76b2e96e821f9827cce909eb0498d66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa1eef71123fd0d494f7cb72e7f4932e17dd7407b52e385e16c9e44a8442e009
MD5 431bb5e103342f76ace7ad016f9ecc9e
BLAKE2b-256 c7449a88027e208eef237362a9cd1d5fe0399b5dfa34ddfb4d34ba485283f0a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 22cfc18f7142fc1b5184c0a8f6cc2e0d30e6a22e5b67a21a54c3507b031f1ade
MD5 6dbd11ac8d0128050e4105290e2b8e45
BLAKE2b-256 5662350674721b89f521cab41e21ba4d46d2e10174b381c053d1ac201dae1e22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d72ae58876ee0ad1b221a9040eb9cfa61b51856437ad51524358fe6cca210994
MD5 71b86ab91fe243f110f6ce53e352d475
BLAKE2b-256 b925d21625c9a8911fa82eb1d6a2c46565ae62dd996bc60c9a6ea8bf4f5477fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a936b8585603a3e50b4e259126b7ee0dc0e7ee8172f82849461612c22a74cf3
MD5 8a4dda2df8206586825801c87ec974ce
BLAKE2b-256 01dd4e23b8e891f91e5bdb68cc87ea88b8a753e56c682560cd864bd340c4edc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 268bc1941e5377c6b80c7817714fe31148b36128fde6a9de465c57b2744afd8a
MD5 1bf5b953a7101af4d4c8f268eadf1a31
BLAKE2b-256 df3663a5d4b1f2529a7106410f66edd2572d7ea1eb5620a9f9897dc7ec3dd02f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bbd6f437b499a6c15319fda8f1595584603d3aac38d9987bf244e6ef72b2bb7c
MD5 9b85643fcd8fba241186ca6dc1217c4b
BLAKE2b-256 99769a3cf0a209979c1fdfdf3edf1f5dbe0462752cf8dac52e29916228bb8098

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 357e13533ac631eb52fc7f51a9714b9cfc4c071a1d36c8735a48f161471a27f8
MD5 354002a020b4351607d5c5f6ba919616
BLAKE2b-256 64132801e1da15157f084e2085af2cc796c66d9eba905ea91052bb9689495d11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b3b59893612a20ff1a1b784e1d42681b4dbba82a8828b6fe2fbeb141a9a59c8f
MD5 9381a5aca91bfe6bc893348dffa1bd91
BLAKE2b-256 4f538e46dc7c159405db88f4522180e50999f6fe2cda88d86b53b8ebe41e5621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2230fa132e7a398d2f8592fb6ba7e5efdc20536195be448eb8f3b80bd8aa7535
MD5 5faa46af8ea74a6f1cca31ce442f66c9
BLAKE2b-256 79c30a1a2e1c13c9cf1421bb5fde975795eb83b0554b14d84b8373452cbfdf64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b00a1cd9c8c4810ce57810788348f313ba5fb5921121eaa21a2ed8cc591b8b57
MD5 c780e68feff9c26d9f28003a930da262
BLAKE2b-256 a844f27aae9ea6490de4134e9d9c830c1b5618e67fed5691982530256c38834d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ea7f42b3d613e6bcc5f880156610bfc05145abb2a9690c665c394f2ee144f695
MD5 879bd3e7dfedc9c84ec0e8b5d292d7ca
BLAKE2b-256 b34003edbd31572d853db5375f7b8111fa5972d6a409c6a2b44b94658f4d7df2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ff43922e1b3d78931929382d3b5bf8d713141a387081e0994653f5d9c7d8190d
MD5 472bc6c66358ade02b860631f4fcf4f2
BLAKE2b-256 3236b528b080f46d7a846a6d0e5ca04fe06a1d68084f15d476a8ac3d5b22a1ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0549c6324487b3428140c0fc87284cc97ed3035ee265bf9cd109fa62cb808b9a
MD5 80bb30ebf82411502a8161f7a4cc5fae
BLAKE2b-256 4770b2a2adff47db2a91a1d502e9dd2031bdcb504f6f7fca485337d40939e7f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b6ae8779cf0366cb2ede28f987967fd6106de276931c085725941744679c48c2
MD5 6484bbb74ab1c3587ef4dd9b7260c22b
BLAKE2b-256 ccd88eb4ca864a90843f3f6a406602920546fe4b8af2599e7cb0f7155934d2b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0a52dca20075414a5d9c20abffaba9f8878c3b1d3b97a8078868cb250a627e3d
MD5 3cc45f6d64d8f14b0ddc6a927901c688
BLAKE2b-256 7ff9483289a01ad0e4436f571bdc4737b170c7e97b543f6d76e1a086d1715b64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bf10f27cbbaeb5e0f99eeda20afa0581bb66b1d47bd7c50d8ab4d57d46a716bf
MD5 d40ad985d5f5de813461957a113a864e
BLAKE2b-256 9dc7e4196f57e0ff031f3e91a2afc7fe32198aad444337fd091985c3426ec594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 81d51d88e5646df5f1a7121e3b9ad0d216635b8c2f447042f40c6835192f47fb
MD5 c5847b7e4185c6b5f1dd2248457b3d39
BLAKE2b-256 b58026a9ef25b3bf2b1b7db3f6884b03084e104ccad46abdcbd05d054af02759

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 7841b8587401e40d291fcc8723cf496afa2342b57c5f6c32ade5a24d038b86c9
MD5 17ed1569560b3021a5c32b470d1f12b6
BLAKE2b-256 1668dcd07be84a3e9510ca6ed2475ff01bc5517a012cb47b2d2e0ae843b16e6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c93494b310101736a9307d5c07871044c89759ee6c7e6a319565c5d7b883571
MD5 b8c94be9f56d46344da6e1ed50b05c8e
BLAKE2b-256 1a8775a8deeb030df5c4200a012da447c07f7098383afc5ce35defef7de28f36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd0612052b5e624cc233b139e355b910323982254939664983313f62cc50c9ae
MD5 30775dce7751a68619a04e300ffbc79e
BLAKE2b-256 a310e611dcb3973512d63fb3be481192e3e88a383f0f1bf4a810cb0837c201ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7d913963d8b14bc307c808c519676ee033835e520acea18026f668fd69b72a45
MD5 02709028827a6c49ed25918c3e518e3c
BLAKE2b-256 fac231953126ec6ca86bab41a60ce1d01fd64ff0895e2dae0447e7d5d5538f53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17360b52f0469a1efe5ad4a0bd3747bf72671b69ba0e878d267fda408fd4f5eb
MD5 2ba81e563fc2bd23fd3be107d48680f6
BLAKE2b-256 934813a528d32be9f2b1a801b7248b35c94ead136feacb5edc1419a25b243c1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1459862ccfae6a5fb189a71ca9c57bf85e558b22f05bfdabad205bd7f0430f1e
MD5 15265d03ddbe9c22c63544dbec6ae456
BLAKE2b-256 c7de7d077de6ac46fb620704557410b83f473a73e98f2291b59a42047cff7700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6dbf22cbe1fef4feb0bab1fde18ead68064b137ec36680332d9ae74f792b691d
MD5 4e09e1f3743bde18a8e3a5425f8cd3ff
BLAKE2b-256 87e011f51cbe3ec2e52cb48a2f544a3a4720b6477740dabb12188918ee2f8397

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf629763793e60126ec6c221c844462c336ff54f9a6abb0fdf9e9467128c6edd
MD5 83b0e32d20f5f86fd5d0b5196b96b17a
BLAKE2b-256 763c270cf25b36a62d9e5acf5fe83034c11593f8c8567b6695a1ead6095c02b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1bfba99cd5240a7ea5da5e7f0d72302063ec9db13055ba69a7a11efb1f8ddbb
MD5 bb08c684aacc805b9a56b55138e2fef3
BLAKE2b-256 980e5d575a3b532eb19a00d0c3e2a26ab602ce9290611d11ef27d42d5e9382be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 59a0c24904b137afb1c98ca359386829b293df4c1a3177f34dc07bae70157d39
MD5 092e3daa78f729508f1344f387eb96c9
BLAKE2b-256 006036c162cd757c9b103430a45b6c923520db79d563ec9649446830bb78edea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b66b3f255e3903556c2c41acf7e029f708919c3ef33fd3541a2fa5d3d6227c0a
MD5 b01c36f2cc82a65271ded8391ff054fa
BLAKE2b-256 0d968a358d0c5d90c3ea1d00f2b30cb172075b46241575eb433f7f89e0f0ccf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 32d7cd6053644cf982a38b230281e67d464d1d9063abe83ce6c04d3305edd170
MD5 f03563e7e38dad62532a9d4c124c9c6a
BLAKE2b-256 e395c86ab47feb4be9ff62b81eb7c43dfed1690fd84c6b344271d472a4f7a83d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 45c0b5a2b17c09e1ee6244f67d1b7bbf8733eb895e5336c74eec680dacd60b90
MD5 32eea85c9c0315ef4f15f26080e938c3
BLAKE2b-256 90adeaff8f59889d0fa20279c055f6a261d9680ae803d1a045a34d28489dcd4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 23c608870228b38a0eaa9c18e0c0abe0a830e7a023cf684fe74e1a55cb6dfa09
MD5 f25e7f95dc64a6958524a34174afe1aa
BLAKE2b-256 49d872dc0dae90bcb9a3bd5a8066bde21bd4be05a2390f001248d2ce989130c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24f5e2da308608356f8f0e4755239eb1e9b684bdf806349da530c50648843944
MD5 4e7cc8f2a937b25971bddf3026a6d692
BLAKE2b-256 4e0a85540e44ebc9a59a1e41042f4bbd6e60e09dcc91e20379d9085170dfe52d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 27a22253ce3eb65ca79c31d18de1a5369fed6b2821626570f556736c371c599e
MD5 74f315ede39b14a433d2342dcc89c15b
BLAKE2b-256 4d3e8f5f17f4696153a1e33a910656e1406a2d218465de28c1487fd591ec9217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 067d5539881f330b3644237005d1f2f1c1ba8753150456f0523aa52a519e6692
MD5 37812d9f9400fb476c55b24aec69014d
BLAKE2b-256 934611f1580eafed931fdc3d0da5646b46fb9a461e407d06f778a95859305efb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5b415f24d7ec5e94fb11632b86dac01e57e20eb98d95554bf23b2f5e3318491e
MD5 5d5f53af0df547e877bd0e9df9965b4f
BLAKE2b-256 8008966a8aae83c26104f4c0e1b690e5ab8d895c84e2ca7dfa4a371e6f0b9945

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e5d33e11da47dbd0f85bb01e09a1512fb4e08e8b1a4772773d38bba514dc9f21
MD5 09e039de7afe33f55ea08076985a755a
BLAKE2b-256 1a530a9b632c3aeb78c3285a51e9f297274e1bf3062ad9582b5b826b99b84f71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4748f4b50df830a67cdad0c425004b2023906e89fe6beff3b770990f14fbecad
MD5 3341f09b7b075f4158dd1eb561287d87
BLAKE2b-256 579a9a34378b9c292f76a18e8071acdb67ffa61dbb116b9ee33580241e2ecfac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4196067df70ceca2c0d31f95e48c5ad294e264a6ed9d0ff250ec9e3f8acaf9dd
MD5 f2f76f53022819ed816216342a671e44
BLAKE2b-256 10e040f26072b6b27ba1b031a52d04dc66a9f89320f5be4cfc23aa35fa70d0ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 42eea8168031c06367603877b8d45e46734300d2bad99e1689afcf79935406ba
MD5 3e3f28faed85e4f205a9ea2bceeb0b41
BLAKE2b-256 83d3556c2bea303f02ae2abded04e98b3da14c6a39945bb0e80f0a7aef38bb2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f9177ccd0b18982eadfb18ce689462f566ab409c89ce8899ac894c5518a95909
MD5 7bbd3e17b4330aa6f07cdc8a70b4a049
BLAKE2b-256 699e07a52b55e5c2808568db30b2813ae7d1562e0904dbc461e72a3a8aeb317a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9e6207097aa8a6fdf16e4909dcad5e89c469c4ee660441e2c42be9615ac592d9
MD5 9202e8f56ff52a5ed8dfc6240ede5ead
BLAKE2b-256 8652cb1fee418b6cd5ba5c8450f42ea8810f62bcc7ca20c2c5bda53052f8111b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6946255474905b3acf131dc4baf19a29dbefdf45201934d4c09b1cf330fc200e
MD5 977bf4350ff7e7c468c6bf2f1a733486
BLAKE2b-256 3bd5e8163e80658b88cd9bb2ac16f1ca7b1403a06be31d39985578f4b73d17be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 85d5e5241be78f296f658e88d323c081f23997f129cfe65e459d694c621f0dc2
MD5 928612f31f86ba893059a7c4ad03f6d4
BLAKE2b-256 4c1d9a13969b5d1df86acb2bf3a3aeb14d9304dcd881a9ac0f56cf327581e677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyasic_rs-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a139cc8495f087eedbb281393b1b8146ef917233a10006c97f03d40537808956
MD5 0faa083823962dbffb3c1f69657898be
BLAKE2b-256 22a10abd69e63cf45778bf2cd05071e0820ddc5926f00d761502470250e1de35

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