Skip to main content

No project description provided

Project description

Pyaccelsx

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

Examples

Writing a Simple Workbook

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")

Performance

We evaluate pyaccelsx performance on writing 4,000 rows, 50 columns, and 1 sheet, and used hyperfine to compare the performance with rust_xlsxwriter, XlsxWriter, and openpyxl.

As of testing, we used the following versions:

  • rust_xlsxwriter == 0.77.0
  • XlsxWriter == 3.1.9
  • openpyxl == 3.0.9

XlsxWriter, openpyxl, and pyaccelsx

$ hyperfine 'python3 xlsxwriter_test.py' 'python3 openpyxl_test.py' 'python3 pyaccelsx_test.py' --warmup 5 --runs 20

Benchmark 1: python3 xlsxwriter_test.py
  Time (mean ± σ):     727.7 ms ±  19.0 ms    [User: 706.0 ms, System: 20.4 ms]
  Range (min  max):   704.6 ms  781.3 ms    20 runs
 
Benchmark 2: python3 openpyxl_test.py
  Time (mean ± σ):      1.860 s ±  0.061 s    [User: 2.133 s, System: 1.075 s]
  Range (min  max):    1.765 s   2.003 s    20 runs
 
Benchmark 3: python3 pyaccelsx_test.py
  Time (mean ± σ):     330.3 ms ±  12.2 ms    [User: 305.2 ms, System: 19.1 ms]
  Range (min  max):   314.1 ms  372.6 ms    20 runs
 
Summary
  'python3 pyaccelsx_test.py' ran
    2.20 ± 0.10 times faster than 'python3 xlsxwriter_test.py'
    5.63 ± 0.28 times faster than 'python3 openpyxl_test.py'

rust_xlsxwriter, XlsxWriter, openpyxl, and pyaccelsx

$ hyperfine './target/release/rust_test' 'python3 xlsxwriter_test.py' 'python3 openpyxl_test.py' 'python3 pyaccelsx_test.py' --warmup 5 --runs 20

Benchmark 1: ./target/release/rust_test
  Time (mean ± σ):     166.1 ms ±   3.5 ms    [User: 148.6 ms, System: 10.5 ms]
  Range (min  max):   160.5 ms  176.8 ms    20 runs
 
Benchmark 2: python3 xlsxwriter_test.py
  Time (mean ± σ):     765.4 ms ±  37.5 ms    [User: 734.7 ms, System: 29.4 ms]
  Range (min  max):   713.0 ms  862.0 ms    20 runs
 
Benchmark 3: python3 openpyxl_test.py
  Time (mean ± σ):      1.846 s ±  0.064 s    [User: 2.116 s, System: 1.071 s]
  Range (min  max):    1.747 s   1.979 s    20 runs
 
Benchmark 4: python3 pyaccelsx_test.py
  Time (mean ± σ):     324.8 ms ±  10.9 ms    [User: 302.1 ms, System: 16.7 ms]
  Range (min  max):   312.8 ms  360.9 ms    20 runs
 
Summary
  './target/release/rust_test' ran
    1.95 ± 0.08 times faster than 'python3 pyaccelsx_test.py'
    4.61 ± 0.25 times faster than 'python3 xlsxwriter_test.py'
   11.11 ± 0.45 times faster than 'python3 openpyxl_test.py'

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.3.tar.gz (13.5 kB view details)

Uploaded Source

Built Distributions

