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(0, 0, "Hello")
workbook.write(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.2.tar.gz (11.2 kB view details)

Uploaded Source

Built Distributions

pyaccelsx-0.2.2-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.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (863.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (988.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (937.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (960.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pyaccelsx-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (916.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (855.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.2-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.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (865.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (990.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (938.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (962.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pyaccelsx-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (919.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (856.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.2-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.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.2-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.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (938.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (919.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (856.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.2-cp312-none-win_amd64.whl (677.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

pyaccelsx-0.2.2-cp312-none-win32.whl (656.2 kB view details)

Uploaded CPython 3.12 Windows x86

pyaccelsx-0.2.2-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.2-cp312-cp312-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (864.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (983.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (935.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (961.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pyaccelsx-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (916.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (855.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (763.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyaccelsx-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl (788.2 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

pyaccelsx-0.2.2-cp311-none-win_amd64.whl (676.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyaccelsx-0.2.2-cp311-none-win32.whl (656.4 kB view details)

Uploaded CPython 3.11 Windows x86

pyaccelsx-0.2.2-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.2-cp311-cp311-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (862.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (985.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (936.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (960.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pyaccelsx-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (914.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (854.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (764.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyaccelsx-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl (788.5 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

pyaccelsx-0.2.2-cp310-none-win_amd64.whl (676.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyaccelsx-0.2.2-cp310-none-win32.whl (656.2 kB view details)

Uploaded CPython 3.10 Windows x86

pyaccelsx-0.2.2-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.2-cp310-cp310-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (862.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (986.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (935.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (960.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pyaccelsx-0.2.2-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.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (854.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.2-cp310-cp310-macosx_11_0_arm64.whl (764.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyaccelsx-0.2.2-cp39-none-win_amd64.whl (677.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyaccelsx-0.2.2-cp39-none-win32.whl (656.5 kB view details)

Uploaded CPython 3.9 Windows x86

pyaccelsx-0.2.2-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.2-cp39-cp39-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (863.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (987.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (936.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.2-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.2-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.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (855.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.2-cp39-cp39-macosx_11_0_arm64.whl (765.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyaccelsx-0.2.2-cp38-none-win_amd64.whl (677.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyaccelsx-0.2.2-cp38-none-win32.whl (656.4 kB view details)

Uploaded CPython 3.8 Windows x86

pyaccelsx-0.2.2-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.2-cp38-cp38-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (863.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (987.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (936.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (961.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

pyaccelsx-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (915.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (855.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyaccelsx-0.2.2.tar.gz
Algorithm Hash digest
SHA256 e6d6bb21ad79c781677d1d829abe4da98777fc4567b9942ea6465bfc3789e01a
MD5 9d647e364735a7d52653fd1c94cf7e1b
BLAKE2b-256 86b760b8038a27e49255e22bbf9d7da0ca233dc713adc33e20ba52bfcab4e3da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d7822de92ca4ffd589b1ea87596ae2b8527977d64053d54bca424cb306b41d6
MD5 8a6a3e008d53a8f8ec35117918886b5e
BLAKE2b-256 12ef26477a06418bc33b2d778ec9bf5da65ffb38ad1f187b642cb10d017c2136

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5539af2e5d2b115e68ab0932467b09fb2c5467368d2e49af4563e06365280882
MD5 53620f8ef2833c33dab354f38f750b25
BLAKE2b-256 217e59bb6a2b6a329ba2e5d607b7479d89b7111c0308416ccd3f35e21ed2acc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b942076f124e1439ae34b24bd06b2e155af548b845271421093a13208acd4b75
MD5 b1bcf06b2217964e6385c3b25f3cf81c
BLAKE2b-256 8c995b7085018929b7b13e24b2c49ca1c801a1e1eb151e02079738376db67c2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6cc41799ddb65382fcba1d8044d05494abbc5d1e760773ba184763e77e7b26dd
MD5 eb298b8b205029c14ef3719ceb3b3c31
BLAKE2b-256 cfeb733d0f8cca966af85cd798a4e4a79412d36b0eb8677589a170986e1048df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1dbeb786753d9c09e2da8e9d441ddef7883383f8f7f8b272facf1e8d970e27a8
MD5 4af7dba165c93f5f825b29768e253599
BLAKE2b-256 678711b6dfd2409bef246d6280e8830b400d3f397403ea8b1a20b083f3462bf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf79375b3ce32bb55d29188723a439e6749e20d2d3ea20930e835d3f08845905
MD5 96abb61a86569d4e363ccb840dc3d5b8
BLAKE2b-256 aad5c53d4c2971cf8bcb8f14110a307b4e18890d61307e74c281ff42529761f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 194b91a917618b89e94eec9e55c57baa959517db7c9a771f3f15545f49323d04
MD5 70d3a37069b0744594c74adc9879a790
BLAKE2b-256 b626640051f30e7fc9e261caeb3388b63bc7a4ec3865d0f65500a84a522a5ca6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d8e09d26121b2c63494b22abfb635c0667d7caebd00f68815f5fbbef93efac2d
MD5 88494b5a89a90161bdb24a61dd41a2fc
BLAKE2b-256 5b8c5ce5c955c95b63cb1c879f479f452a9f185ca26eb4602f116fe3479e425c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d3a3bbb7791d9eb20cf2633b7f0482cea174a22d8926cabc377b87486d218621
MD5 4aee2d203e2ce8d6540e7ecfec68cf82
BLAKE2b-256 5aa3930b1c5cc496d67a26a2060104f7c7e578d95a4943d75a1cfa436eaacf81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a21bcf6e13137fc51ece0c2125227b3e6326424e51b82b2d7408ba8a62d15dc
MD5 a1d909903b559a59ce5a54fd08bb7428
BLAKE2b-256 47b42cad4e47c25c1ece824835d5b23ab637705e2c2be0736defb3217700ea5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce18fe2c1d2a8e12afa12c22b24585a953d767220be04799907d6790101a5c0c
MD5 f81e52c4707e047fb6e091878887872d
BLAKE2b-256 da351ec504c15fbd0c4637fbfdf204f6412ab601dc96dc99e1d1cb535e6f5b2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f167d8422daefb02402da1743f959ad16e7db1d4fe8ce1b76634e181af1baf11
MD5 0e7bb523dd5e613413d7041155268afd
BLAKE2b-256 2903894f9cc3180a2e308d3b3f1b1b9e589dce9b175087613b71674f61d56134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c8a4c1a0d4459ecc30df401e7c7c7bbe9dd01175436bfb94bf3d1385902e0463
MD5 088b42eddc4c4b5991d1cf51e01a2127
BLAKE2b-256 858751dea428b3d48c6ee6447e689a137bb3fa4301cd9202e05abc4247910b51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cbfe65f12166841afb218b52dfd832f28b9db550aee2609b57201a5e78592cd8
MD5 85dcaee6531c21deb7fe7ee3a0ccc10b
BLAKE2b-256 7bdb194c13fbd8db2773df3386e019352bfa75949b2f48685411d4460d953cf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72ff7a8065e98110a15b4f4c77ad7c6f388d66c18e7590b5d5a7138bfd957b39
MD5 33dd9e3793005814bb0180799906a3d7
BLAKE2b-256 e70c4a4cf66bff850061aee57771d41efb89ea5991ee229368cc8a3cc60ab989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d1382fbdc134043c3f3a34bd1c4c02efa9def0bae7cac471a36bb165ed55072f
MD5 327254058e1d4a04be3dc69cb1f3e7f2
BLAKE2b-256 3d9512cf2c4bd7d0b312952a33b23045899359babf191dd5a6ad3d65f4bf2587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 abca93a6195135dcb7b298351a23f45351701fd1716a9db51bcd6825c758ad64
MD5 2937e15d7c88288e7c55537d4bbf4ced
BLAKE2b-256 54e6f11919161a75399391685910f9e34dc87fd86518dc92c69cae5cac6b4ddd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c14130ec83fc768ba8e823454bf47699daec5f7edb58e6a1ca111e97401c97e0
MD5 95c5ed0671c662c787859321a76ed7f1
BLAKE2b-256 24d433aa9127a760cdd5f1fd52ce1cae8d0332f117e62af31ff0de8ff560b506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a82b4fccaf7c464de32de680b3a54834c98832ee137abdd7b8770ed00689c42a
MD5 c376a9821d6cbf8edc3f2205f64a4047
BLAKE2b-256 73dbefc7c1c96a83e6ab81e7af1fafaba3e35cd889d083eabe5067d9f26ecef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c258d359fe29b3fe126aa8c5a146f27d3baf11b67b96b8c307b14ab9077d037
MD5 8fd638ca6fff09e01c09d8b277829b06
BLAKE2b-256 d158bcda1727e198c44259c4e448dff4baf8d33a2c5e19b289dd25ccb9704dc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6913951d4dcd6d2b2ea3d6c131bd174ff676a84c347dee20d926d8c972eda572
MD5 6a164382a3f5abc35dc2bfca50401c0c
BLAKE2b-256 94e28543087c7b0981fbc39324bef439d9564c5cc7921b57e56e3b08631a8471

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3381a2d15887ccff752473854147ae0fdacbc25331e15e08b761b3fb329ad3cb
MD5 43989668013490893ce2c93f708737af
BLAKE2b-256 66920dc8dfdb6b27b02ce595cb65973a47f40523c161664fff895113d7db9a79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 038ca86fbbae3934f85f434be7fd2dc9a3dd6fba1757738f3d442ba0ab23a5f8
MD5 2817c0564827dd678f2712088f7cacfe
BLAKE2b-256 7b13846e62a3f041c94c52d377b0acf06425d19c411b676b1bdb91444a5bdb05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee798d64c3a88415b254c375035d5a7845a72d2488f92e6a1e493a06b56a819f
MD5 5d983e57300f95938831f4132e6dd9e3
BLAKE2b-256 66de3409649bbd00586a000dce81dc21d9540c6c1c528a459c606d350e745b65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bfa48426d5741712e310cab7028d3ec516b0e70fc0b1b3e6a985020abba13c31
MD5 ae5306cd6695ecf187680285c103652f
BLAKE2b-256 9320dd636dc873ee4c55567e4ca12395a60e115a729c732bdb1e24ad666ba226

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e71ea1b6dbdc4ff1423eb60bc968c06f2fc2b988030d8d19bab58709f662311a
MD5 436850da788b5a8b9848c923534c87b3
BLAKE2b-256 80858205727e61d3f0ce94e03f86e9e7be938e5bc95e497fa00d070a58ddb096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8de4206a9571e9d95450b236805dcba17018b85988e9a1115be5302dcb38593e
MD5 222f23c819df4fc732303388b64dc95e
BLAKE2b-256 ed322a97bbed2733cd83db4b605b1c1a4ad49fabec60243678bef7b5ab11659d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe3d02d200ad64d664d46736aed39a576c919825a1175a99f5bec2a4aa3a88d8
MD5 6bad6fa84c58707faef457a8224b4df6
BLAKE2b-256 3b4330a67542d653e652c9859b08ebbb28a2a549e095433bf88cd4b0c2d2f940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 92e345432a980ec9da216f6693d159f28dd5264443332ea3a5b2a7ec8781181f
MD5 e73365085e9f835e5fe350aac8b4da4b
BLAKE2b-256 ea04173d0879703bf2764ecb715b9c0bc4d4609021e5e6bd22b8aea335844eaa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyaccelsx-0.2.2-cp312-none-win32.whl
  • Upload date:
  • Size: 656.2 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.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 7d3771cb722caf691c525cab5a2d366f453a2c045a5ca62ba8183e3daa2a5bc3
MD5 e0ec18746759813cbb4b4982bb97af03
BLAKE2b-256 31089bc5dbfa28107e5702369cc3a2225e4c5f1bfd689cf9c84d981bb2bbe4c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adcdc92405875c3b4c4bfe266da5e4a186a5575a5eaa8f5bf13cd6368ca129e8
MD5 ea0a6393f876259d63e9da0f277b4e66
BLAKE2b-256 e4dab4b15f074144a40c5fc3d1384ca6040b454ec46761d572b9d7d840b28436

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3001d3847256f3e9cac1cbc7204973308fe9c38695e0d86f79268b3e79756ced
MD5 a6ef75a75aa439dd19b7999115820e32
BLAKE2b-256 fe1d5df8b6733137d9db7d113d85a025a7b22397523ecbd7207a72d4fb1da4c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0886fbe78a8fa3c66630ca73318122b26f86cc7a3d81a500a0c232a5580b9c4b
MD5 97c28db270c1ebc758444cf15c1cd0d0
BLAKE2b-256 0d263aad1ebfb4f223b77b61080616dec8fd7c54d5b78355fb394bdc27690415

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89fd976d128ad1443cc96705809a16a595c3a052f324ee9d953b2fc216471008
MD5 348ba7f171b92f0836fa1c7d6f95b349
BLAKE2b-256 71c812174c823f23ac7a7e5215ff377c6b09c21c84a2b94b6fee6ef015b57484

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26c00172f01801531758a13108a3837d6974b4243c24844855bdc69b2746b94b
MD5 0d1a0709d60987654b0b69eeb076fefa
BLAKE2b-256 698115b0545c2ce5b985b4cd4b8f958205f34ee0a195897bc0deb9d3538e930d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2cac280719e3bca25abd979b9d16f21f680b9a1e1f45da8f031ab31b1d5a39e6
MD5 c92586b56eb3f0f3767525ca873f7ca9
BLAKE2b-256 d8e4cb27fd445e6227886f1779ffaa7eb7a013badcbe2c11df8026d9b09f1b62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9b0d7c07f1cdec1774e37a20a82fa2827355805756ab542a3f243bc198a5297a
MD5 e8b89db3ca4b2484726a1aa98054dc68
BLAKE2b-256 00c956495de8720dfc06243b18359df694af8afbb90b8c671f61401e51146961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8fe5d00070c881383dcfa4ea97ba1016873cc98aab57097a0c59fe816e15614e
MD5 62317f3ad543e59afebf8b61125237bb
BLAKE2b-256 fa354c2a560bf9e3fe6614f47c0ea24e091e378695bf9eac186a8055486f5c19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4a3d18f02421adea995f05c7cdde71cce9ba8dce09ff05ce5144664d3a531b9a
MD5 f3b6246e4d5096eb6fd13bb64df3eeeb
BLAKE2b-256 d92cd6c9afcdbe353aa46275a854d4af6f0c017803771179f5999fde504e4135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1beda397e4e9658c45277ba0e2ed4b2ecf496f4886f76c12373babeda5bb25ea
MD5 a460b2fcc28189938045beb44bfe93e2
BLAKE2b-256 e64026c39164cc4a2ae700e3df99a34a18948f3aa4890d9e7bddf9779eb30cbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8e26a77435e7a1540113e590e43606ef2b8f093e4b7faf1ef5ee6123f298393
MD5 51b64ba51ab674a0b2a2ad2cf9794a8e
BLAKE2b-256 ea245443dc300cd3445e5e11b29c5849a677ed5494e49eee62b369d962ae0c5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 52f9cb08f0aa0d3b6f6a3d6a954c636ef1222362b5e5560716347158893c80a3
MD5 459a2780f532474393ebe08debc5cc28
BLAKE2b-256 2836b24f0c008294b91cddac22943bc2e5be7e3b937eb82e6c983b84048fdb40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 b62facc999eb79328908f05b67fdba1a74a72c29a6fdac2c09d0c721655d9449
MD5 5a7573d813ae11485b06271f72e390f1
BLAKE2b-256 9dd7a4b03fdcc5d4ccf3872a7cde09d76dcd7047a918266784d5946c19b6af20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyaccelsx-0.2.2-cp311-none-win32.whl
  • Upload date:
  • Size: 656.4 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.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 bf67d6d7cc37298a140a89019d3a4096bfc86edcb5691db30bdbcd7b63d017ee
MD5 875c74a5383b7202afe80373d4b8e1b6
BLAKE2b-256 1ca8e0e1635b9a9207840b60474620061aeda120528244d8ec5f8a005f783ac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f14aed68ab4cc459a740651e8475bcc8873bf49476018803b8caf4f889a325fa
MD5 843ecf7b3f8d9c4a88e6612563880f02
BLAKE2b-256 f6b7883c456255ca7875401c95547f972a6f480f8981dcde17964d95cc43dee2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 37e9876dd0d453e1fd02cc7a20bef6a3b8bb44d4d5cc139155bb356ee5c0c2a1
MD5 4a2594f227e8da32113d33a0fa9dc736
BLAKE2b-256 c186c318a3afb8581053014d4276784495b43e1e415ce3a0677c4e97ce6e1c62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cc434c0ea53f6d8634e8b3d57f6d262bf93c73539926f9f8253f3fb2dba95019
MD5 d7654d2e613185d933824692fe533b8e
BLAKE2b-256 7f6309e4553b8ce6ce37876acafc5988ab86194e2d0732660e9ce998e32ea0d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d8f28366b0870bf1cadf57778a42a522f3a0fdeaed847524bbbb344a8abefc7
MD5 9f06e35c3ee94f9df8832ec54b395bd7
BLAKE2b-256 02da548358ac7c3e93cc9a1014bfe088590c87a9be74ede66fa8bd09906b8327

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a06d9f03860ef93b8f05ea2f67d413c1e71d04ab2e213f6fc0a34e499db2f312
MD5 c33593ec5f96b759cb429c2005c00cdb
BLAKE2b-256 793f4d399ef7db900f71aa04dccbefd5744692d305d9a562c61ce25f60153089

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 76ed362b94c0f2262c96672631c0282f6fe9afd572fab62339e2b827afe0dc22
MD5 632c1388dab811cc97e0ba1735c7a6f8
BLAKE2b-256 f5b95d135853e3d284f86a37110610ca0bfa5473cbd47a9be03c7900b0ba511d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 413469b264470176bb9c4312f030161c0ae20e96a6678bf5edda1a7439a6d335
MD5 be8626ea44865a6e284e55e9064ae56a
BLAKE2b-256 7b027610e08ab1b2397887f8d181bb26ac0349255336737487e83a4f591136e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 11d45a4d1b14afc6eef8d813eac546d4c83a86ece18d61889fadfc6cd66c1ae5
MD5 3d77d765b5d907dd510973240156b250
BLAKE2b-256 648e61cb427ea3d36c1be87d745723ea9113143e2d6f5ca1003131a8f6e6aa5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 026ba8c4749af52bb448d21a282c7c0a287d152d2751735ff41b8879d15d9097
MD5 0c0bdc38a122c242f0339516070cc2df
BLAKE2b-256 ff5051623467b01e980c55d2f0838cf6bc8f0761d18d0663b90a8986b38b86ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b878e5aae216cc0b5699e287d5459dd7b133f5d23a2a8c12b410966aca31f3f1
MD5 bd2aa00db2811c26f65e41d56d8bc491
BLAKE2b-256 096614611278ff3902370c14025ed724320074ca5d507f0f2af3934592ac5b46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ae51a679def2f3f9090fd6d180c9d9aca5fa9759f873322d8a52f226ed92bc1
MD5 20c0c868a960345bc2a06a12ad7efe77
BLAKE2b-256 fc30b5797a10a7d3e596dc56c1a3c6ba19d228c24a5223545cc32d76ed77b7c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5a7951c1221c116b392dc62b63c0d23867aa8cb08592f2f0cf30a50316e53fb
MD5 282e7cd15da75646d715dffae4af1114
BLAKE2b-256 75240f45161cade0128283bbf71bdb7ffe52a017c855061b5c68823b08ba9ca7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 6e0e29eed14745e311f2eee000ea7ac69a400582b91f5c0940ba6b5074d7f0f6
MD5 d8c42b0d5e788cb7dfda439e0b92ffdf
BLAKE2b-256 fd5bef2f419ed7a57da64a2c00df2273f846abcdfa92179f86aa088f08fe90c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyaccelsx-0.2.2-cp310-none-win32.whl
  • Upload date:
  • Size: 656.2 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.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 6d9130d3858812a78f66604bd08db34d9e5d54b974b0692f2dbe01229903defc
MD5 c9a9efd455ff0e5c8416668634f568cd
BLAKE2b-256 7b935473fdf056bc7e16ba1464662c1a9a5a000e9e53bc76c8993b9524e75027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d865ddd3defb5b48c85f5ee77dc80d97234864b85c00f53a44723dcd1692a75
MD5 39bd4f82b17ef69127fa97b3b5cfc2f0
BLAKE2b-256 455af837f0d713e3879080f5e4a4fd8d025a9b235528f6be90ec3ec2e8dd0260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b4c92ba883b72b597593421acffb0f0ab8d8fa3d8d16fe0cb12ce45fc92cc61
MD5 e3caae7521c81a9070ea21f441166feb
BLAKE2b-256 14304ac750596d08efd13ac8a3683a65e0166ffcde9057dd0322b6f140de12fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3fd2a7edb8cebc503863b7cdc45abe263011206b38aa7951c8f14e901626c857
MD5 7dbd59a3dd7ce02f4daa48a66b65f344
BLAKE2b-256 17de13edfe69df90682f03e1b65a744fdb8047335b18fefbe431dceffa3d7267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a13c101bae26aee829c16d4df1b0d64cdfd4db4ce1b46f00f92fd569ce9e68b1
MD5 2bac1edacc721ee7e64bc25373324f6f
BLAKE2b-256 ec5136e736c236f539975dec6c7137aa5434a487a23a1e9a9c42ad874148372b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f288e8153fb3f331eb6b2f41580e553854fffdaee84ebc515a6060ce9b331f0c
MD5 2332134754019c942cdb38d1976a658c
BLAKE2b-256 1986d24ea87774a72ba6c434e35cda1e7fdb7b97574d1952c4a123844e9adddd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 81518c905274c927bee12b3efb5c9a665041c399bdcf3544ed3df9f3b96f1634
MD5 1efe59467c0eadfa52dc17d7840e946b
BLAKE2b-256 0e9c92be422112d6b602f581d3f62559362bacf739da54bfe189129b37bde252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b320207d01b900603ee891563461ff4e15194c78ae4e146d56f4909124b8a8c4
MD5 709cc3078cde6c81e04493c0d94c707b
BLAKE2b-256 8af620383a5891b16e9077ea9561480508b55ca9309b45f4f760aacc3315d8d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 31ac4d6a88b68381d04342f756688e901c4c7fe2028e05497190909198c496b6
MD5 8b70cc4e043cafe7be03b7dcdc33de35
BLAKE2b-256 e29d381b8ffae1934b5db01200bb50b3c26329871092249b22248c9b8ebab8bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 51245400383cb09770408410a013910319ee3dad432ad8f3a95b043dc9a63861
MD5 77e063b810c743162fdb5bff94465f70
BLAKE2b-256 d811381c09164ad6057a25a5d4896a7da57d8cdb5caa9e400c1d6a80a59cccb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06b50fdc9abc73fcbc3193b7807193c0846ed25fbfa284d6a7cbbf333fda90fb
MD5 a635898bc4f181b37924589a3b144d60
BLAKE2b-256 b7f55bef050f09f29bd7c6f9a149e77e878d97a018c09110ebdf949c7291278b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48ca472c9804f1ee7a480f0c1cb98c3e5a95b344c6eafc71659de35001f1e310
MD5 577e69d6fd580cbfe7f079c56e7ef619
BLAKE2b-256 738d26ad9b62c204c1fc2b354d21c776825be352a5d957e87d0175407f8a8cbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 78e436fadb366887c324f7ef2c8a8b4ba12a5ba4bf4c620fc94fa898393d3bd3
MD5 8f826efe6cbe3d1dbaab2cb129fe7ab4
BLAKE2b-256 23620ca183dff89a9b48f57b57baf409f2ca5c008bb22ccf186a1a63963dc853

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyaccelsx-0.2.2-cp39-none-win32.whl
  • Upload date:
  • Size: 656.5 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.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 53bce5a9dfcdb4cef27cb0bd1a054052c1fa27a8acd28ead0e3d3e102bd7f11a
MD5 b7f197205ddf32dec377d9662649da81
BLAKE2b-256 0712e1ce23454d99790cd1b3c780a77f10e376bba596f320c78eba9e353605ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d612483fa1378832f11658a29561a0ec4ff812b679396315992568a7f5e7954
MD5 1b42ac33708f3f9afa3c99954b3f1745
BLAKE2b-256 ec27785d3816f5f2eab8e436725b2a47efebc42d83138ccd0efca23ed7f8e2f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e31a9cd668e419d5876ce777c640404086af55eca7e5ca4e18df7c0ba65454f1
MD5 4a759c64d35663c16c42e581751e2c35
BLAKE2b-256 b6b3c0d1b2e7b4295307c2bfe8d173fc930de611ae95eb816913a0b6c12827d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6479e7c69423e0bed8bcc7340d663daf543e14fbb70e92b4a41abae9daab534
MD5 bfd3265ba09538dd5243517e20c85bcc
BLAKE2b-256 b4a5b2b9b670df05ec04d5f36ed8e31f9210676b08a2983edbf79d7c116347c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 529d1d65f461ddb14dc16474d4fb2cce892bc406b6b370a56b04dafa18780cd1
MD5 450c5ecf0715084c556e848d016dc3d8
BLAKE2b-256 d4b9c59c994af33a6b550f0aae36f1cc40b8483d78688cd0418bccfbdee7fe55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da2ef3972c1df06c6574db616ac3c698ae19714527559f89583683a2b1ab5bc2
MD5 36e398bb2c0df4b33a483a2b5f96522a
BLAKE2b-256 4519528f1dc0cdd953880db69d9fc168013af2bc4949b99f71530d0ac43d4025

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dcf1b687ac0dd7d1d0969492255309401bf6acd945dcbef0c1e199edeb3e66da
MD5 12e384081db54e81b7c0d4bc0d48b60e
BLAKE2b-256 d48564d9cd869dab5eb5710f3540806bd8410afaa287fd2801d5922d36a56f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e26a2ad9eb3edc1cf01a925910a9d9fc282e383d15834c9a7cec5da57a0f93b7
MD5 3853517aa5c7e10516855c5a2c076c9f
BLAKE2b-256 1f9c52fb72b45d19afef5c00c2748f6af12871f0a15272175a61fc26ed289600

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5b81013cd5a1e683f21134202a9a3183541a8bd32a61069dbd4afa627a7ddbc7
MD5 247776f0bf5f6beb348d1e75fe810334
BLAKE2b-256 b817502264546ed2aff333efa0a4532b5d657fd4f1b06dedab2c3743ec8c816c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ad0f03c4f406e04ceb3e6d01d446136e671d86cb215f55e81fff720c8ab17b6d
MD5 181ad640ae2664baef08f5546c981a93
BLAKE2b-256 81e0c7b0cad4ebf8e58f1ed854566d6b05f8ffeaae019b49d4f7bbb853de3e04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a27c2c1ecaf5918fc6fe26775907e5b3101e28d8768c9f880ddc23a34ab9ba8
MD5 c9aa4be5b0c0f89f51e485aaab499df5
BLAKE2b-256 cbb8a5a3ea9759baaa89ee63fcd61456404dcb0d0dc4f36d26064ddbec676c4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4b6bc408e79755b01fde4fb4ce01154f5c5c7fdc910bb113254fa2cb47000ab
MD5 85b77c92b4c04791c4e9064983bead75
BLAKE2b-256 50b840a4ee1775fa2cb544f29a59639612d5df4c542d3e5b371cf65b48ef4989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 2587844a950c51963e338c501b54f2770f912de69ee770a6586b69760c0b5c25
MD5 1abec8bd912fabae667d2b62bfe47b50
BLAKE2b-256 846159ca4e3169fcecd7efbde1943d34016db72248f8af4af477c51a40524e44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyaccelsx-0.2.2-cp38-none-win32.whl
  • Upload date:
  • Size: 656.4 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.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 0dfaba7b812546ac78664bcdbe38f6c35da0ce87fffc9d3548f599c7a6131b6b
MD5 8ed2072a29f707230a3d92549d78f127
BLAKE2b-256 378716b860b4d5415dc7dcbbe69d9b0ff307294419824fed7417bd72893a050f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4cd3bb3bdb74ff07d280186fd9df5a2b2d21bec61c331500553896eddcbead3d
MD5 77feefb7c558b1b5dabdae62a24e4f98
BLAKE2b-256 a39530cbe009bb270d204a847601a09ae610af675c2a87919fb524e3750f40d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 188d621508c2c4ef36bb84694d34c23f1f7fd0eea40ece0152844f493207b82e
MD5 433804eab1a91a601ab8dec8efbf6571
BLAKE2b-256 53bf942b282b387014c1712f2b7bacde4a6eb7f7d8d0cf8a29bee4d790598f4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 39fa8eb8a028ee9f0598f5674b802dbe5b9e90e9028edd70124ddf21728f34e7
MD5 18eba49bfb2b8c1356286e8e8e828f48
BLAKE2b-256 bf767244cb3b41a91d93c3f2fced1e7868a20e431ee45ec0c6bc2526a1de2c42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 989f9425aabfaff2e8953dd862b61cdc6796c97af0b4863e7f85cbe6a0a806ce
MD5 436f20232c9219037d99b1ae1d45c8e7
BLAKE2b-256 3d4fb813bb813806807d2d89c8ba82006eb8c97234c6e509d3a1421f1bd11288

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5be7a019f99345f6644355ab7cb2c89bd8eb0c2d1d19db026eca36bc0c8bf6ba
MD5 0823b609be91c59c46a226ab4c6879a8
BLAKE2b-256 8695f362ad8a6b8cf31d3c9cf97dec93e97a7803b921a54f67a7d00a644958b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 65b0f4fb8e578b8635e30d788f631defb56499f0d07ce12e88ee9678f52b3412
MD5 106f54d00b2b46a0dbbce10be4704ae1
BLAKE2b-256 bc399d4f9e890a76179582bc6186f1116a626a27c6ca356db30ec5f777ab0846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e30230a830a9d4fc6f042f690105ac91bd0df3ebc163179213f03a3ded44276
MD5 d814dcec8a619b3f94f3bfdee93e422f
BLAKE2b-256 1305421650876fdaa8f9813f41fa7f039b5bb2b371715bdda1e7cc020831c9eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 983d3b1d1ae907fcdf43b453332fa5a610ed45215493e0da5e8749dbddda98f5
MD5 fa1be3c1604bc363cc4bba4eb7598d06
BLAKE2b-256 74ee71603ec333997a2e98bfecc2583dcbabbb36b4c23884e9645f302b3581f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a83d616d19dd15a7f0db5f8dfb0b48d7c328de90bbc899578d14a9f167d88e0a
MD5 482d34b8949d4d8751f2f3ef8b7daa2f
BLAKE2b-256 2f898b4161cc25ec83c58f9c28e900cfedba120fcf6480c2defb869230fb903f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd47d0fbec78902a5def4778204e792011cf075c017eaf2ff358af135445ebc6
MD5 878e867b7b51b281dfe53ab1915fad17
BLAKE2b-256 d1b32381069d9a86673e6e15ed9a4925c47e1a70014457e76aaf1e51c5cadd54

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