Skip to main content

No project description provided

Project description

Pyaccelsx

Simple Python-bindings for rust_xlsxwriter for writing large worksheets, fast.

Simple Example

from pyaccelsx import ExcelWorkbook

# Create a new workbook and add a worksheet
workbook = ExcelWorkbook()
workbook.add_worksheet("Sheet 1")

# Write some data to the worksheet
workbook.write_string(0, 0, "Hello")
workbook.write_string(0, 1, "World!")

# Save the workbook
workbook.save("example.xlsx")

Writing with Formatting

from pyaccelsx import ExcelWorkbook, ExcelFormat

# Create a new workbook and add a worksheet
workbook = ExcelWorkbook()
workbook.add_worksheet("Sheet 1")

# Write some formats to be applied to cells
bold_format = ExcelFormat(
    bold=True,
)
numeric_format = ExcelFormat(
    num_format="#,##0.00",
)
right_aligned_format = ExcelFormat(
    align="right",
)
border_format = ExcelFormat(
    border_right=True,
    border_bottom=True,
)
color_format = ExcelFormat(
    font_color="FF0000",
)
merge_format = ExcelFormat(
    border=True,
    bold=True,
    align="center",
)

# Write some data to the worksheet
workbook.write(0, 0, "Hello", format_option=bold_format)
workbook.write(0, 1, 44123.456, format_option=numeric_format)
workbook.write(0, 2, "Right", format_option=right_aligned_format)
workbook.write(0, 3, "Color", format_option=color_format)
workbook.write_and_merge_range(1, 0, 1, 3, "Merge", format_option=merge_format)
workbook.write_and_merge_range(2, 0, 2, 3, 123456, format_option=merge_format)
workbook.write(3, 1, "border", format_option=border_format)

# Save the workbook
workbook.save("example.xlsx")

Contributing

This library uses pre-commit. Please ensure it's installed before submitting PRs.

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

pyaccelsx-0.2.1.tar.gz (11.5 kB view details)

Uploaded Source

Built Distributions

pyaccelsx-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