pyaccelsx-0.2.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (930.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (977.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pyaccelsx-0.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (939.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (896.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (930.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (977.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pyaccelsx-0.2.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (939.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (896.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (977.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (939.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (896.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.3-cp312-none-win_amd64.whl (741.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

pyaccelsx-0.2.3-cp312-none-win32.whl (690.9 kB view details)

Uploaded CPython 3.12 Windows x86

pyaccelsx-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (929.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (976.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pyaccelsx-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (940.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (896.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.3-cp312-cp312-macosx_11_0_arm64.whl (827.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyaccelsx-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl (830.3 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

pyaccelsx-0.2.3-cp311-none-win_amd64.whl (740.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyaccelsx-0.2.3-cp311-none-win32.whl (690.7 kB view details)

Uploaded CPython 3.11 Windows x86

pyaccelsx-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (928.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (975.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pyaccelsx-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (938.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (895.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.3-cp311-cp311-macosx_11_0_arm64.whl (827.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyaccelsx-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl (829.9 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

pyaccelsx-0.2.3-cp310-none-win_amd64.whl (740.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyaccelsx-0.2.3-cp310-none-win32.whl (690.8 kB view details)

Uploaded CPython 3.10 Windows x86

pyaccelsx-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (928.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (976.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pyaccelsx-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (939.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (895.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.3-cp310-cp310-macosx_11_0_arm64.whl (827.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyaccelsx-0.2.3-cp39-none-win_amd64.whl (740.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyaccelsx-0.2.3-cp39-none-win32.whl (691.0 kB view details)

Uploaded CPython 3.9 Windows x86

pyaccelsx-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (929.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (977.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pyaccelsx-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (940.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (896.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.3-cp39-cp39-macosx_11_0_arm64.whl (827.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyaccelsx-0.2.3-cp38-none-win_amd64.whl (740.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyaccelsx-0.2.3-cp38-none-win32.whl (690.5 kB view details)

Uploaded CPython 3.8 Windows x86

pyaccelsx-0.2.3-cp38-cp38-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.3-cp38-cp38-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (929.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (977.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

pyaccelsx-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (939.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (896.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyaccelsx-0.2.3.tar.gz
Algorithm Hash digest
SHA256 0c943c5d9d7b8f1b0a32e6fb580b6ba4a6ee35f4cdc6daa4a76f8187f1387cb9
MD5 b6df14d672753718d477580bf53299f4
BLAKE2b-256 b615beee4de394589c832206295f6a5c061fbe54194611480cd52becf1750ee4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91e78af047b32f981e09476c09907e23db3fdeb4df68680b89fee659652bcd2d
MD5 82b9c4c7f5f4dbac33a3e29fc8adff5b
BLAKE2b-256 0f2713b48fad7b931ea6f2a2043b84238cc7fdbcabab07bf8585fa327dc1bee9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 46eef9e8fb21420f8651ab11fe46eb2c35955982684836c23f8cb2329a6da166
MD5 3eb6f7d197087b5d6a0d168bf81e29d4
BLAKE2b-256 90458501a402037b907aed3ce0b5a76e1a2c917d130f226a23e9e1f02126381f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 294ac87e1fab565dcf0830452283523e7295707fd889aee3e48d8a6a1ed5ba75
MD5 1d85b604eb8cf882bdbb4be117084723
BLAKE2b-256 d2f5d4969f7b4b5d382486144614cb5b425406f7656dfb58c55458b4f18f78f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67be94824e2670dd8d6b86b018d71ee8902353e31156d307d727278094f08187
MD5 a449e29aa65d32808378e63f60c801ad
BLAKE2b-256 f6c2a29016a2f29585ecc996ec92a911d1f35a71b4e43195455ba79f3ac7bc83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 075823251f1ea1103496527b055e5e47a8a598006005ea759fea5e882ab2bcaa
MD5 535f2c89315754f8fbdeb32a9728a6e2
BLAKE2b-256 7c9fa5867e40f4ed12f995b61ea75fc49f556628634e2cb6144a4ac510d8393a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7839750e5e46f7a12d06e3ed55954a15d9ed5ee570fa731368989317c9d0717f
MD5 876f42bb7a489373e140ca527cb23d45
BLAKE2b-256 ccb31916035271aac33f6d1e989f1bad3721d6482dc0e6f5f16f0325b7055fb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b191216b1a4489f097e320fa03d4808749cbaf1e066fadd98d4d3993a2e842c
MD5 346eea12ec2ff42ede15684b6a0d6fa8
BLAKE2b-256 eeea78febaadd8378c08c4a08b6e3423bf09ebccce6d89d575accb9f7d5ed9b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 be2b2c8410a715e1185df072cc9527dd2dcbc92a6a781f0e47512189688ce89a
MD5 4e9ab71bb3a00505b086e0a8c69958db
BLAKE2b-256 c6042a903877cab7d6b8179cc1a95f1bf945d55568323bd568613f8a494f1e58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6dcf1a45aa2405bbf6d90ea494f51f116d7e154269055a4b7808115a61f82559
MD5 41871e20bfc7700270010066f306377e
BLAKE2b-256 b135713f1387888cbfdf712b111ea42d0734521f28778dc8fdcceab6f57ebdc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eba4cf5aed1358a3638888ec238bafa3f2d9993dfffd85db1cd2c7216213f09c
MD5 fe7afd7218a082f509e84d4f8fc52907
BLAKE2b-256 dfa6d10af4d22dc765b8fa317550da9fe88d6146ab16ce7bdeba2c4e4af19a6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 886e2666d066393362435bdad26c487f0614c94094a64c497ab8052a55f88d2f
MD5 a20c8d10a9ad90c14f613576273e59f3
BLAKE2b-256 8fabf50c0fed830880b15bdfe1e71b9e07885231785fc090b5b2e1a6e2bb7fa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b1f9c1b280e201d1403945116e213a0a9eae37caacf5699de61146d62a71e446
MD5 91c0e898186e6dd9612b03e38b445784
BLAKE2b-256 de0af145e2d8c998c42621b9112db08fa2ae7f4bea418bd14ac96ef73476f8cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b6660bab17134f0aa4778bba0fd5c91b1c28d8ac209c86fdcbf72aa4f490bba9
MD5 a3fa04e6fad8f2633441e50e7c22b274
BLAKE2b-256 01c892d729a239afa61c38e75b93e597474f1599aad929299db8316a94315fb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86ff2995dadb704ce4445089ec89fc34aa1728327c5d675d25f4341512b3cba3
MD5 4c891ba323caf181085906eb62f8b688
BLAKE2b-256 950f80f9c57c7e6b55a54b0d920e5f1a8e18aca91fd680ec63c80983aa21802e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64891a1bb6d781d4b195ff6f5213ecf9ce219831a49d0eac7ecbfa42d81431e7
MD5 838636d58bb6acfe388be6501bf97347
BLAKE2b-256 2c12bb5c596bda374c2f80f31695bee2ab8d504b78c91769c95943ed4f0b4b29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f987bdec2e0ef52cffe27804e9eb70ba4f61384d689e27c4d50ee46eaa09ce5
MD5 78eec5711f75caf22871f262b40ab241
BLAKE2b-256 7eb943e90b3b366171f7819384f7bbeaf97599bb9aff275c082f2e67a55f8d48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 52e9f9f4243c0d5a4e715854857d15107924ba9fe78b9797aeeedc5d168d3618
MD5 ed15fc1517e3463a2c8aa669b4e988fa
BLAKE2b-256 146a9cbacf4355bf498d6f9b06dc5fa344f54ba03bb2ef407fd93d38377a8d17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6cf5e5c522a87b6af9f6f4506616440ca4742692c88b5f718157be8bf5bf1b71
MD5 d77e336a5a0bced4ddbd522590b8a151
BLAKE2b-256 106d1574c6d48cb11a275100d02c22ba199085ce87b9f6bd042982738abace9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c83add72dc3835d1b440b6b7ba7792d73eaa4939a2d2c54eed1d54aa465f501b
MD5 18aaa060a360b085b62e87d3d502c227
BLAKE2b-256 6afdda3237a5caf561d05cd86a40de972ff532807406b98a5d16e036a703f488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef67bc73ab540793ea779fcc82c2d3066eabe5eebb90a7ba70fec26469427f9f
MD5 a1fa6cf525668e68fdf74c44b431efed
BLAKE2b-256 c915f92308991753536ff106cfe3ffe0b6a6331734d1281a0643454f6f8835e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91d293d559fbe9d23df0dd78310d77e0be26453e8a1dfefc35c33e0c9364339b
MD5 c9cf553521014d088625152ed98e5966
BLAKE2b-256 bcc6a7c5103c1d7e9dcba971a0548e763f41fa82d545be82e1dd2d9ca9484687

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89af4cb86e8cea0fd65a22b3e34b7ff0f3e5b119b69239821100367f72778250
MD5 709da6e069e923a7d7c7e1e07dd9b4d7
BLAKE2b-256 b84a2f11db41977e740fdc8fb249414293dbe56856b4a28b559bf2761e6284e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d4034cfcb2042ab67a74babc1af18d6cab5a252ae60bc9f9b8458acc391dce71
MD5 dbcf7b36f3c00dda80417a91298d1fca
BLAKE2b-256 e7fe804bd4ed96f51fa977b8fac270ced806bc2957f32a955b3f6ca7a3ab1e34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ffccc8ad8b260bfeab101333f03634106b328b891f597e401b8aa9f1b9c3113
MD5 9c29115ce56adbf9e63a8b6721367aee
BLAKE2b-256 abb89106c6fd2030f78ec71335ceb6efb60f1aa4ac71a8af70c021d5744237b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a278d8297d60d96406510d7701f59b7bfec1ed29149ddda6783247fa418a3760
MD5 3e91500be7d8777fc0c4cb4cbee86e3a
BLAKE2b-256 e255a339193a1c6067bf06c1477b8273cb7c476e3bed36ee39295b78d19dcdf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3400a47d853faac64eef2baf1f6dc9cf615032b31d8d56eb7c5b42a4dd3cb011
MD5 4f4d85b9eaa3c96ae5beca625df8be3a
BLAKE2b-256 7771bf5b9b46947d638b1b1d9bf918bb5fbb6a6e8b5e8eb6f8e3baf3c91871c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e2a93c5f5d562f0856a87c355b1894c3483ca87dd8e7e31dc116fbb41f38e3ab
MD5 ec6814beb6f4e13a00d2438e39498d25
BLAKE2b-256 c31d70ae6330974f8f939783307553a54e8aef01054a955c4e79defee42b9825

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73a24899942032c81803d2f9e812d0a0d5e16218579896c8ddf36e69177809f5
MD5 3aa6068597610d7a4f38f6e44ffcf65f
BLAKE2b-256 6e52dcaf947e3bfb1178d844b0d7cb94025dae4f3680a2a6d6cd7d3dae11a697

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 07cec90cfb585fedfe7dc1164455f40e1ae22efb5aa1dd07121b6fb501005249
MD5 774274299c2abc6f33084f1a79ee29d3
BLAKE2b-256 5b1682b6eb3f42c5fbaee3a610ac622b6c0f4e0dc05c76a5734acf7ade383167

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyaccelsx-0.2.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 6f011946a9c1cf40f48929cf197087afb51813a5c1ebcf1e0dd71df11362bf82
MD5 a6eb66a96ec4dcec9a6ebd1204217f40
BLAKE2b-256 738b61127d9999a7641cd66e5c9ef810a75b10d937c7b52b18324b6cea1b7a6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31c03a54e00d49454b30f3003437f5943c19f42c029eef1a74a1b77252b3e2c5
MD5 400d6fa553f164f822cdf260fa311180
BLAKE2b-256 8b552f397359ccb07c07e705c8f3d8809e027e5fe6fc66d76453e4e893527074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb3a4d5a858a8ec563e9062f8816295094251341790a9a7b6a9fcc48eeb84726
MD5 fc5ba291dc0a67252d8a9aecdf27dfc1
BLAKE2b-256 85e7cb760adf55e3fd86f9114ff7471234e8b075637e49f57e6f9f51a7e3aac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be4cacecbc503ec62984bf5a24eac48e2cb99740baaeb92799a11073dc11c9da
MD5 99ebe3626715733fb83bd60fb37c7cee
BLAKE2b-256 7594770378dd3eb44a5539b30aa335dc7701ddc3d87421815b04d49b944982d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 475ac722d400f125a04da324cd5cf3de2908008a71e8714395ded1fc1d247e0a
MD5 0e86d10e10eb2f9988e61d44d3a2139d
BLAKE2b-256 eadd0db8b7ef7f98a47ee661519766abaccafaf599d25758cd92fb0cdd1e0032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ddc3a5acef2d2c5d49b0f74c5311b861d3a1cb9a36a731ca29eda77fc73fe9d
MD5 975888335d621bbd8d4a0611fc0bbe8f
BLAKE2b-256 13d7e70659ce8039911b68be282535b52406b00d967b29e2571401acdaa0c809

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6efd3fd1687c89efa610da813e0bbea59e1191656cac8ea7a540a70cbd4cbc00
MD5 b5cfb41aecc626c789e77e7eb184f83e
BLAKE2b-256 e9a133feee6a95855a369ae191a72bdf15b04ccd78757dc77fb7db19e56468f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3dbc1cef0ed8abdfbc8bfffafa01685b78e5a9015a899baa00236144db6f8b47
MD5 e5420a9644ef37db1e46a53df65ce78f
BLAKE2b-256 ec79a77881b0ccb1e5e97c0eef366f52c1a87461e9b1c24a83dfad19c4eca8f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a69e5407b1a37b6d6b53d1d12088193ec83e06998e19bae670407e5af7462ae5
MD5 2edf36d8e65b754d923feed28fbf03fb
BLAKE2b-256 890e634533d2e6d0de4de9ca53ca5c528ad7e00eb75cbec2f373eb488ddff527

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 323c0382cdcbe893e7e4208dd9b748c69578c63b6acdcdd3b8474c5a301a0192
MD5 7b67fca520d0eb56924a706dd0584996
BLAKE2b-256 7d9fb687be84ffd4351d612a990e2f4a3effc88b20099881d53eb2b7f9dff822

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f493a4880cf53d5ae9828a5b5732e27cffe7d2688c50f752c8ece6fdb163b01a
MD5 a2ef5a3bcb98f1a9a3698475ad169874
BLAKE2b-256 49c7eb392cb647c1786dcd380e34bda0bf2511b3e037cab510b428df6e8c7e3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e809f85c20c583828851bdb4b14515d0f560324d7f01d85df339071be43b1fa
MD5 7e735fbd19db2310a122102a5c630a40
BLAKE2b-256 f75b04a2ab70ec7a8165b4f93eaf89ed8621b9b0855c2bf3f376764b35c26356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b2330869cd0c2600ee285b67f6e371a4c35e11142c183e9148f7030777afcf81
MD5 7b9d74051d0c2a1fe6a018e3acec2270
BLAKE2b-256 78f1b3b523248f68b3d108b2f06077609cc590750a24fe29a0e92fd33357819a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 d20b4a1aa13934829aaa7b6a5fdfb181dd8b3cef0c46e23c49bd1aeb41dfb4e1
MD5 4cc071a50666d4cc540a026531337a1c
BLAKE2b-256 4fa0a73e190d130e789b915e0940aa9d653852b75df26b6f30df4d394dc9553a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyaccelsx-0.2.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 87042160bf490e18437d0d68fd68e1976a60086a1f0219d1fa009cfe8c12fcc9
MD5 43bfd13df7dd900f3c07e8c0e7f763f9
BLAKE2b-256 c75a67041778f0b14b8e59e5a07e85c434cae83b23371211d065a70282c05ff5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 913bfcdc037aeaee914d335aa3b8f556418bb38c1c7bb7c96069566b3fbbee66
MD5 257e7721e990c45bd3453fa21d834c4d
BLAKE2b-256 6e07cdfbe409aee3b36dde01a3f7667ac9974efc8a4fafabb129f585ae7655b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6a85f275697cdb0e418623105587a4d65eb95c5557c84becedd1eecb84ea47ce
MD5 c5dad2471fce5d9dd979f91adc87c9ca
BLAKE2b-256 3ecd3a9cb5a1e06e88b2fc8cbdadea965fb2ca477c287e97749442ba94ee25fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8c298de5633aa84823d224be5fbe4ddf74e1aa6dd06b5afd4140eb78fb6abe1e
MD5 6801126250c61227c2e7c4fc23b9cb44
BLAKE2b-256 7bd58eca42b0c386b99b5d5bbebf53e609a7804dba74240a8304b3788a273d38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a803b752eff100553e40d1293e8d9026fe46b29600769bcb53eac8784a9f2ee0
MD5 00942a7c31b2f78baf8ed63da2959aa4
BLAKE2b-256 04e7db28aab2f6780909a3668b2e1f73edcb920a7ad818f65393b96aef81f9a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68cc5ffc023c04ce47a1588fa9e4d544d9558162d79337884883bc34d0767984
MD5 dbdce0804a4a167b1dd418485aecda6a
BLAKE2b-256 4ee67c5d001c2f6ac90f328a1f668354303dfc15938d029110d0592aeb0c50f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba0cd10103244366926ffa8e1bdcd0031bf0dcd670972636a2156b0c1b5d89ce
MD5 7551fe8933f0bfcf8ab4c95a8c682a06
BLAKE2b-256 1b5fd273e0a69f5d5e4baa79cd7c41e0d43e78fccc05376aeeb0bb4be67e36b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 07438ece4d55938d4783be6d5db967b886d829a1f7ac1b770d6663661bd585ce
MD5 85d080e76d4f9748989515793de4e832
BLAKE2b-256 1820b8bb6679faf802d8b871559208a582c9bfc68368202708f5d3fee78f6944

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f28c924308c9a602defd989bf2e06126016e3f9643bf167252a3a2f6936694dd
MD5 154963fd1e77b133c65ee86abd47c72d
BLAKE2b-256 b10e45230c801573a07447f55beb2ed6899e6d23802dabe0fc24463a3e05ff77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 96a531ae4c40bb2867e402e26bb119e025129464d50d54d06dc5d21a2a818cb4
MD5 8006f7ca13e2a4a832084e0a753c16e3
BLAKE2b-256 5ea709cfdcc36765e03d35575482f1dcc580489e1d5a0307551bf1ba9a85f02d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00b214fafcaa72fb95e82cbf308f09fca1b076d61155763b1d76f911f07cec89
MD5 a2f01140c5423ad25b1c01e3a881e6dc
BLAKE2b-256 9969bf2356b561d8961e030c821baad98335b22e9c46293a9b8182080d4b463a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d472a45f166eb6a3a2112605b9be637b002442a46bb04be1ac6318b1ad188f6
MD5 7cba172969e11976d9471c630a75453a
BLAKE2b-256 0cd373dab14c1ad7cdb33cbb71515f537434cf820498d504887a759a9a73fb7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9bb07c7a8ee83a86a60bf502d0a84b2438eb281f85e33cff96191230970c1e12
MD5 1c8467eed2554d66e123c5b50a1b5a73
BLAKE2b-256 57343589557934ae707a93aea20df1f0667132da815e115b7f81fbad40b382df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 956c94cc0a123e059afab00c59470dddb10136db1742206bf832e21c11b6ace6
MD5 8db1ffdb6c9bdbee14cc7456f6b6fa2a
BLAKE2b-256 af4b6e017562cdfcdfbfc1b57c2b5209a9de9248cf90fc584ab500297ac5e297

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyaccelsx-0.2.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 596d57016027de6a32c22d198bb369230b7711a180e8d4bf9773f152f956cb6b
MD5 71eab5b59f69e908089b46c249cb408b
BLAKE2b-256 c520e55d93f94826496023cd1f9f13adfd14fed076669a48478a89fa6c1b5a10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6bf1c1fd0335a5bc453f12313ecccbdee47fe2dea69e4f7b3991522615982588
MD5 7d272bd9fa5f5caae9bf4b8b4eb33f40
BLAKE2b-256 ac9a67add0ff2aed4827c248420e61dc1b6d019aa66e58db8b44b43284659a5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 36ac9a8cca388ed1d829ddec6ddfceb240de60fd823dd1ee340a65bc0ec4d996
MD5 994d85192b9f98ab6f28e6c99ed71303
BLAKE2b-256 cac9e50b9c70f2f165a94a6ba9ef363a70923a180e9f13c51d1ae25541c39430

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 043c7467616c361f581fd183caedf7941f59cbad788917da8139fb413f484410
MD5 6513d5b15c5845936d3770207182fce4
BLAKE2b-256 32501b6f32c114e19b8f3364faf8e7bf2374b06e5b1f74c0a79202a5494f4e57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f22aa30ab3d079d97eba7b537278bd4095a418d74b5f109ed35ee1e97bd702d6
MD5 f19853ad9f4e4d39b9afc5a4d9c21bd4
BLAKE2b-256 3663feb6b19d2ceca4ed6cbf069998f6b38e7571690e993228cbbb1afc90b72d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cde31a721e3cb313b4db0bfb14186936ad22668dc0184303ff9c865cf4f4ff3c
MD5 11bea261f406b186e21e529f9b62dbf5
BLAKE2b-256 2ebac8ec4008a737e9e8678adbdd0e0f63d9f45eec02417053dfcc49bf93e78e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5830ba998e02da4e5460b640c7b4a55dd5ae2c478c02f9c28ea9fe31757920ff
MD5 9df169e249b6e33f45e77624f7cefcfe
BLAKE2b-256 9cf5796b1220147d72ddcfe71c4ec87348690742ac0c545d50189cb2a1c7e0d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59e6233f67e767970fe7bfe602e12a89ba48646965a32b13ffa43ae6d7ed7bf1
MD5 c649ed25908e82c3b7f35cbb47ebf89a
BLAKE2b-256 b420ec8db310b2a726ae9baf9598bea40f53a40a84e7d1942dd1563d905d9b2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ddf05e7b3d28591ecfb9a03e995f39c93db681ace6b0ee11f0f4330a51b36c19
MD5 ccdf50b7de86929610e136ca91170067
BLAKE2b-256 215cdcd7ae213ed07815815df8208841baa2ad45c92bbdf00cb0e00a122481d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 65df8b1b1650c06be0d8fea81af63f2d9015f68c3f3634c6e0566bbcc539d5ef
MD5 08e950937776aa59d77ecc19993a2ede
BLAKE2b-256 43af15998fd1ec001908c2df9d1dcce492902c69b488bee0408f352ebe2f30ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4aa520189cf9056c5790c139e8554b6a7751d7a4ed9acb1dc749ef6250edd74
MD5 d2c10269c3341b67f663e0aea88917e3
BLAKE2b-256 f411b5670cfbefc32ec55aea0996b73502051e960a12c10c09b33924d09ae776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6dacad0518f19d78237dfc8cb68f47cda934d249281ede621ede912fac58cf6
MD5 946698605fceab7dd092a16b6dfd4317
BLAKE2b-256 ff768f85a43777028ec6aff156b48e6304486021aaef1cdf7cfd012f95a808d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 85059600ad24826e2f19fbb0a8d6d65fd72565bd3f14709aa9662c7d8f8522a8
MD5 721e7d92f124dc6cfb5bceaacd00e945
BLAKE2b-256 546a7132c3cba45a145b7cf08b4533bdf112448d46d0b3e813be323759876d11

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyaccelsx-0.2.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 55cf932107ee8952022793c3879b2063068e74579936e2108cfd141dbcd36d1d
MD5 02d44cc6d3e2c36c9edb310ae799569a
BLAKE2b-256 63fb60a3bde0303d9950180bba537b6f4348f714d1059f45de7d36db676b0e27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aacbb805eac0c624cba9afae9adf1df3be2c3f8f83578a952b88bddf848543d0
MD5 83c9cf9447a8eeb5fd5ba1db93386ad3
BLAKE2b-256 e2189d8ac85396bc67718908351b601c098817614d3e341df3a13bfff6a84347

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 80f2c1d6026fd7568567e860dbad38b31ede246bfcbbb4fc492abbc80cd8bcaf
MD5 fa32f7614b75d9201e20ced53ed331c9
BLAKE2b-256 e2825c13a83b76dd9d14abf11757e87d9aaccab0d65f04c98191da2277538365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f6f08efdf9a966362a61a82b7311f37c599408253586eb3d9f3879ac5b1d7c9e
MD5 cfc1613ae5cfa57fb05ab21a398e09a4
BLAKE2b-256 ca4b906022a7cab9579fe4ab7ce5658e2b2448ec49b9a00cd4920f398420ca76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6af77a3229abd2b3a3f5698bc77180acb1a5c3bd77a45d49f952b9bf2cc1071
MD5 9235211aca8157dad5bf157ecd99d7e6
BLAKE2b-256 761bc669671dab645cc348c516e200292bbdb766e5eb51014ba9e16c62055689

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba238caaa0fe5b5cbb957473d4400b5a4fefad2cc4c8bdff75a8a3dc612bba99
MD5 8c3dc4e2e3939ca758549f20b303513d
BLAKE2b-256 8a15ea433515f352446b17774ead844188639b211cb0bdb8dbd6cf8b7717ed49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a03ba5417a8427873c5100c926b17e43a57f380cb74f339207aa3728279e8b25
MD5 c1f52c76960c7b7eaf17a341aa51db05
BLAKE2b-256 c11278456065fc967e8c1372ca2f012be275675e9776f9686ea9351d49a4959f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 379e6ba91fe8d66b88420c477643767c9a1c6ae280ff88c7eedf142a9b4fb940
MD5 47341ae8f7bd762d3cef742094e6082f
BLAKE2b-256 4fca368a5dded96953638f2a52c33cfafef729411ae8927bcd8988456561a67a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fbe19c73f94b9b3dc614ef084d0108fdc93112a2cf0907445bf0e1c9f99ac25b
MD5 e45701adfd7390350c1ab35713336ed2
BLAKE2b-256 12becbf5900e20912b31418f75c19daa0ee8728895e294717cc7852db94b027c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c112611467f65b8fc32fa031d1ce05df1ea6aca5605a1ec54a5527ab9d75c53f
MD5 bc58fd092721607c6914f18d57cbd115
BLAKE2b-256 4b368da0c84f7218095ce23e1d1769670b00905e867a83c456fd1b63acaa5914

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 659d8b4ec99564e95a1742255d6ee857143c7cb97e58f0166dd6cfd5d9ab4959
MD5 3b6f142491ff0c35cbc5570fdfe0c264
BLAKE2b-256 8b4fe13b130a7ef7b952a737595c3961a4eb8edaf210d409013f2a9ebc3c2625

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 547c96016256e720f29e13e656c383c10471ebdc6a3b458c1353f676e84abaa7
MD5 a3cc9b13824f6cd2af69007377af12c0
BLAKE2b-256 983f24c6dcf6aaec8a8ed6ae72100442dc3a0fd5d61d069efc2d3386e833df6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 82eb731c8ed4960f668941777bd14ef308d126577b7004af89921ddcfccca5b0
MD5 b6bf80f175d5534c7ca727c7feb15f45
BLAKE2b-256 8dd638f06615427e2a0a5f554120a45d97c96fc45d598873b1905e9675bd2481

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyaccelsx-0.2.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 58bce4a1a93a7dc4704b8d167307c7598010bd6f559c02db07dcb4a9376fd666
MD5 b520177e6cdf9e043cbf292a71145406
BLAKE2b-256 5cbbe7c935b852aa3d5a56cc9a5117f249265cd604b71cb74c96e569df4f28e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b7dd9707d3d6b8c1edbd8b1410b1dfc08c5894f19070e19f15f4a477ad93542
MD5 8a72d52c1db177c805924edf0fe2f74f
BLAKE2b-256 7dc12b9e31fcd0fe2ac2230623e8009b1e4ec0011d08c97809f39eb56d0d606e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 980af676191c8c701515d227540807d8bafb585653f6f6e7a744a9ab9693f337
MD5 db830edae6e269edff1cec1b7506fe38
BLAKE2b-256 5a88c4bea94f2fb002da271f19e2b1b6196ca5bcb9b1095fe7e4cb63c0fa9aa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 448b750c96b86de6a71a2b0ff7885caaa81812e7f6db715b35a6c4a748e31af4
MD5 9dbae2bfe8794f333a903952b3c3152a
BLAKE2b-256 6619aa1183238d976fe40818abfb9ed594715d994aeb6b26b3a60c96f0b581a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5adfb2c9e6296b0217abe4c542501c3d4503bd2bbf4180950f3afa9abe432492
MD5 b903e6043a6c974676753a562b88c0e0
BLAKE2b-256 0472ea987c82ed0feb318f0516e3776d2af6b827b082d627692ddf14774eb1c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb7c5620a057549e63c7aaec34596a20d72b73d1dec62b8a70bc12c4491a68b7
MD5 cac5aa0f1d0f98834d305cbe1d9a5d1f
BLAKE2b-256 5a5363bf096ac2266baa3cc74336c7fd0070b3a372f8c9555ce939dd441a1442

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de7c3b2fbca6df7ba72b3725b7c8ae4f177823e2695c080483ec0542b779c9ae
MD5 8202f92ecf1afafb4fc7b1308646b920
BLAKE2b-256 8ff02c782f00ddd3521e138d7b55c79f385e829b0223d17b09aff2195c7d3580

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc14926fdf34b7e23ecce4e70d6c3927e43f1b4ec9eb5c6d3a1b6afa2bf7da42
MD5 ca883182006c3a5f8e0dfcc1b4e2f745
BLAKE2b-256 9ed77bd4ffefdb647ef55be643ec9712ad2a66bf1bb928a8f14fb2b2bf395546

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e54a806c36787335d1c2a4b30a76076d7b28fd49df4007108a15030c463398ac
MD5 3f3feca056f5e6752da019d863333fbe
BLAKE2b-256 ed6b0d7e2d41d333ee9b2d515afec634a81f2ef7011a57ae9bfd94dd906c2e03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ed0f027085352a481cc0262cea4cedd80b05805cffddc181788d904a4f76514
MD5 29070ef4b09b3eeed06210c564f024cd
BLAKE2b-256 709c7e13ea5c54b58903210942e10474c2740bfbd1347725624f4a3cb710d495

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fbbaa40e4a167f90d003e1fa70c18d7e3a9d26fbeb4cda60a40463ed3438bf9d
MD5 183ac673673552c63056042f6a37623d
BLAKE2b-256 9748fcd4e1de76643193d8c4cc8bd7c36dfa5e25f8c5beb89c28552adc0eac22

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