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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pyaccelsx-0.2.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyaccelsx-0.2.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyaccelsx-0.2.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyaccelsx-0.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (996.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyaccelsx-0.2.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pyaccelsx-0.2.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (968.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyaccelsx-0.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyaccelsx-0.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyaccelsx-0.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (996.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyaccelsx-0.2.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pyaccelsx-0.2.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (967.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyaccelsx-0.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyaccelsx-0.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyaccelsx-0.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (968.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (994.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

pyaccelsx-0.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyaccelsx-0.2.5-cp313-cp313t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyaccelsx-0.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyaccelsx-0.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pyaccelsx-0.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (998.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (966.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.5-cp313-cp313-win_amd64.whl (793.2 kB view details)

Uploaded CPython 3.13Windows x86-64

pyaccelsx-0.2.5-cp313-cp313-win32.whl (736.9 kB view details)

Uploaded CPython 3.13Windows x86

pyaccelsx-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.5-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyaccelsx-0.2.5-cp313-cp313-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyaccelsx-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (995.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pyaccelsx-0.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (966.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.5-cp313-cp313-macosx_11_0_arm64.whl (887.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyaccelsx-0.2.5-cp313-cp313-macosx_10_12_x86_64.whl (935.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyaccelsx-0.2.5-cp312-cp312-win_amd64.whl (793.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pyaccelsx-0.2.5-cp312-cp312-win32.whl (737.3 kB view details)

Uploaded CPython 3.12Windows x86

pyaccelsx-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.5-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyaccelsx-0.2.5-cp312-cp312-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (995.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pyaccelsx-0.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (967.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.5-cp312-cp312-macosx_11_0_arm64.whl (887.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyaccelsx-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl (935.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyaccelsx-0.2.5-cp311-cp311-win_amd64.whl (793.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pyaccelsx-0.2.5-cp311-cp311-win32.whl (739.4 kB view details)

Uploaded CPython 3.11Windows x86

pyaccelsx-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.5-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyaccelsx-0.2.5-cp311-cp311-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (995.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pyaccelsx-0.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (967.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.5-cp311-cp311-macosx_11_0_arm64.whl (892.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyaccelsx-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl (939.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pyaccelsx-0.2.5-cp310-cp310-win_amd64.whl (792.8 kB view details)

Uploaded CPython 3.10Windows x86-64

pyaccelsx-0.2.5-cp310-cp310-win32.whl (739.2 kB view details)

Uploaded CPython 3.10Windows x86

pyaccelsx-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.5-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyaccelsx-0.2.5-cp310-cp310-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (994.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pyaccelsx-0.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (967.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.5-cp39-cp39-win_amd64.whl (794.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pyaccelsx-0.2.5-cp39-cp39-win32.whl (739.8 kB view details)

Uploaded CPython 3.9Windows x86

pyaccelsx-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.5-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pyaccelsx-0.2.5-cp39-cp39-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (995.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pyaccelsx-0.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (968.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyaccelsx-0.2.5-cp38-cp38-win_amd64.whl (793.4 kB view details)

Uploaded CPython 3.8Windows x86-64

pyaccelsx-0.2.5-cp38-cp38-win32.whl (739.8 kB view details)

Uploaded CPython 3.8Windows x86

pyaccelsx-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.5-cp38-cp38-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pyaccelsx-0.2.5-cp38-cp38-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (995.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pyaccelsx-0.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

pyaccelsx-0.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (968.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyaccelsx-0.2.5.tar.gz
Algorithm Hash digest
SHA256 6c24032029805492cacca56615a76ee936a0489634554b97cadf0c77df3e0986
MD5 83f160e29e679b9009a6bef1b3391aa0
BLAKE2b-256 2f137ca257fc125aaa923c68001a067bebdd9ab8a0f6fac53594f59effed32f2

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb4e82744e3949a75261789748227a5991ae08298a81102d9f9981ab282eb132
MD5 e89d7c0e836e760509c4cb710f9e7ace
BLAKE2b-256 0431e7b653062651a55b9851183bf2ac8f3b31f005c48a8c890a2db6f548be65

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3374f4ff434875f16b85499641415e88dd97e6bebf3b0d9508de0b1fd886356d
MD5 1bfd2ea095602274635bf5ef97ca46b5
BLAKE2b-256 92fccf84897b2644f142a20faacd3ac34e290516f970f3c770becffeace70709

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9318beae4e5906dc0106c39359dd94c4110d64865b86f062ff445bc65493e48c
MD5 6557d9b580ca3aaf785c08dd68a58a68
BLAKE2b-256 a2f049a979a3d699d78e494724636069614b63277427cbc5f9bf793a12e7aa14

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3cf17a9ade34c86a7f9e902757a124136898df2eaa3d5c3791ea5ba21ac66baf
MD5 2cbf9b085408c183d8396e36c8ee0aa0
BLAKE2b-256 702133109b1217ee6682cc87b2ecf16e2489bbdc6bf41e49957bfdf902dba4b6

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f227f81a206216f069800797ec8c0fb7d304da20901cc0afa035b0c9369b10ac
MD5 cf8b8d49af10cdc4024143e2cf6e50b3
BLAKE2b-256 dfa37696e2c4aab98668c6b32d65d14acd018b8f3fcb1afbc7ec740924b4a633

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6355293ba58a6a09d0a95d9042f41c9aa14ab1c98dc502e79d8084eba432b466
MD5 b0caef348a1d673081181b8a8a7a4274
BLAKE2b-256 1587e195d8c5e04ee177709578801bcf85894672152879b4f124c7eb3fc97f45

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0b55d2f98398b6948b46afa94c21c264cd9c8c64d9996601914530148f85bec5
MD5 6dae749904b7cde13248f6a4eee09e8d
BLAKE2b-256 3c46289c7f41a302ac6eb5543b9a16285c79516dec0744cae89b38ecfee9003e

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a763f67e1598a5d1e432e1b1570c974f399949629251186f5b40826ce77bd0a7
MD5 6925b8d5af7602632f9e8f75b4657c7a
BLAKE2b-256 9472437cf1272d31f663aaa4c85ab95d8a0f53ddfd0a3e1c2f141b0e550bc677

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3732aa202c68479dafbf92d488f4f0bbdaa88057b938f8918b73f53289cd2db6
MD5 0c65adf27a2a909754e7a56dab835ea3
BLAKE2b-256 9c8bfacb28fe138a37a397b813996f5cbac4576ac8426284f2770facfda55bed

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfc1c391dc4ce5383751f0bdf781a5a4d686211318bf6b3e4f291e4c1730da33
MD5 422602fd318618354b2cd4fc508b874e
BLAKE2b-256 9e92432d46cc5937a11df510c776c295057a2d6776a53e36d8cac151c8239b5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6cc0b7b3aa7338e0d61be5c50aea96f9d696daaa825245600a2a7d3dd24283e
MD5 8b845b91a452e89b6b23b91f67ce683c
BLAKE2b-256 1ef3e95f5b9dfe7d103b7a610958432394a2566a53b85a81666c21e6ae093ed3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 37ccc5464a5184f005cffacf647260d94397c52b8f34c83a9f88c08134912e3c
MD5 2b66fe090469f02e122353800569c010
BLAKE2b-256 ad5fb8b895276ecc9ddd53aa85c470fdb3f64c187508f9289327d298e83b3b3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8001a58fe37123de951fd8457f5d37592d8ffbf7936d34d0e0393eab043e7afb
MD5 d5628e6b1b9ad21b1d6d950136b2aed9
BLAKE2b-256 4541e2fcd67d40919f2b80ce71c94934d8f199a7831a0700845c98a3f67d858a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c92dbfc73d6053f46e668e096e751bde20e1c644f0c5ecb1a5b64f9628fae2f8
MD5 e26b1963a490c613df0bdec944920271
BLAKE2b-256 420e425deb99207be4c93be59c1fb72102ddf83aa348ec779c4957bd55cd5af9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66c0640b1133cf1289fed0e979068d16a4e66115276b940f7b5be2466f129176
MD5 b9130fe82b2ae64cd41e4bcde6adc239
BLAKE2b-256 dd0aa92595903fcdfc547711c0ac0f657657b077c7f73010c11c61ff433fb955

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 179b6ed5e9f6abd534e69ac311e070126f3448e110e2721a453b949fd182734e
MD5 04a3b3b9b8e1bc8dc1d01967c27634f3
BLAKE2b-256 336308ab37d1f55ada8d7426c83fa6eb3ff3b2df883c885ff6c259e884fc4aa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ad5018668bc3aff112c9d0a89c10db5daf39a7b841aaee0e626802d1819dbd3
MD5 e5f55b678a5629e5d4ab34adf7a93091
BLAKE2b-256 7425cec668e07b82af359b30ebd0610191153dc4e6d09846e3c9f19d804a8979

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9086a870cc9cfdb4d8e758f4337d0f0e2b32d304ceec7368ed2d5003dfdd1acc
MD5 a1e305e8514a665417abd0b8c201b093
BLAKE2b-256 83aaaca7f3ebbccd6293ecc16d6fb731ec45fe1df5d86be694dc8c574050b84e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cdefe48259aed87e8d14e28d2cd1d4ab0016f94cca0c9a922ca1c538a7773a31
MD5 54c447274ff31f1378152ffa745f8c0b
BLAKE2b-256 6e71fec7558ff359125ed5d5c888e9f7ed12e0d930b5c9e9ae3e1f66d8f1c0ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65914def2320502bf9f445e1e0ed3eaa979f68b48e71064c18870f9dd581d9a2
MD5 e17eafa26526469df03787a2c237ce3b
BLAKE2b-256 85544b243bfcc681c3336f97d74f7cb8ce4d4ecdb6d9e1a8b53a94d3b68c6de0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0d1971cd782e2b6f343e39628321e3b6a304db8b2f1e5919fd205d0ee38d41f
MD5 b62fd50bdc2a2bbfa5caae5b9f5e3626
BLAKE2b-256 d477cb735d238054c75273b2b858adf2071c00dd13348c6cd2d00331f3421027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 baf48db200df6e076f14466e61486e3e7ffab73d8907613ef87dad1e0a5e9ddc
MD5 1c9f8b700774ad0057db42845f1c79ee
BLAKE2b-256 21e04a064bf1ccf0f280d72056f2ac50707481b116a3e122467f981a91b06958

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7c23e10c12e2457efe991fc4e614cdbd90687140161ca493bfd0948519b60ba9
MD5 8742e00bceefb123ef87c7ec44ced7f6
BLAKE2b-256 1fcf7542b1a6121898b4b93d89d5aeb78cab51b748794af8c385365e1fdb2a89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d06f150d97425fc925e7a5b0eddc3196403aa815ed65fa0d74d359724724a7b3
MD5 0d901f5142b149d8b23f8cf554dde1c9
BLAKE2b-256 7ff95c8ce339001b5d15c2cd3cdcb6050f9cbc61fb61dbfd50a1d9059234d4a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a9063d78790e0f63f5ee3e98a70b74c372deb753ee02f826408cdb18c8d60a75
MD5 7daf540f5bc8aad6fbba3ec07fd03500
BLAKE2b-256 693e97c1d95e917b36edc512afb6fc6313bbf77f857fee0f1156b460c249e17e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db8d94772c61a0f0d8d3b086163a5dfa87ded833bda2c032e4a419848a5e3310
MD5 0788d078779648ea6b0dfde64bde52ae
BLAKE2b-256 3b8b953e936c243e4fc5135a52df78bf972bfb21f7590e632f5492920c7284a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 adc7282348b802bf0f2d7edafe96938b8710c593725df639ba93cea01e5aade5
MD5 41f61287c7e588ce7a0c3e5e711c63da
BLAKE2b-256 3d1755a8a7df7bef889368cb62d5db05d3697b4c76108ff640788d4132c07a16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99af56b89cfbea74cc32a4310843a731760062b0e85ef008e4bbe19f82f91ad5
MD5 0441f5fc47abaeb885fd2b1f1e70c462
BLAKE2b-256 f4acac0bb26f636cb1ff326d5d9e8a6aa39babbfc7bfc7fc5dde28e628012b3a

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea708357b0d99f8d614103289fe27ae29e29bc49a5f8e8f460df5766c49aa1fe
MD5 9cbdcf72c4812d17a2d1073a85b2672b
BLAKE2b-256 901d2850178877afd465dc35463ccc03d158decdcac4703bc91d8582fb003454

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4a98a480e29f8ac32c5c0f94d455074a4cd4ecce70ac2eb1af6748fffd393e22
MD5 d439508b019101443b8505e48f7dfcfd
BLAKE2b-256 05480935b5e93e5583a0a3152bd40556f4f87d3cb531e3f6c61fe1749886ef30

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6dd419344a4306d454a3acecbc37f5d40e43515250e754f00e482387fecd4ece
MD5 c1afdb97b1f0b5e22cf27c1ff96905d4
BLAKE2b-256 178d380f62c80cc7a463fb5e073aa285912e8e2a252ceeb11fa394fa908d3e81

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f312e1b520de451dc78365026aa5e2beef7db0104481d78e42a37b993e0b870
MD5 997b15d1b2d2a5293ccb9bce8cbeec9f
BLAKE2b-256 7e774d0ba3eca8ca233d3f2fb812491a72c3cae13d5a4bc73db03979599e7182

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c39a41fd3911fa573cc3e42470a7360b95f959baf11d13421e4785932fda290e
MD5 1afe8d4ddfc932d69e30436e7ab10ab5
BLAKE2b-256 b3a9f843b16b298c6dbd3e93a8fb6f907e09a6762d252bd4aaef2c4ac39bcc3d

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e2970e8eda975b2c7a233a9fbbbaf0c0791522afe2c64d1a7a0e9e8cee5dcbcd
MD5 e6af2d0a56868ad4562b88b830c3fb4a
BLAKE2b-256 4f6ba2e980b70e339c0384ca74c8dcff972e65516da9dab401905f9b1e63bb57

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1176861e373cfd99e351d14d64372af54fe5639ee63745fbc5ebc4d9ff9e471b
MD5 5d42f73f4e59f4a1dd091c03a096ff1c
BLAKE2b-256 e2bba8b7560b7df62b01ec5662268bd60845fa9b5b761b7dc7905b8b585e2658

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08b86079b5e8d372023c1b07de2a953004fa33e65abc62e725ce04f948506f3b
MD5 1b21a698afc12821620ffd27473fe3ae
BLAKE2b-256 57a517f4f1cf63395e8ed51f281e4db17d6522f800750aa6a8170d5fb5fc4a13

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 08de7ac3ae6098b41e5b816268fd0af7617538a747391f698f6855ae9c8a7ef0
MD5 bdd8fac043fe4deb1280f6e18cccb6a0
BLAKE2b-256 19e72c5ac1e45eac3c4a7d04e16194cfeb8d76f31097c22d4f9066aec8c85097

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 babfc857b3781a9ab44c9f63b22c527d34e5f0287932b7ad135121cbd190b71e
MD5 3bd7c3321eeda0514f3b652fe89c0fe0
BLAKE2b-256 27df728caed486eb275e3d3ea8975a49e445573506b39551506076f543e02a9b

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 500b72a3b223c35801b3cc1bb4ebde7685f050f6a511f9ff4ffb6fd64fc11207
MD5 301536f028388e585ee0268079d6df31
BLAKE2b-256 ee19fed955cd1dfb355baffde5be20365e1a01b2edb906dd73a06aa6ee6dfecc

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyaccelsx-0.2.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 736.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c00f4619634dd08d78afb389d625e3a9b4e07f2202be635471eaf573726a9909
MD5 86526af1e83164675258385db45b54c6
BLAKE2b-256 cbb93c214b409b07b76e7ee80dbb72a581f92c47248fd38e1947cf29a37ab809

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9830196828cbd3659aced365c10fb928172a57b2d1942f48cb10a3682772c0e1
MD5 1dae571c13846ad2fe00e7c6061f7a9a
BLAKE2b-256 52586482beca14f5f682c048c1d3325ab3aa003e86126a8e22ed069be41ac725

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 941005bb812a9ba7fad84b89818ff3dbd5993bf669ec9e4de7613ddedec4865e
MD5 4a6bf86533ed04e08dc102562a7091c2
BLAKE2b-256 f5b1d682d556e177fd5624a2840726ddf59b888b759d2301008c90019e0ea44d

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 698a6569a0682b02a6494fbcb042d8af90c0c800885b58c2724c8ff0c91bf5de
MD5 3285109f25eb25d8eceaf931b64a10b2
BLAKE2b-256 f56173c56041541c73bf2277efa72a27b1c3da7079bdc2b9303fe9755a2b0ce6

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb15d05f7d735f8ab246c64eb8f5a6d55643ca838e235a40dc4107a3c74f813e
MD5 c5410628825353a02928dae487993763
BLAKE2b-256 ec5d0b2666f68f1bf893a0e295ae9aab6dcef20052e4adf240f3147c30a2dcfc

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a950a8c5116bfe4da07d3ba6dd0d1adc68b006253fb370c5f86a2593ce0b8377
MD5 af272f1fffd347fc761c61aae71bbfd3
BLAKE2b-256 7c49b2cc86e2ce2a209df881c61ec9f3b93fb1d4ccf7fd508a70d7e3676e8f39

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73d4f695184fb7d3334401f89c6bf22cc722b68d970f82d8a00a9e59f992b920
MD5 ea83daee6f240171cbbe76c924f6d78e
BLAKE2b-256 094ffa714a6e1b7646b5d2a541587d0ce043b147296ec3deb665371c823a41e3

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bbe4d8e24bb7efa86a33581b3220ac64d0f78f85669c804dcc5d074cfca90dc0
MD5 48d8443b33c8bea6f892c7b48c7bb2f5
BLAKE2b-256 c3237151250189a02c343a6846fd257366ec44fc4a593f139826d13c60db0eb7

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7310f1d953bc2a4be8ce60c7c9d4324ea647290f0d47db9fc316860065f9ade3
MD5 eecde4fffcaee3848f99ae85c6d070b8
BLAKE2b-256 a3c6b6fc46fdac8dadeb20689054421017f388cba0fd2ea0fc69507281afbcdf

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4d22d2d608c59e88dfa296046c8928bbbe89b067ec52b752a660dce19c2e812e
MD5 b0eed9ab95b1c6722e1bf06e3b8022d8
BLAKE2b-256 13348c147aa3816f0ee82330d6c1004be64e1a84e0b25a4a440a95a8de134f71

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db165625aca4fb04ff32ccdd8f3a305e7c500ba44dd2894f3eb95b055c7a3989
MD5 ecaf501ac838f4fb686ab03509d225f7
BLAKE2b-256 b47132d554aa24f471eddcdd5fa84e9a9df6e74fb7928115f32ab15bd5b33044

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac8675558ce9d728f2278f011a0cda5ed45590c303e0fea209daf2ab715fb5e9
MD5 6724511464cb353daef5a1786dbe1862
BLAKE2b-256 19e3196af92b4aa653ae2f8b228aaeed1b93f7f3c7ffec5566262e2449c49f2d

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b68cc7dd85a17a3e72e24b2738e8bf8779654cde90e5c7887b23d73eed55025f
MD5 4c803d7862871f9a87f2ce7ff74665ac
BLAKE2b-256 aafba56b65afd9ae017e23e55244f5ad9dfab8f48c43dcb2e9f38955c80adb8f

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 17fa4d1071b970c7790bfc9879db7863f885a2d88f65e94c8fc220e258534251
MD5 2d44fc1747278db35c79bcfe56a1defc
BLAKE2b-256 e89b27ace0d4bf36a31e8eb5477068fba40dff27b11b958b68102917c791327d

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for pyaccelsx-0.2.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c477f544d03e99753d7784a7cec6e140063ab3d67ad1c3ce5bce8de547de650c
MD5 1fd949533770d97f62b8f151731fed4b
BLAKE2b-256 2d4ec2f17d7fbb5b29d7db33a86c82fa17efb996fc9baa750664606f423ab663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40db1a53f6d82e8999aeb9a7502cfdcd8d08eb08a7f4145a82c0c98d35d47648
MD5 4276d95f4b5bb93d7c2b8e991945986d
BLAKE2b-256 03d061e82048d7dce1ccb7e0d2a548805a00c1d16794b7619165d401219c8bad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c8222dd83a17f0a994c1e208038ada9f92ca2ecd6d73b8cb24175605e2555fc
MD5 bd2f1b153a611cbc9974511665b806b8
BLAKE2b-256 58b31b9cb7a6c397a9c63140bef1d0341f7006155fd62acbf7f520dcff2798f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a712f0ff941bece3f2cfc63eb494ac4a6c9c43febfef59053f85025afd0b9ff9
MD5 a67692d8d74b8665aeaf3b6d70ef6ec7
BLAKE2b-256 6109e753f160ec5da68b428509ac56beca75348ed6fc24cd6cfe51413d34177b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 609c1a78df88b3c958bf671d16497e556bb56ea5f7cf98b6ac3164c361485074
MD5 4f20ee4c1cfd0be417bbc3f6e968fdc7
BLAKE2b-256 e8c37e34a23408f2e093d20ff0ca28989d57ea19f9cb056fb8043b5b4ed4d9a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa604eac585620e0c3914e66d5760f8576f98f1aed5314b19b45f2e91d07d225
MD5 7659fabde442ab1dee0cac889a67138b
BLAKE2b-256 27029e8771cedafc1186f3d513bcfd7e923cdf9583d18c5e892acc07761e28ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e99174c922212b20aa55e4e41b037c2bd09507b3fc548451b678cb09e41b4458
MD5 91fb08db670dcb046f0a116998d5e26c
BLAKE2b-256 e5dd1e4bc0c7c9b92b2a6e7c64dcc12ea027ef72f652478c558ca1192db9e0a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 046784d1b79cf53de10603d0c53bd1fcb1f11825fd112d2fd23aac00da903019
MD5 8f97b50b077198afa05820ad43820848
BLAKE2b-256 412f9bb6fc9ac4ff4c451d6aed998e4e48376fa8da23ce3db199dd538c4b888c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ccc206550a07dc25100b13a8056568ad5766bf388b6a2ae6dee2af81a9806afe
MD5 e54e894345dfe547b48406becf6877f9
BLAKE2b-256 118f4338fe78cb218a476ad4660b5fe875800c5dc50fabaa053a7c92fa6f81da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c9d642504b0ccbc6daf0a192bda15d14ed7cb320da5b5bee91ff7f5bd628fdda
MD5 5b6a0b78050dbf2e37567f2670a6f595
BLAKE2b-256 2ee1915f5e39e6b524bef3178996b0580143c95192c4119265c8cf0c32e0194e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5d93103a9fc71640ba16f86d41c8136180058d9499770dd1318ef74d155d13b
MD5 c77d0de31872fd3c41b225ced2ae5b91
BLAKE2b-256 58ad6c7c1493ad332d8114bdb4fb883745f1f4d3d8f0b36ddfa8da94b2a2f6d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 469783a153070eeca3d0002a9ca6c146a18521bb30092260c4622a4043b6f762
MD5 2b245e8566f6fb89e4336e0acf172cc1
BLAKE2b-256 32bfcdb5707a93b414bc4bc95a072495ce4eb9394f9abfd5ebf256bbc2dfab8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 376f52b9237f2744588542515d1c810bcdeeb6f7910e4cfdbc9bee62b7c3b9f0
MD5 709a40d8a88755afaaefae8259f67afc
BLAKE2b-256 92c762ee68895f233df8526aa4f6e823b99a95fbfdaed10e3c3a0b7c197766a5

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 505475732d9688ff685641f7c10015c241d7f20dd4df2b42129b175f901d068d
MD5 55d5df2f0a3aaf927ba16db70824bdbc
BLAKE2b-256 28425c61a1afde7e3176e08f79c43a69053e3b7abdb19dcf2b3e3cd03139623c

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for pyaccelsx-0.2.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b4d6b64268af83a79a06733cd3d012f48fbfe2992f88406e0175e997d4f93346
MD5 d476ca1f854f957dcca016c1cb5bc80c
BLAKE2b-256 b2926bf89dbc0cc4fe6d365eabb0efc4556ecdaeec6d466bde96e755de6f7beb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ee035b4e2ba3d95cfb3972d10340c003f039f9579dfe928028280edb589f520
MD5 0284533da6efc39526cb4d4da806abde
BLAKE2b-256 f2f01e987a045b81b25fd43f25eda4318060835158a6d4108c9ede66fe99ea28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b384a3252f10bcef0252993d20af5352c59ec933df47087ebccfbecbe775462
MD5 5477946a9aae1773745b7f94877b923b
BLAKE2b-256 fe85f1ec3dc3d4f8199b279c18316fae76b53762788736647b020dfe42368a91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 99136c471f4bef7f92505ffea3a01fb0513b83a5cd4f399c7131cddb5216ecc7
MD5 4e425b332545fb02f4d09fe24b6e011e
BLAKE2b-256 9b6433043c98a1633c93713da11e748e57264110626bfbbeb2ca23088204045c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b8f7cf8c4085e4d36182e31c9a75420eb69ad12abc3bb6f4b4ed239c2f25504a
MD5 e9f5e9fea3c28d2b23a02779cedc1ba0
BLAKE2b-256 da55942d1f482bff948c45b570b68f48c325db9a85f406f28d16d27cdd72882e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b962f3449f601d5bf68ebd9f19315320878b028bba84024a89f50881452c173
MD5 abc3982cceedea202b0cb4c1f947ec7c
BLAKE2b-256 8a0e8ed36e19b5d53b758a517dca809c9b241b899f2712bd57d6767a58993c0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fb7ef3a55051cabc6a5c034d9cde0586cdc822c4dc24517bbba20409a350f208
MD5 2050eed54cb0697dd601876fa1a9eb32
BLAKE2b-256 f9d19c41812c3c21383db127014e26250deef101d8b852d30daa90314f1ab300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c8b2aabdda663e1abcb8c4c2df2cf5ad1ad0322f3da634904b3739bdcff73921
MD5 16d7958bc71bd5b83d977bdcc73d2124
BLAKE2b-256 21ccf7e980aad65070757dccd39fff872673e1564f9725dc33e8ddb8b9becbb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f55d99aff574bce9b801ea4741d9673fb5101ed8203e2e713cee2ad02e2057cc
MD5 178d0b5207258a912c788fd6e81b05ba
BLAKE2b-256 bdd1578e0f6b5c12d3bfc1f3b4771c0711887a80ea376d91df2e6156016fc003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b2cfeefd5297969a0bdfd125faefeb78f6ec6bfefd1712365a3149d4972bf7fd
MD5 a564ad4ef47a309e262228fc50cb4eae
BLAKE2b-256 812b53c31f61e5c9bed0ae94edc84c391d3c6206dd00ee9422bc7df838360f24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06a9eb8911789c01801c872a38c3251973ed1a347140425fd5e7b24ddbf84843
MD5 e71623b0a8c0db7248ba83d4572caefe
BLAKE2b-256 20067117b24a949fc88b251a34773aa97958c4066dde8c75aefe70c917733801

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8424a1fd08312cdba80cb238a591be52f70c826a13fc637d5287c7711823db2
MD5 18cd1ac27e7bc330467a8ac85616dabf
BLAKE2b-256 75f4f972fa8bf4677b5086a662064c264784213e3b6d2f51f1a89657ea0c55d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fdbf2de1750e968ff3b8f1286940da6af224d33e17e86cde97fe5d10f4e372b1
MD5 5135431f1ab7c6f2a0f461aa77789fc7
BLAKE2b-256 792daeb655675f05c56a34c2ffdc21b6f27117c136580ece340f4c373512be4a

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8976b581dee857ff5186ebfffb3126686f2833f10824492320bdc7ca5250704e
MD5 0f0e91618b883d6a691215656d481784
BLAKE2b-256 e2993789e87b076384c33b7a6a5c2a37b8dc2b0dd27a3a242d71e503fc248b88

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for pyaccelsx-0.2.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 872890bc41d9d2df027d90ddbcf7acff46dd696a58b728beb9b482ebe30c0049
MD5 727f3fb92795dd481641c422ba1aa3d4
BLAKE2b-256 654ce72abb1e5425d87eb0052bf9e9474effec7576abef8f21b01be81ef6adab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 959b9b5611a242afe31a39b9bc9553c4aa1e37a2e785111b54b8c26c227f78b0
MD5 185d17a6c50f3170d18cff0a636a5e82
BLAKE2b-256 2b985e0a50413432015f246face5b2c7298653c42f16a39d3c4d28071fe33eaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d8a8b95b863817aebcec62cced812895455741ec7e442aa229b2036c5d4a354f
MD5 a5a9d077a3dc8876d9fede3420bd71fe
BLAKE2b-256 67966c904db68e6af891520c946b8f570c6822aacdaffda84aea128b91ba14e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ccf7e19dcb0ef69bb5b3ebfda377157f12d06553ad138d8278bfcd4e4fa6ff58
MD5 fa3356d09f195ab820a9173157ab6f22
BLAKE2b-256 2c11978b84ae05a9b4dca1178432c7b66a9978f206334fbd529dc652c1dde0d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36b3c59d9dacaef08c0bf95ca098ecc81d0eae27f56403902ce05286b0cc4371
MD5 b9c227d9130d013ef648adcad00f5d09
BLAKE2b-256 8dd915c29218e2680d7654ca431d7671a378c03b547381401d75435bcd0ad84d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f22992bef43e609cb615b118e7fa0cfa7cefd70f028e00d09ec1b0cdf2641d1e
MD5 5fc6d55907f103a2773757538f635c48
BLAKE2b-256 0c20c622bc70244509afb9f556d244ff37f9ccde3a1da4145c5d50e60e6254e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 20734175ffd1a54ff4903818aaff76ef5c6561b39258f3ce9be7c5d230022e4f
MD5 16c5e8833d0c165a937ffa79bfb245cf
BLAKE2b-256 1234b63f1666397b5ecebe913b81049f2a3aec2b80c47d15527aa17afbb9acf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6531b83f3c97fc6299a36426d024581f5c9a02556535417a2d82a24adf3996b5
MD5 7174539a4ba973b99674f55dd6cd45d4
BLAKE2b-256 92238b989bf1d09794f0c3d703c3eb9eb11c4bb088277de3472f82d08f2ea4ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f796362cda1f4fc51279b26afdefb95ebea6ff8ced7757e7e268c5ddd07a83b5
MD5 55be49c164f48a1942751036e2a32f8c
BLAKE2b-256 cd49d38b3ac5918de9f97f8b084cf08092fa465b78892c853ebc9e644667e0f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6c3e6ae93c8d62881e0875060920f7a90b29269cd4e646e991c6eaea78922e53
MD5 859c1b86507a0929048168ae6033241a
BLAKE2b-256 af9efdab3cfefcbdd6f7545595347eb8e95a34b2fba8de70fef499f6dd5086a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5573fd7c258418581c7751b088bd106f423f3f1db23d339baa5d996f9929742
MD5 9c0d23cf807640eb2993167a91811375
BLAKE2b-256 a5e691c38ebee284a3cdce308c22d62980c78dfd8189e1b3cc60a1b3179474d4

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyaccelsx-0.2.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 794.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for pyaccelsx-0.2.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9f1efc8430dad8e665870d7e593586d50a4c13d9b13b5779f5e95d37b96d03a9
MD5 a17f4aa8c171a44d0b84dc8069dc4fd8
BLAKE2b-256 1b27abd0751003c59a42b499c852a1646b1ff78abf740b68331913a6e2f6672b

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for pyaccelsx-0.2.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e9cb4d46aae6ce4039c4712216901055cd37f9e8b127728f694be0c1652e4f8a
MD5 65319c57239e24afc6a668a6038e4d3c
BLAKE2b-256 a8c54c08ab6a005942834a07058ee0467be07baee4c8fc72ec16ee8b25e056e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 425323661fef581eea7a6c8ed47f235e40e211d8154556ea27d9986e2af5f089
MD5 c466f9d87dd3cf1e86f7e9118d445c6b
BLAKE2b-256 bed28baa835c478ebe3a8f36ec30a209620dd618e992d070af45903585bc3430

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a21db5ada46e0c8148839274725bce54b5a990f6c3ab1723bcf4a5e2df23179
MD5 c591f1f7d747a7011c9f7efef1b9c4af
BLAKE2b-256 e56114fe5b887ea748f85936206502731c354e3e25dfcc03b8e2f60b7094209a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05155665b9d21db29123a3e9089952c98a6c422ee17b3a2955e525dc4fd19e7a
MD5 697edacce80bdfd771d544409ca5e9eb
BLAKE2b-256 0a452acd35232ac368ef3feb177498bdf5244ac458240cac7086d1f0762cd55f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78d6a9dd009268c90536262e5ffe53116c8bd0c36a79b954dd9a7ac15d5e5402
MD5 f2b8b3b4aebe586fa0d91de86eec72e8
BLAKE2b-256 3aa632ecf843470e0910500a9f32bd5e5a4d3435dc6ceacbe1d7636df05019a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a48aad583613a6e20e9ed4b006bc5edc200200d9e716b78dae594eb7037c00c7
MD5 ae319c5a250f6b72f445d20fa4350f7d
BLAKE2b-256 77ca4574edbf58ed5a05f319329bcfc1194925ac329c6228d9ab29ab619aac19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1d3612f7b44e8881a3ea7a9596e79d951806eb2fb080df58b1ea72574c8d17a7
MD5 cc7ed42c11ec7ce700cddac18b93274f
BLAKE2b-256 48648dea6c6021b42900b3e980ec29a5c2a87758153d1333883100eba403f89e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f9c6f9bf303a4145f5485d32efa0989611d4611b4cd996b00febca1bd945460d
MD5 2c89c4158a8aff4f618c117ac8b27e02
BLAKE2b-256 5a6a730ac0ac6ef8bd51d55843ba85ae3c2f04877e0158ff1c0bed9a3a51e926

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba7ed0b42fe4d1d8487aa4a160e7126925854ab3b19bd704101cc40c9f377eb6
MD5 696fdffb6797dad9fc8c471a17966223
BLAKE2b-256 7e8588fb615a45f015c1ee13fd3c996c8728f39724a1b4f92a6d90a5fbcbc2fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8e60cb2061b9ddb15f2084b6f3043c21cb96eecec2f07912dcfddca62d6156e1
MD5 77dba1ffac7d6ba7bb805a2a4b880cf5
BLAKE2b-256 9bc1ac65b6a63037b98f20b64fc2b7b956cb84e3a802aed2d31ddf45bb9d2bf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 646d2458a0029b99d592b7f64ece633bf8f66458fc2622b091b0da487277f073
MD5 a44d43930c5588ca55db5385a27d42e5
BLAKE2b-256 620cc0571bdab1e395fa92efd92113246e6598a65d4663c06451fcbfd8f2cf2e

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyaccelsx-0.2.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 793.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for pyaccelsx-0.2.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a905fb2ee63a660e29f184b3408d15f9c9de9162aa94df2562fd48c59a01b3bb
MD5 433820dfbb053dc2a335fbfdbe2c5f35
BLAKE2b-256 a85ae02b309e979bac7186955ce220ad799535a63a9e699bd53a88cc02c595b7

See more details on using hashes here.

File details

Details for the file pyaccelsx-0.2.5-cp38-cp38-win32.whl.

File metadata

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

File hashes

Hashes for pyaccelsx-0.2.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f36303324681b1b312ed6ab357fe7097c1353dbe8c00704618a9d786c04d5086
MD5 0496dfadf46e0be124d9a3edd1e39a53
BLAKE2b-256 a45bccb2299a768045bd9d765b8567a7613e92cc06c40237520cf7c487004bca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43a9b225a14d07dc7c68fdeb8e240661c581e923d67a629e5232940b67ef713e
MD5 8ff97305f1170a0d94f25fef66e6d409
BLAKE2b-256 6cc08d5623c4b117649d136a39d8cf3017a977b31919e095fe387b565d7d5157

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d6073ffd0463a78fbada39e3581ab0d7678ac2a337cd938702a091ff256e096f
MD5 39f63691e5f5b8f22a479ebc3cea5d67
BLAKE2b-256 ef1dbf3b287384d9b152dc0a214967af1957ca13c685053024cf9e82fdd26508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f1b91a95cb0c6dac20170087288e800e375616fe1195ba445f0ed2fbea84425a
MD5 9ecaa3f6efa33fa0add140a19a707653
BLAKE2b-256 9a4a29b0e8672e672c3bbccd90151670e4200f406ad89ad34d35f68c593bb204

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc263cb8c71efe343d1682226361c3c3aac8e728ee23c94b0e9633d7d5c3a3a2
MD5 9f5e5ae8355869ebc46cfd5661745c27
BLAKE2b-256 2eba88899d84eaa2fb4e1b8797cd5076a3133703953f807b24d32a805ab7c255

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9176fa3d8c61f1ffe82eda012baed6e49a2706217aebbbc969922f9081df4f4e
MD5 1f2daccf046f7f967f500790c2db6e52
BLAKE2b-256 b21daf1164fda05d0f5740166bf113d36998952e0b4571c666098fb6023dff7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86a0083bdbe48644a0a79b373d1026dff14c2a3313812bf9160b26cc0e390b7e
MD5 eab274586d504b5b76d5b5c25aee4744
BLAKE2b-256 a351b4441876912e6c5176dc9f6308fb9fde7ef80fe274d96437691e4851824f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ea927b74e2ab418bc6db24ce04ced62fea89aff480915cdfaed9e288656b2ee
MD5 3a51a6bdfc8c202124f3b8840b8605c9
BLAKE2b-256 e0c75934166bacced1a75f21d4401169e0e61887ea0cedd68bf857c8387e9cc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac646ecd76eef45f83256d4ac0642d545fd13e69e0a0896ebb52955c389d5cde
MD5 e7520b942f398d3d93e7d965cd8db9b3
BLAKE2b-256 e1c650a49adface2bc51f67768049ad2eee0dc6dcf61086621cdf419542ca0a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2740aab2912eab4411f9df9efe589ed99665b29b05aaeee01c39c559c77d0082
MD5 1bc0b79611a52830b59162bcf121e8db
BLAKE2b-256 8b091dd5ac982e403711d615e9a6fef1b3e1d9129bebec38448a0adc3a7e878e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54eefe12788c82bb5bfd85c52a25e9be7036d80cc98393a5d406499b7266dd47
MD5 1a4e5b0f3ab25f35a6268de752945ee9
BLAKE2b-256 d937defbffb9d4d6a859fa9a062cb4552b2bbe47ea1d70e528aaafdbf3984aa5

See more details on using hashes here.

Supported by

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