pyaccelsx-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (861.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (988.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (936.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (961.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pyaccelsx-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (916.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (853.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

pyaccelsx-0.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (863.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (990.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (937.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (962.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pyaccelsx-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (919.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (854.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

pyaccelsx-0.2.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (990.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (937.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (919.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (854.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.1-cp312-none-win_amd64.whl (676.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

pyaccelsx-0.2.1-cp312-none-win32.whl (656.5 kB view details)

Uploaded CPython 3.12 Windows x86

pyaccelsx-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.1-cp312-cp312-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

pyaccelsx-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (862.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (983.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (935.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (960.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pyaccelsx-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (917.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (854.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (764.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyaccelsx-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (789.8 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

pyaccelsx-0.2.1-cp311-none-win_amd64.whl (676.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyaccelsx-0.2.1-cp311-none-win32.whl (656.6 kB view details)

Uploaded CPython 3.11 Windows x86

pyaccelsx-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.1-cp311-cp311-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

pyaccelsx-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (861.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (985.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (935.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (960.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pyaccelsx-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (915.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (854.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (764.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyaccelsx-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (788.1 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

pyaccelsx-0.2.1-cp310-none-win_amd64.whl (675.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyaccelsx-0.2.1-cp310-none-win32.whl (656.5 kB view details)

Uploaded CPython 3.10 Windows x86

pyaccelsx-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.1-cp310-cp310-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

pyaccelsx-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (861.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (985.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (936.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (960.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pyaccelsx-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (914.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (854.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (764.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyaccelsx-0.2.1-cp39-none-win_amd64.whl (676.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyaccelsx-0.2.1-cp39-none-win32.whl (656.6 kB view details)

Uploaded CPython 3.9 Windows x86

pyaccelsx-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.1-cp39-cp39-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

pyaccelsx-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (862.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (986.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (937.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (962.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pyaccelsx-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (915.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (855.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.1-cp39-cp39-macosx_11_0_arm64.whl (764.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyaccelsx-0.2.1-cp38-none-win_amd64.whl (676.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyaccelsx-0.2.1-cp38-none-win32.whl (656.3 kB view details)

Uploaded CPython 3.8 Windows x86

pyaccelsx-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.1-cp38-cp38-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

pyaccelsx-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (862.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (986.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (937.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (961.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

pyaccelsx-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (914.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (854.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyaccelsx-0.2.1.tar.gz
Algorithm Hash digest
SHA256 41cca55498dfe1c9b25ddffc6944375eaad6ddbf6bba3f0484ea56dc7117614b
MD5 e48fcb407694d70f021bcb02dd231fae
BLAKE2b-256 54ffb2dfada9d12f03c5e284cd3c03d6b94a0fff27d430225507aa9632683a9c

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e12d92c67246584ee663c1c10cbd5867bd635df5db466b8140ee0f0cf6b51554
MD5 c1da308fb91600c389c2d04053d5e2a8
BLAKE2b-256 1c224000d3d7c5fb642faf9318491e30e5e1b9d45a8a64e6d45921acf3cec698

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf0b4485951d02e7cdce6860ebdc8de69b9faec61cf3dc0cb8960a7bba73c8e0
MD5 fb434bf1a1a8014211aec2f82db07228
BLAKE2b-256 d7c084e0455f5422005b157ce33dc177342fb9523e2d2df6c48056de6fd2af59

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e3dc8f36f6240c3bcaee79bbd7d2725deaa51a23601fe3e455eafbbc4b72e9e6
MD5 2eea9d487ee76d149a91cf1126f61d9b
BLAKE2b-256 dc75b6472ebbf62a5b6176ee2173e8f22f2b838835b68160401f32d3e7ad2562

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2015586ed0650fbec1d5190a7a6fc10ee2922122f8478bfaa5fac24990fff538
MD5 ba9bda829096b558bea7c000f0691c37
BLAKE2b-256 d843b40d82ce17acad5006c86728a889ebd5196d921e3e3a488358eda144f082

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8456e7088ddea32713acd317063a422f494f3551805cc307e22027a1f2a8b2ed
MD5 9748c7e04f9c8eab97de58e2400f460b
BLAKE2b-256 1ef932532ed3f3ba63d51e6a6e38135fc59c272a54e7c4cb66461dc18c6da1eb

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f94fcc3ed79169602641fc3215dd2dc8fb0bdc48929e345b0a18b3f779a6926
MD5 d9f86fbc3f0b07abf7889e35221a5784
BLAKE2b-256 7d239eb268f0190752790e453dfeae2cb3660b01ea05d233cf3ceeea08e7a377

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fff05ca40a13da0cfa0698122cc3d65e82b52654386be51738c8c8fea3111e4a
MD5 fed2538ff97367ebbe64a4ac3128f2f2
BLAKE2b-256 9403637dc255adfd26930f7e0a94948f7496d31683f468c9bfde8dc343be2e16

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ebaf53fd110789a2121a4f909bb74a329d8258909def0e0343f1742bc43ea7d3
MD5 c3ef0894d3c60d8589d9d276b5a8f9b4
BLAKE2b-256 7043e83ad0ead6636011da11546c54b60d693ba3d6d28e25b81476d71cb14769

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a0bf783010cd26f4c669bcf0057bd3bc1b22482d58c5016a7e3daba66489419a
MD5 3c7356ea082b51e7ff3f2f7760c7e325
BLAKE2b-256 923b3074a0d922d548146cf049a907731807aa29e562423a304c0983e7f0111b

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21a44fb457b120ea3716dfae2833085ad9e4f02b96643753dbed97fa2ad2401b
MD5 a74648b697010d7adafb9772dcc697a0
BLAKE2b-256 a7c26729d6d8bf81df0cb35355dd0ef2e0bc937d4a7e87d0e1eba6f21841f790

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5e855c090dc787a015dda53d554beb1dab35ca262c692bf93502af994c0a338
MD5 72e56bb04718b7827c417432518704a1
BLAKE2b-256 077ff873a878c7095570168a25255b75722cb91267ee9d86a4d693bef2e028af

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 51cd8a52c9c58e09b090e8dd3aaf1f4e89a7ac5404de50565dfcc8c56b66a60b
MD5 321ccd176ecaa8c7e3a70b976cdca89d
BLAKE2b-256 8774c2bf70d564cc9ae8f21d367192786957cfa4ca61199eaa563e946a2f89ee

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3a395af5c8725bb53fd13c0274a9fffe464638c8bf763a152d5578ad412b5ca0
MD5 945898f220fb1dd4d2619c597400e31f
BLAKE2b-256 6bd196770ed9daacefbacfcf3c832f463c3d393f87edd9d7b293ce8a683ecbc3

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9be1283177cf20445c623fb57914034dcb37be76ee9b823cb9a624b986ff72ff
MD5 26692ee140dcb2dfa89214eaca33d020
BLAKE2b-256 c4c4534d417427cc24752d7adea040a1f503c5c150152d0761a708645f5ff278

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d703578c9ff809a0a2fba702dc43812f4b12886431ea6f84689f3f776d9f2ff8
MD5 5c2815e68bd906645885e8d248e65d83
BLAKE2b-256 90ca12b658485dcf6487f854f85bf77985eb06a93d4d0659b229f60a3aae0325

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 db68df1fcc467e7cd06a4c4802f7fc995cf5b2f020eb7681f163ef1a201053b4
MD5 3d42e128cc18bcfee9c0cc35f790800e
BLAKE2b-256 8b268fc0812598b55044e1b17f44fc3518638a14a3807c5990e86aa76b0240db

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e21a0f7c570232d94f0dc7d897166778cf12964b5dcc16fd87a758cae0d56dae
MD5 de1d864821b88596347648076d7311db
BLAKE2b-256 691624a9a550167dda83b48cd544550382197fbab2fc6eac1b8c7dac083964fa

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d80c2d2b7da9f3734d5257b4b3b1b58bcd53dcd369ed9b8be55e69da33727af8
MD5 3911fbcc90c22e0c1e54dab7de41a6dc
BLAKE2b-256 e6b982d12276c4669f2b88f95c13c40da0f5cfec011da09f652a497d1adf9967

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a565ed0040fb139a617861d9577fec6709b3394e82cb7361ebc79569086ca85d
MD5 0db92e33c008a4e69a8c149020f08b23
BLAKE2b-256 62411fa18f64bc820d4963f724a602f15193cde2fecc4d9e8e1e60a8b8659856

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 863e3adb151e09f8e59aa731dbd282090aefc4fcd4d1dce66ad206c645345a4f
MD5 f14006425cae48422bc6d08bc7afa54f
BLAKE2b-256 c9d98ecdbc1494dabc7b43898e01406ef4698864ee78cd3a040584c80330ad95

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9de6497598c2ffcdf103500a569be9eb70c8619cadd873bebf31d296763c66fa
MD5 6eeaf1f31555e0db952a519219306e16
BLAKE2b-256 f0421bc4c7403c2bf771121372b5db159cb99eebafcc67a9c301f9cc550996ef

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e20bf94e642933c323d113178a701dacc7fdc35bd3e18583fff169e3d4ae99d
MD5 2fd222de646a950728dd7382ab6c4d05
BLAKE2b-256 d2f94701a22f2b364408df3ee7b2209bb213426603237c209cc51cc7faa8c427

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3aeaa2e2088fadb86b90901bae5a49781f0b12bdb9baee8362e2ae03b861be39
MD5 091cd2f9b392b8ce7095f68afb037dab
BLAKE2b-256 431a513c7418ce022bedf1d23ee17d083bf187e1d190daf13a8509025cd3710d

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd6ae2611d6ef158d9bc68495899934016144a1389dfac60539a18ed23fd72fc
MD5 f5916f64701cd6aadf705d075c712926
BLAKE2b-256 594734401a54f9dca3f559cb543c44249315f76d5ef7807678e438ede76adea6

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4094d2399e93edd382935bb21abbec6d77459bec10d1bd42a2a84ae5a66fd822
MD5 a15d851fba56aff17c36acd751c4dcb4
BLAKE2b-256 782321e9581c521c4eefe188d7a34e5596db0f1165ec59106698a83919ca0da3

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eb57ea739f092723939544ee89ef95c31bcb957bba905b5ebf2f59b96b98a89c
MD5 b7567fa21ab0a5287c47a37b01eac64b
BLAKE2b-256 08644faea402ef05707c323eb3bfbd8678cd423fb876c14c4ad3935c17649c21

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 369d4fbe525e394159c34ea2b9faf4d2c07256580d2043d29293ee17c9dfcb5b
MD5 f555eb947470a14cc9f9f7972a13ecc3
BLAKE2b-256 700abc6e4a3a52195d69a8b090ed36c9456578478be49b4003e6d2ac5da73682

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bdfe998eb7f23fae15ee2f460294714caa2da13a06b4ff43393851756a024793
MD5 0bcbd9a4c7ac77ac856c700f811e2284
BLAKE2b-256 d808154bab3c13b1e98e29297d3ad993061d5419515c27eee6fae754481571ea

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 12a8b9abbdc211f65dc7c74de3d6c278c7700407808d7c1998a45b5e44aca5a5
MD5 0d9bf91ff8c1003d45edbd88ae164899
BLAKE2b-256 c9a633f17f97c1aff1d40c7c39b74090f17ed461413618fbc7093c796b4d12b1

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp312-none-win32.whl.

File metadata

  • Download URL: pyaccelsx-0.2.1-cp312-none-win32.whl
  • Upload date:
  • Size: 656.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for pyaccelsx-0.2.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 d1cdef8151632272f67059e72a2248f4d86059b44528d8812292f8de6f4e7fee
MD5 4cf2cb6b0a76a05ca4e55fd779a6759c
BLAKE2b-256 f9f95c7f6cb62ece4efb367b8ca9d05092a9af46856bd2cf4894357a489a7367

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e384825aff89c13bf561e96408cb66fe54e4441f2bb859863bfdc7d49a36753
MD5 0194c609bd6ececd6e9202863dee1f8f
BLAKE2b-256 8f3ef7b36c38c768c86b41d15e47f27be058a4112265235be28e9f2bafb3760a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b3a0aa79ab56da9c14a7247708044d853976e58ad68a2e2f58c82a8074a1f02
MD5 9ce443d93f65eacbe87270fd6ea3d583
BLAKE2b-256 642499a5118692564bad07c33c4e53b35807622636ecde2656b24f2fe74c92f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 839266f385949f5536ed752db92dad4018e3741aaf35bf14704f32c683f6855b
MD5 5bb7e0a1ea938987a516f3a2f256a26a
BLAKE2b-256 b90080cfab644db35c37b4a5a8e863545f27712f322479fd48ce9c9f7ab263a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73b6f25fb4fa0b9dea3a76b593de16f842663da9c4184ef38031c30d9d7d4913
MD5 d79c3145b6c72d25dd7126fae172b880
BLAKE2b-256 a411f4734532a7f0eab788f25b687a59836f17b89da57e6596670c2263f8a04d

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8125e9bcafa34955842cc019af17edaeeb23237c3fe0aa0af66cacc44f7adc8
MD5 aeddd9f8eb7e2760311e7b84ac8c1cdc
BLAKE2b-256 5c747f9b382a6c79b13560a1f15667353098140ee8fff932edf1c44fef353de7

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d22a8e382b641c9ca5291d1b96bca0fa95f972862938c54598d33b9b7a672c6
MD5 915907854aa8e596b27584558c53eddb
BLAKE2b-256 d238d5c24df1ba60090813ff722feef610eb2b374903fe904ecd3608c95975c3

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 342b3e2de2e871558fe6ba024f4030554a4e28d180f886104f651fd33225f538
MD5 00b6e4dfa690a580e3d84790994dece5
BLAKE2b-256 46cb49a527697189fb46100e0e64cb6c17500c7ddb406d115a3c4124410bec7c

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17666f326ec905d56d413e5da8e7545928cb502923cd525ce7feef582b7f0704
MD5 2f27b824bfbc7de56a4830b2ad84f2fd
BLAKE2b-256 64197855ea22a461ce9fb002332ec3fe9b68549a4af019defa0157679ebc67e5

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 65aa53ede4ba14595f5a1ec1f78c03a0dbf4d4c997e6cd6d984bc1968724feee
MD5 a831ebd4051b4a11adc1fd0fc1c5c103
BLAKE2b-256 8b91a814dda75328490aeb6642ba6bb983fd18f56626d5702cbf473a4b91b3d4

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b34e8c2330da6f5fcf18f40c6b7d1123a7627b2217e6af0e50887a59a64d642d
MD5 55ce10fd1e64704e7e7d9b136348ccc0
BLAKE2b-256 d64aa6a00178f5755044f726c713e9c800a64257fa038fed1c285db1290aca78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bbc3ce2295f870b6e1057f6e65df5fcc5e6ea3022d1154518c93cf3b53fd085
MD5 288f9770ecc918c3a88b3b64044f048a
BLAKE2b-256 78239c35e032880ed633f4deab5cee071f898d04b50f1232bf446413364f2072

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2f00555f668aaba7d0b91109951e7644d7cf16023ebd7fed6cbfc4db7e875b2
MD5 ee41d692d836692498ac2ace24734bdc
BLAKE2b-256 a15f029d03ddc0e1c50c5987b58ff1e01e51a07c38ea90f7326fcbfc5c2fcdbb

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 084b0fb739458b93592b16651cc31c4502bb02213f9fbd552acc9d9f4f661909
MD5 7540b90c9af78e961ad406e2d5433fdb
BLAKE2b-256 2817d78072354edcd49b3b98a3c58916c5c6c9dcc749b4f2fc65f8fda885f5b0

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp311-none-win32.whl.

File metadata

  • Download URL: pyaccelsx-0.2.1-cp311-none-win32.whl
  • Upload date:
  • Size: 656.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for pyaccelsx-0.2.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 08210f926796745dc49957984524f0fac47020560740a0808ec139ba439996c9
MD5 26feddb0a3c4a77f56cab5f936f55bff
BLAKE2b-256 1abeb63323b84d950e5cacee0a72d5ade5dea79a9fc3c5567e76609130a7e218

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb55d3c99b9704077daa526e27ab92303cb485be079f7b7001f1b0638050b412
MD5 12d12af2eb6085ac96610e7b76af7f82
BLAKE2b-256 dd8e07bda977f8a766cee2479c75fe0a4cb720ee29ea128f47be4a4a89227194

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef14f5e68e4897588335032ca445310e2dce61b0f58ead09496b9fe380d58b19
MD5 ec565bc40423ec36f49d81d8be8327e4
BLAKE2b-256 8cfe5ac7912abf0cb74945225f43c15fceb8e48fe93723cfa709b6ac90e2e0ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 163a22318d4b6b2116cefe391fbc0550da1f1da8d81f248407500415b5cefdf3
MD5 1e357d7fece58c270016ecceabccfd5a
BLAKE2b-256 f27cf8f27c2bb38ec5a526d554f744b91d4477088252bb40878bd871a8a7bf50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 779598551320aa44bb3128a11d6293165961416acbc94be288fa6f2c611965d5
MD5 cdc50ddf274998e11444b3faa2ef6776
BLAKE2b-256 e1de863106c1fdf2c3c8d13fc22a001c349ccf83ec1389f19cecbf615f389e5b

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9dd7a5b59ed0a69cd9e970151c0d5be6a1392d967aecab2ffc74eadb1fea9bd4
MD5 515cc79ab311a6217ce0040527211ea9
BLAKE2b-256 e0bb0a0b291f6effeb0d5c91f27b2f8561d47320d967b289c0d7e1a784c9ea5c

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 065b877c86c7ef9885d8ab4ea2286c8992b69acb970f3f72cf91d8eb0bc4f08e
MD5 fdcd67257d92f608854820ac63e54f71
BLAKE2b-256 923c4ef2d6166724f430583a5525e9712502def414dc8c1374b6af2acf8e618c

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc778a67aa25f5c2ba90b93fbcec8628828cff3919afc12a24e7ecab01543502
MD5 514e6577415287f0d7d37936dd3896bf
BLAKE2b-256 c464c9f6126229188f136b6157c81e7a3dc3bc2b10fd1ae07e4c170589496a37

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 950a6d3ca64d97ac41f14ce4c44d764b3cb4d973002493c5f91854bc2353cb8a
MD5 7d7c6edd7bf5560cc82d3bbed298d8d9
BLAKE2b-256 6ca16b95435341c676f357c5e70ebd678d19ca67231dc65956729b119b6b7a98

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 568092c86e9cb6c7e332b7c735a0f83d1c9c49a2a6b3b8db9fc91759bca92676
MD5 9353179e680579a005d3800a8287a1f2
BLAKE2b-256 484c369d8603f4f2c1dfe7e81b17825a21055cf7afa5241ee9880c310bc6b843

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e28f8f2f0b02ab7ae75290bec09c1565f3170315e28939db4355d6df864fee9
MD5 293c5bbc310c4c97266a8408b10ab425
BLAKE2b-256 ee01558d45aedeede49d8d1ecea15bffb0a61a9d5ce4cbf0ac76c0ba61b35ae1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5603200976cd7ede94bbf2dd3a23005af2458fa88daa641df0f34a9dab8a4c68
MD5 286bcc14dbb7d364bcda66a39f54dafa
BLAKE2b-256 f031a335900e386557d0a2de0a7914896da4872f8b66b3f7461f915d49f898bf

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0690295003c35275712775be4d83849c71ff9b7a13ad0696fa09cf360490c31b
MD5 d89975e3fc7bdac0256035d50666238b
BLAKE2b-256 1592a399c4f3e462ba906fc4c24a4ae295ad2ff4d25dacdc78ac7a48520fd415

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 6c5f008290fadc0dcd73fae5fc9bc13a09a2d7f46a2ea150db9c6f90a1fb8697
MD5 285b17738e4a1af07281feb28f672c2c
BLAKE2b-256 334a070722011bb14e45e5cd72c18dd698eeff68276bdb0a89a156688df40972

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp310-none-win32.whl.

File metadata

  • Download URL: pyaccelsx-0.2.1-cp310-none-win32.whl
  • Upload date:
  • Size: 656.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for pyaccelsx-0.2.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 ad6e8eb207f2cabb5e46d5f04824f5edd84ea893221c3bf6255123c3d1602555
MD5 c15304a182270cd7d12f4ff258056d7c
BLAKE2b-256 e3684e086bb3843871e0c28bfdd7fad297b431b7944254d5335055b5c1dee43b

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9c11ab8a53744028ffacef669d31c56e5b8d2e669a094bbce663851df591e03
MD5 77815ab56cf6367fa767e534188966c1
BLAKE2b-256 1f45cd275a944939826225390cacea849aadc17e53be949b453cd62590b3e2ef

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5d3baa45bb309af0d28e3f3ef33ba3f9dee768543ceabdf1ccd9f2717a01db16
MD5 32dac82ccb561eb76241be4e4214f169
BLAKE2b-256 2481f2884a80fa5f730b062f05431f95c37a63fc4faf54476b90786ee374c1f8

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf96a5848c2c203871b7e41dfbf11e7c49888b09a44549fd46960d618f6cf89c
MD5 12b799543d4dbd0fa327380fbe7b7cc0
BLAKE2b-256 6114316f53332d8daf71e18433146f91d0080a8930bd982f6c8c0f7418b87d69

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33e46faafa963ada7f84bfd5ae37107bec3fe2860cc268eda8ddd593ec940567
MD5 0c34365006c986af014e3a28140abba7
BLAKE2b-256 349fb39878c42c836629b351a4854641b645e84b9e5c5acdaf2a558c330da08f

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc572aae37363861ea1196bff3bfc587ce2b31b2000b927dcf714327615f2b80
MD5 befeeeed5abbba4d3a0770f12c356092
BLAKE2b-256 e5318616f674646af94ea9eb17956d24140f18ba459ed8f47c0c3b4d0055d418

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f776e412a9999a7b571dac1992b9cc7ba9ee105979a136f42449a51041176ca7
MD5 257b30b7195f85deb7c63cf8d99a6164
BLAKE2b-256 8f56255725b708e43fbd53b42032131555e6917ac7ac4b425f1e87916d396bde

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f480a154c80f2f8220cf9e1d0ed1dd600cfffa9c006a6597ae650e73713a4baa
MD5 551bd6d1627a9b12865a6ccfa2700ee5
BLAKE2b-256 7ca7430154fc46d49431fd58241140c87027ed15d198c7b18257417e268c0903

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13fbf3cf1b22ed516b548910c4d9a0d703d21d6b5de5e66e05be5780cd5378d5
MD5 aeda180fe2fdb2af6a80f23d5e8f9e2f
BLAKE2b-256 cfbd7f71377080a118b0a42388200142b3a3ecd9699f58fbe01566bee8fe6882

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 71b80232756328432767d38eaa2394d96feb79c209f80890a034a461379fa50b
MD5 de777123674a133c485eaa03352a3caf
BLAKE2b-256 fa157541bdee230d52e6f66254461a78e07fa8f56afc1ab54229bdd552416269

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b9a1717b4b4e953435d4b1c927bdd8797b1bc627b5a174e9225e1b132fc86ab
MD5 36ba36cf8eec446868c426747c15457c
BLAKE2b-256 368c71a36e911356e02b6bf4fbcda440dbc881f97e4cd95b45f61a581806591c

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9794736bd25f649ffb971102ea41596efa1f919f290687c5567d00700f98283
MD5 7490c2c6ccf54a1b5eea7498ebf4ab5b
BLAKE2b-256 f0ba2875380247fc8f72347a90ae9fbae792c84cf435153b0abcd2b0add85d52

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 6f67961e5dceebe12218df3d1fa5d46e37370600d7b7a0d68aed5714821b7570
MD5 90ecf561fa54ad18f0320988386e7af3
BLAKE2b-256 1f10e21e949ccb3cc52a31603d7da3305f6d1ba28370de7d4961016f60423552

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp39-none-win32.whl.

File metadata

  • Download URL: pyaccelsx-0.2.1-cp39-none-win32.whl
  • Upload date:
  • Size: 656.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for pyaccelsx-0.2.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 89dd914f71f7d9d76688721346deb457c8c376571d7ccd3dd339019df0567283
MD5 38e8b34bab1a106826643aad12f6b719
BLAKE2b-256 94328221422b551b4be4485e6e523bdb2fceebeaa54c26823cdc4df56cfa8cb2

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96ccbcd56d28f288ede3248a373be0c1344ab2fe9b96526447954bbed5a9f87a
MD5 7718b3d87e72757fb512b23e05b9c94c
BLAKE2b-256 db19bf2625274f9727edcd9415c48594db354ba8c4a854a6b6c8a215bffadfc1

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e8fdaf3c522e9fdd00796784b40c2826c2a26abba9f716470e1ff31960bd9a56
MD5 f1698be5466e6c6cc61bd8ddd0d9e162
BLAKE2b-256 022a11bd44445b222b965df3dc8a6aeaa56a55876d878624af9c663d0d320e33

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6a78bee16eff059b09c154eb8d131d914582f04fe421ec70a8eb3629971c94a
MD5 0bd556883e172c973acac5f3bb77fb1d
BLAKE2b-256 4b8d7b702dc7a88d575e5414b1df9aa8f31bb700f7c84f64e710a5f76248982e

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 42a5a389a1d4351551e9965cc539b1e0207e9096a1d3f8dd65b4ccba54802c27
MD5 8565b564104f88de96af79b7df438ced
BLAKE2b-256 3b7987cea7686725314a28e71d6f8d33b4c16b3588cfee464a73d5571daca887

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66eb9b0ef7e2b2198a804356e2a147cb07aebcd6a444656f4f0031e3ff8a5e0c
MD5 7ba6a35b2ae0582c136a19a8c1bc7807
BLAKE2b-256 0730858a9762189f72b5b7c3917969280fa5523a7c1109287027699bc1503be5

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e589e265798f1fb1b76005b6b8a24a123148bfa7249d24ff3908e5457ad04ce1
MD5 dcce4c4affee877950d418b2b7849f8c
BLAKE2b-256 8b3a4b382de25379419c9b9fd189d2f4b67c3dd8a9f68266905cbcc6e3aa88bc

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa7301d0611215a6f4ba3916a49960cf1d5243ba9786694def308df1aa8f0495
MD5 a5e6f3bab6f22c756bf4b076fde81d8d
BLAKE2b-256 482823b27c5efe68db199fc300e5ada1f7fd818785f55acbbf08a4554be2ff39

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2eef01032588622a907a3cf7b0545c013f5110af8167db8a1283472e70bf751d
MD5 055b2ada3f4123254cc0d12f3e4c7de9
BLAKE2b-256 fa38f080212d2deeca5af07eaa360c62b06ba734dfef9e0bd5529a84f6cccd6d

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1964f5a17c245bb9b4b3643a3cddb99c8d8798c8e04564eab279abd70124910a
MD5 c964d39eada4b9e0b1fa84b3863706bf
BLAKE2b-256 98ef7856efa61a1f1b78f98859cfbb7b261e39d2bc96d0a0a55e7c95e68ee28f

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f881d34bb177d46ab7b2f116e6b39c9ef43d46d1e2b3432f69a839ece416f55d
MD5 1ec9effb65bda989eabaf6cad2c81204
BLAKE2b-256 cff10b668f728de723af9105c144e07d08efe8c0ba39f949f934a4b622ae47c8

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5feee68c72c215c7648ca3c388cf213c6f02affda19f75d003b0b3d7d2e0b42d
MD5 cea0dbbff279b7a36d067a7c16e33f5d
BLAKE2b-256 d06ea1fb805db93232ab01a2c4307643a3d6555a05c1010137d5551e31d22686

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 7ea1fd3ede6b41aa3c90f8c50e308010928ed8733d41495cf73b6b97b2e70845
MD5 dd76d49a995cc549b21aed02a20737ad
BLAKE2b-256 dd6fb9b21ebf9e42e6fdaa38cb647344969ed50976efe34c21d2551f2006fa4e

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp38-none-win32.whl.

File metadata

  • Download URL: pyaccelsx-0.2.1-cp38-none-win32.whl
  • Upload date:
  • Size: 656.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for pyaccelsx-0.2.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 c18c7fda5803e4c9a122250656fdeebf39e4eaae80fc45efc90b364cfa45ab1e
MD5 21114cbccd6795bd4e7690f591a75122
BLAKE2b-256 1eb6e66101351040ab5cb83be1e88ed065244c95a943f723829102bbffff8301

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0da5f77ff42a964e0cacec1cd98065354169e418006ccf5d25e918d18be02c65
MD5 0108544fc08f6190e31566854039a108
BLAKE2b-256 3b11ba08e4c8fb3091e8b22f88ca2e0efbf20ed612aae81978107ad3f3b94105

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eef45bf4be4a8834b1385b2d071945f2b06759e9b0d98817ed3f456ceb74e878
MD5 213c0f895966de1d5b23467209119ea6
BLAKE2b-256 3d974c8a3bfef4b3848d4d0674dff05d9db97957326816e553b830f29ccd303a

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 24d4c3b517119f3687d0065a027234ce35fa2bd278c154cb38bbc132c1d20c3d
MD5 2eeb5b29feb298276ee44b7479ab8253
BLAKE2b-256 d3cddc4a811c91c3936ed9c6e8678f8357cc428055e87ac24e456fd86cfb8e39

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 623a000c89ab59b0c5d81baa61b8b597b74bb0a0dbec2e07735d11dc0e57c603
MD5 847d1571ca315d8092c8300d4f2f75ea
BLAKE2b-256 8afc748b009b753a83cf9611cce1ebd69e0848a25dbfe0cf5f1011f1ed3f7d55

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fc95b0b727a912ede6bd61e61ed46ae47a9bdc401503d6c13fb3ba497cb3656
MD5 964f6d553454120db2e54b2c098486be
BLAKE2b-256 b4f660adab35135d7acf23939113992cc57959d730b8ca808a9b45fe05610f27

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7e25cd8364926e278535281aa41c9883127ceb625d34a7c94545e334ecb5a2b4
MD5 a1450cc7714eb85cb00bb11fecddcb8b
BLAKE2b-256 1fd08d4425937c7f618d03ca69fadf817ac9f903356ce065012cc180c0948f35

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b057213333fd46a3f10648ae2576a3b451319265e93cd25258fccb667684a88f
MD5 669afa2ba4b901def9ba41880715f52f
BLAKE2b-256 9e501c6eee159e88ea0b5e402612256ba035d51a6fa617ee1e9e0a5192bb3244

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f14de5053bd3feb411ac7cf9f6fc390e97ac3a242a2ab7e8116fd13554d5d63e
MD5 566245be948fa74c5c5a605833807c88
BLAKE2b-256 133764d6279d86c1e795758ff0647b12e24b07b740a8d10934b630b345a881ca

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1cc75741ac09a8a157906bb245bf2d0dc69463fe98eb6162d321cacb5f7eb855
MD5 de960264cc16a92812389fdd49d04621
BLAKE2b-256 369ca2ac34d0a9f49cbed9b17188fee496791afee9acf1413ec753b6b910ee78

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b13f125e6f33b696b0152cd3dc4e8ee7b39c4bf7d0d432990c61b5081c8301e
MD5 3ec972984dd294f0467c627ee681cf03
BLAKE2b-256 cb43a58a0985dd28fc296cd744e326150c35901f564eb5eb78c9e60cdb6d2c40

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page