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

Uploaded Source

Built Distributions

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.3.dev2-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.dev2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (956.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ s390x

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

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.3.dev2-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.dev2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (958.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ s390x

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

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

pyaccelsx-0.2.3.dev2-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.dev2-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.dev2-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.dev2-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.dev2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (896.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.3.dev2-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.dev2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (956.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

pyaccelsx-0.2.3.dev2-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.dev2-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.dev2-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.dev2-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.dev2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (896.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.3.dev2-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.dev2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (956.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

pyaccelsx-0.2.3.dev2-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.dev2-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.dev2-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.dev2-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.dev2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (895.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.3.dev2-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.dev2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (955.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

pyaccelsx-0.2.3.dev2-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.dev2-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.dev2-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.dev2-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.dev2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (896.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.3.dev2-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.dev2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (956.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

pyaccelsx-0.2.3.dev2-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.dev2-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.dev2-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.dev2-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.dev2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (896.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.3.dev2-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.dev2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (956.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: pyaccelsx-0.2.3.dev2.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.dev2.tar.gz
Algorithm Hash digest
SHA256 a62c0c5ffffb87ccc6221dfaf861e3a83e3ed01e021cef390e96931617470f0a
MD5 af2c44b08aafc6aeb789bc974903d433
BLAKE2b-256 d0a71ddc752e2510e7945164201b17825a5506e6fca02cf409ea8667ba617d13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1949af4278bb07e49c093b3cd989bcaace27e5971085a3fb99487a34d8011e30
MD5 072fe907c775a36fb922c2448cddbb76
BLAKE2b-256 ba665dd8bb9d6c5202ea4dc7ff48cd51bf6e9dea1a8d9bbacd8082b457e3326e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42ab3a6629aa0506fc0be582bc49e3b88c94c3fdad161a0c02df2e571322a66f
MD5 7f6f177d8179eaf6d377c338c4c0922d
BLAKE2b-256 9bf5d9815966386c7727338f9fb1ceb25cc199b5149f694bcfbba5c1e1e13db3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1f1dbc12f86e9363e4afb2a2e9f7e4563b99c4a87f06ff78ceca871d221bf378
MD5 70652965e7fb8f8b6de0fd6dc9b7cc0b
BLAKE2b-256 2ae864b806883352a7b4bb29b2a6a9f404eec44ab203eb0b6d52142c32bd540c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bda878e02da2dad47336770352374cfb7a6562a40668e74a5c09d475738ea9c3
MD5 5213ec4f6644e7158fbc368a4d0f1fba
BLAKE2b-256 0ae5d07d21d654d32b9163f79b35dfae7e8f86f9ff43c9d74d80c7549fa69ee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34518a88e86aa84f8e2be9a89836b17c1e67e6ca2a66d547068850a4b55f2a42
MD5 95bc4573b53675e85df3a4412423550c
BLAKE2b-256 8bf715f45ce2898de66f4b67665cdefad94ea240575aafddb95d6660f134d80f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30c07ba6183d5e80547ad5c3357d19163976ebbf778cdf9ea4f692b3cdb8a11e
MD5 ccd3eaec975e2f0e59718827ca859290
BLAKE2b-256 e343e8dfb8ffbfc1919379e58261100b7abc7259ed588536ea52c03a19f5b861

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 adf37b9ae7592255577ea991fde0805bf3e8f3a04948e5b21e363027b9da8814
MD5 4199f4135a282c915347ca1a0fe122dd
BLAKE2b-256 b99a78bd4463612803744d30c3ea2430045a2c81e1bbb1c81abac668bd18ff28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 55ed79d0a02b9f8f076e12bf34e2f2dbd1374dba67f8e298f3568af2547774ef
MD5 5184aefd0b6dc4ead434d5a90b592c56
BLAKE2b-256 210030f801e12287697fbb82029c35e2f172dc8a97feef2c195fb1337bd7040b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 85a98d5b278861d30ed1bc6d2f735a813e8fbd1dd6359c834c6bafa69f8191e0
MD5 4131f76eaf5e2833cfc76c568a77d1e4
BLAKE2b-256 519b45569cede52365bdef78df9a80796dc05e0d78e37f61f6e936a64ee11320

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7dae918497c37c055206c2c1cf4613b4a21ca12502c328a84c7c526c7d2d01cb
MD5 297087e6c318586631ae999ba4e1dd2f
BLAKE2b-256 772e3c11ea1f2058166cf28766c7246bb5a5fcf438e7d8054cf12c6109607995

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab61c528fab1a7dcb3dec226d6f038028eee587c2f318a50c32be33fa82f06a4
MD5 782c706c36ece6bef403c064daef53b0
BLAKE2b-256 cfdd6c5886523563107c9636e6e756396f701912b20563b655bf7def1b8be181

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 488c708f297892e0fb91b21422e758ce3149eb7681acbe72e662508b96dd5d97
MD5 985eddcd73abf1310918ba732c019f85
BLAKE2b-256 4641a14a8a35af23461832acaa0f2b60fa4f7809ecae0b7b6151702eab568854

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 70f859f117c4d3fa4c7fa3d51073b8fe13de50c312d048ad6bb6f07ed93f5931
MD5 17355c528f649f159cb50f6ad840da45
BLAKE2b-256 62e3784a03033890c5bc721ef16a34f7ed9d2738580357cca2d671c233fd1e9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d6a00e6891d33a1bdc0a3f46d70f8814b55c3ed976c0dad850544427e3aa90ed
MD5 065790ca0e3ec348a68469b4950efe7a
BLAKE2b-256 a59065a8bd4c9a80b67a1c5b23bc28a3f374af4234bd3de73e2ef221637832c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5df5bb8c2352c81c1681154bf6d4793d5a8d5d6e5961aa324190204e79024884
MD5 220dbd960a92690203f6d16473603318
BLAKE2b-256 0e3650bf3f010d6084b6acdbf3a2f573e698a7f477af091aefb0bbb18c7eba79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ad800ca408ee7170038db275ce57e5edcca25c7ce5ea89a05ce36652800d4bc
MD5 22bd25e46b449fb31a2a29c9f18be576
BLAKE2b-256 11b04a9819c5d0f8d4c884ac770293406725528dd9c8a722d478d555d434925c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9647af532a5535d886f7daae0d40a116bee18b6f6bc9c680e569631acb5a1c3f
MD5 f02a295643c5f1747f95eafb4d2ee238
BLAKE2b-256 9b2456065205bfc0f5d375de6793b62f18a484dfcae1325e4efec82175157583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea381027dc3d915777dd528a510d6a1b364e608d38544ff4c08f3544cb06ddda
MD5 9868f2a76353a4a30c2333953d95e0fa
BLAKE2b-256 1599b42d596931981f3dccd7f4b4d61ffa0ff2a48ee55d3ed9214606301c812d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a3fa1b29c24ba74af81b2f55f1a6b06145e2abc9b301fd31f557141755bc219
MD5 2dfa6317745b5035fa5cb5bcde85f25c
BLAKE2b-256 518d894c21f7d4d37c8831d6e3a25bdb7ea5b69df743fe7ab98a19e56eaa48f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94ee35eabef7920bc994310a9840704b1ffaa5bcddea0ec39bbcfdd843661117
MD5 e7046cb75abfab1cfdf7fc2f618ab95d
BLAKE2b-256 2defde4a238db89eb7a4172a12a35ee3388858220673d14a6554a7fdab8b7a02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eff366cd0df9123700b9acdfc675a119e21649403d1be600c378af3645a278d2
MD5 c911fff5ef4aa82db90de0cf56321b43
BLAKE2b-256 3b6a01f2aa921924268c824feb1afd46d9fca2cd1e14a78f7e6fb5efc610802e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 973cb16d19d080262f05f0901694b13102e2cf955eb276228e08032c8f4ea83e
MD5 3aba2695ededb3cdb897c1e9fef3b70b
BLAKE2b-256 e8945687d0f4f97649f3f2327c58a9a6d2c67ad4aef9294fda553ff233c9338a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1eab0311679185b59b847b7680d59f2f2ac3496aeb2bcf6693ba0d27a9fabeee
MD5 323f106ec3f2fc83f8c9f67c40067b01
BLAKE2b-256 062218b13a6c2d0b4650ec96bdf92bbb6dcf1ec6e153cd6e0c6b80323f0286c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fda81febd72d0842b364da23990dbb520b331fbea7fabf49a7864eb5a2950745
MD5 8f9e2766017f1547f47f2dda7d3ececa
BLAKE2b-256 defbd6c972f27b2b15912d8bfce072c63ddbb707a456736986473046c7bdcbac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2f86d9a55f8a22c2f04ac530cc0e017c3090b3079d7e2b0dfd5b07507291a347
MD5 3e86f51c09079392fa383711268849d7
BLAKE2b-256 de2be7fdbb6d32b251955487e50278b93a2053fb228d1cc1b06553b26f6e8b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 22bd6f0a18b195390c51b5b5c518310cbf32c7b3c8e777c404acd92be7a4df33
MD5 c9acca54b1319e71b9a64aafcf16fec0
BLAKE2b-256 154320cabace52b55ec26bc1d9bbe3282d5d41eacbef2c0d10bf75af6b13a440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b49b62dcd127ac4d30dc3f6120a985e83be1b10511009462b6f2a6338ed03ff6
MD5 c02e114f17ba4cbfaa8d6bef52634264
BLAKE2b-256 bcde9d626087835e56d085059a00cd71908fd5bb33b1309a33806b15b7f1a167

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 272006ae1aad05e243f9447ea58e6c841d89471f1a53cd30681831891f30dbcd
MD5 fe13c52eaf1ad125f08884f7420297e8
BLAKE2b-256 951bba8be4a9d49f15afa481856790e3e776892c1b80417adac64f022f707092

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 71b444e43214701d046e7ac82d423ac321cb09ad9ad6c8f0e47d00727b65b53f
MD5 4be4caca03d9120583fee2798b6a6595
BLAKE2b-256 80d10a1bd2364a32ba01f52e6c341414fb306e7ebfcd822f1ff06c6f8c45919a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 40b17b71fb5a2c2e57d5d3e29f163a115c63e51dbe71798259c1fc5977c0124b
MD5 663fd969370bfa665903e944e7420591
BLAKE2b-256 ac88eae976a16bec7a73fec5ad7a3e81e5fcce4978ccf5502fa91e1b9553c8e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e739ffbe7ca31e4e2ed97ee486319c0506f9e121e1e59d37d4033c46ea5873c
MD5 44e35a1640da46ea043f35dff8f144e1
BLAKE2b-256 d75eae668c3e02fb966fb338316ff244b7becc98411a1085ac6be78d62ff0989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 247fd1c601e44db81f92759d7e625e7ed341062d47899af33b6c4cef37a55183
MD5 b5bbbab72e1a73a3ff2207669f0e1c9a
BLAKE2b-256 dbedbee2467529577809795b932a10ffcb55d14f986ffe940423ae241ae946c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cb7d77778df1fd5179fed8374fe66d89ff1b37258fe51fc9225c300301a135f5
MD5 0b3d559876ef623cb87b9df0c615b48f
BLAKE2b-256 6185753de51611f5f9e0e82286d1b157157aeff8d980ebb16f1c8b1040b94375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fea7dcf6fce2ea3653430603ba6efa8e8a625895693dfd146be569db58f07f41
MD5 080a8c1309328f1263e777e142316eeb
BLAKE2b-256 6efb4d043fab04ac2f8576d217ceef20cf6c7c9523e53af046fa82852067d391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74eee09fe746e006ad8dd068272ae2a5d485bd3fbb2ace494162d935588db330
MD5 ec7db6e39e14bf9745065b9df96992ba
BLAKE2b-256 6fa87c25045f1b6bfd4a8ca89c4935b2861a905f54fa2f25fe919e5d9e4fe14b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b1f2c67292d210b3c9d0e1676b8724831edc372b6026103a133389ba9cfb8e5
MD5 bd38a9da995cff741b82d9f54df6f9f7
BLAKE2b-256 0606c28dcd0fba6340df4cfd4498b1d639abdf2b7d96793043ac896c6c390d48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 abbd7a26eae36bb560f9cab897a93cb692c93bedc56d7c41834e78210309bfd6
MD5 8f3a38e58673c2afa96ee39475f8fd03
BLAKE2b-256 f8742ce25f6057b5d0100063414351975ea4b63220f579abbd21a7cf9642b809

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 063db78a220c0ddf7aba23e4927969a50cfc9b65fecdce57bbffb83aa7d701f2
MD5 921055cc37a22f0155c7d0fde0e9c902
BLAKE2b-256 8d616a2c7df520583e4434308146e55d55245efba71c5e87f390d4e315c1302d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4490113ca6cefac94e05b1ba72532279e4cb7329dd676026ac5b184f8d50427d
MD5 7b0bb256dfe295734351099e4e476590
BLAKE2b-256 2e76543203a2eba986ade14c0e117daa99aef9c83558d1596d9f6668e0c6c83b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e51ec87792b0f8d98267574833ab6973ba585645483379c8009ac910faa06d35
MD5 995386b6605833ae2a07e4f4513b1405
BLAKE2b-256 fee72410980781a3562833ad15f65f419dbd0f7a237808133520ea5cd863572b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecd59f81cb1c21759b372c18e327ec2c0bc66cad9808e188ee58636dd8a2a24e
MD5 e713a1991ee0647211e68f6581c39ee3
BLAKE2b-256 39deff27e433d105c99d5ebcf84d520558256aa980d9ab2711b060f2a45c68cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c8dca8344ac38a3ca15dc5c80bd5a9d0ecc26cfcdafb23a42ea5e84d541f4df4
MD5 fdd5b6d5344006f57d69b0cd3d517e1b
BLAKE2b-256 6cf3a98d9aed9c70bc400b91fb7e53338b4e8c72e74e909ce6fcd255ed1cb414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 d0eb8df695c147077e2ecc67b030d287e8eda2e7dc78eda360e1a7b95d4d4983
MD5 5c6a085de5ad729d2fd15b3d9faf4514
BLAKE2b-256 6e1b1f63dc0f14fee2b8994408b67dce3bcaf6e5817c6807007647867ad0cf5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 a2b7bdd2219cb1fc170a8add2c05f65affab6c402081cc073ac148fc3044af70
MD5 d932f6f62d849acdcf6ab9ea6a7a3ab9
BLAKE2b-256 c1ed1685cc84c055cbdb4f0f12564d65e69c555fe627c79daa175fdd1520c6ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72b06aed416f35696847209f8c99156ec6885900e5eeaf738492ea224fa85c39
MD5 ed327935e4f206b71c7246722c09bf48
BLAKE2b-256 486d438d5fd103346b4db2001db54fec49a58a97e0a35abe332459def38cc690

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c0e1e0451f7c35f5d1304a7ec9f41f4f24ce8ae89ff79660e0617aae2cde7976
MD5 b5deff981c046bef016afd6000bcb083
BLAKE2b-256 d68382134851a4db50518c92cc2febc82341049130abbd9cfbb3c36afc495a39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e104412188759bb459f5d741cb79d0d324fb0f216175d88e61857261cdaa9c8
MD5 4e20e82ab6519c34d84823012888d5be
BLAKE2b-256 c401bd24bea57b7ea03c8c441f8fcba88f7acaf35de43fba8ea6ae2c69824dcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4bb984715970ef39c793c402eb3e2cc22c9ebedc56badea49407c460dbfc9205
MD5 cee6af871eb6baa0136857528549ebb0
BLAKE2b-256 90b8497ff907902138d20f84a8d3f25fa269f3ded081cc0976d760f1be215103

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 000e913ee59c3806af6b53bc0e15f414ab0e345f748c0b1104d1402275b2877e
MD5 9f9250b2781b377aacfb91704a622640
BLAKE2b-256 90af6aa7f17744e88fe79465f2b6e55998f2ba24f972b2da71864d5e2d4fda97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4cb1c5cbebc25870c06bb0d70440674a34938d077e8098f84e38c5c09b154b43
MD5 433bef5f9cc6174fe0bfe8041239197a
BLAKE2b-256 f59927a930422a7710ef27d82d01c8f16284fee7cc9c1e12a85795e5160b18e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d10b6bbbaf53b05607d90548cee29ecd99fb0a99cf51fd6f7e1e38b1bee88cbb
MD5 98c55baf6b75483bc07b7ad21fa19023
BLAKE2b-256 18a44b019b0e4caa6c23aea230e78a338167382cf645bbc185751bb64e9d7e89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0bcb94ae8bd8cb46efc845b64c63aac9a3d23aeb1ea263769c360bc6241f2ead
MD5 53d06090851e00637239e8eadb0e0594
BLAKE2b-256 1517ac393c3abf3d0d310d10532222c0c3e96c0d878ea9432dcbc407e07c22a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23647bcf62b9912789453a9d00f5b1535ace9ca25f71cfcf2f5a9802a5f49f28
MD5 0f0c959315ee3eba73aa4e4b0eb4a186
BLAKE2b-256 ecb335eab47260002a8c2d147a5941999ff03088fa2b01cebf89615d1eec1f33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 310ba5d2b18472276ea5ccd3296f810e5a384225d21bf8c9a9a354ae24398aef
MD5 c26ce6160d6a0cbda6fd336b71911c9f
BLAKE2b-256 a385d2dda911647bb793826f9c22971dbf278fea388804eee6d5746cf4c9a58a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96e57681371670421df7737d96d545abc85c034e29972f9846a46bd210321bd6
MD5 aa41f0daec29f57fe921e28c7c34bf2c
BLAKE2b-256 6b55eaaaa34ada3cc345a7542b92c853ec3c9144c7bc1b1022ad646e0b690e88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6c295f97096063ebbcb4126f65308bacc06da79a71c9f3d827b29924bbfe7daf
MD5 a65a76f5ebea0d9b05911273ec34a320
BLAKE2b-256 ffb901a658729cd7607c5e62e4b11b51e5879073634401d376cfd362fae09e7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 48536c805dc5c22a7211c27bf4dd808e8aaa21ddf395c956b214aa7a9f4cce74
MD5 e4e7db7c90d4ea7c458ab0a751e339b7
BLAKE2b-256 f8dc90b10492469a493ae5b3dbf1e98ed493d69436645064ccc9dede033a8b5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5f6a61d4d00fca51cdde2a3b96a38a267d09d04d50b1790373b052e2654a8430
MD5 35c8538e228d4b25321bc8d9bf8774c4
BLAKE2b-256 647098b8fcf4912a2c52002aad6bf6e2f2a03437124f163abc65d1472402c363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 768832caeee0281901eaa11979bf247c6f78de6895c87be0065686509c9c4844
MD5 397a3056e6f0c0baafdac038b72c381e
BLAKE2b-256 eb8054064f0206d42266d4fd236a7e87d71245520318d2023493ceab4c0abb7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ddc4c72ee8b115e39c78f755121b14184ccb38c5107344649e82d79289fced6a
MD5 d91ee4ec0238f1e9863caf4e3f44dd16
BLAKE2b-256 4d48664b4e306cee083cb3e97e5206e0b3ccca7d142c910a716433c976a40beb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0c1ccc9d45dce87257d972e47cc88680a4fdd45796b6b12b879ad07f0a326d13
MD5 f0536e25e9c562f25727065a3ca63358
BLAKE2b-256 d1e2f65e8ecd7bcd26b9387d5661bcc5418fb431ddbcf2dff048e353293602f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09e0f16fec7a27f02b133f478f9c53d04e18f0105c5d2d4bf97101634456ec95
MD5 629dad46dc0c4f163e595734aec20bc7
BLAKE2b-256 65190bd87a722d8d7d275412a973a537319b998f80d7550a73668e4def090422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83b9027c7ca0181283b8d5f63df2665b7abec1c9ae8a620a06757cebc74e5c74
MD5 6ce23e74083b6a27038a5b19e1afe69d
BLAKE2b-256 95a92dd239be5f61a49ed710937fcf3d252b504d59985ca426f3706fe417f8ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 16c376ff5389e81757a3a0771590cbb19075da69dd663fc09a9862b78c5d1053
MD5 c8c2b0b943475812aa9ae03957a6bc61
BLAKE2b-256 2e6ba068fda3dbbfa11042414203c37fcce40ab12578725fa9ba817c9e1f7dc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4625a378d0c28813ee257af6b415424fb090c404775380c5780c81666672db0c
MD5 613814bd61371d4f4ed6c96edc0de0d0
BLAKE2b-256 b7daee507fec8dc1f942b074248fc85d892e18787d580efd701ecd99d0e9c3bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f3bbdd21c14b3e14fe39fd9db77688e14835c03420e1295c377684fc4e75be60
MD5 c0387c3679d9488eab006b6e96c44f40
BLAKE2b-256 07fc7127e8d6ff5e417a8568532e510de25a86b7f83f39da954d1fca048f092f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 87821c2572912969047cc65d5293392c632ce0f28041e0d21877930708de330e
MD5 e4e796aa626661c509c3079e91be5508
BLAKE2b-256 ae1477e9f8deb2520cd1834bc3a4cff6a468442f59037ea6fdf34d5049682e31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3376bdcfbf36f80ff3aac96372ac4916aba3eb60dfa30b36d2f60e3aaa8ab75
MD5 05a48f234919178c70c74970b7159ab7
BLAKE2b-256 2b208faa4df75b0799e453c77c048279402ed75eb437c717c570930bac08f6e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 119fe9521b0ba16e690c7a72b966052deac503905af015bab5edc46b0f9b9e52
MD5 5edfc5a1b50a58a178a0f5968541601b
BLAKE2b-256 dc6556a581f26bb5ed368e987b8b2b0c945024a7a7aead7838379dc103cac2dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 c7dedf27c1bcea8503dc1932000fead62397b476b3f3a8951d4f578b07b09798
MD5 104c7861259e11c85c5df6edf3b0792a
BLAKE2b-256 6ef0616e0ce434d7c77235f827989f6a45b0827243c04e4ec14d485f383ba430

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 3bb28e122d3e932847e2dee349e654ad6c56101f9a686d2fbde9261e3a9f3890
MD5 1ef99afdae7882df3f0f3c13fa37bdab
BLAKE2b-256 1838c66695acfa744ba86349315452ca40dc122f795f109152aec89a7375723c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e817dff217de2a4febc7991c44cb90161ba4ae08b95e28d0f919135fb3a1703
MD5 a942342f275e1b17cba1ac72eea213eb
BLAKE2b-256 f25727975104d0eb112f4363c2cc9fc09d5f4081e7855a8e41a4d62ff4eb80c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a7051b4e76dd024c7a149dd34c0c5805fd6cb8c0112fd4636971e2009782f3e
MD5 857289c92539dbaa09c60756b39c6acf
BLAKE2b-256 6f88b15eb8968b9a635613c5c81a45fc305db8f2389d1f5f585c7a97e35c5685

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d50d95c3dd24bec5f515819598db2d1437a4a0f96cc95111855d01698d0872b
MD5 5681ba70be595217b476550621db2795
BLAKE2b-256 25c16d69c001559de52df01c1af1bd12b7ed40018fdbf2a49c8f5717dfd2b0bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce2b7d02cda4ed2bfd5f34eadbf8b2da1a02ab94e114a2ffd6c49d299cb60c80
MD5 8f7424514ce45bcf3fd4539b563918f9
BLAKE2b-256 4d93b072ae60e449625703940e5fb7cc78c2dbbabc00ebd87cd99eb73f459d1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9b2026abc5ccd9fcec1f67e45ea3b0306a1183bab7b5981bde1341025af356c
MD5 302a7aae4850fae45c47663b33307eaf
BLAKE2b-256 5d06992178f602891fc90ffb50d24ddfe03895c9987636b6489213a3f00c0108

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5b90b89d1e96b0664101f295560b558638ce46fbabcc66af9edfbbde462cd506
MD5 22bb8a844ace8b7b0dbe4fab19337385
BLAKE2b-256 3725b19ad9b1c68a3ee6d0e445f9bc1185ef09db115444af3b9e65f38a699d13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd541e7907e66d9da4072fa890091c632ecfb554410b1f33c2b498fea6c3448b
MD5 1fa5eb4641e3bb2c26d85901d89de2a1
BLAKE2b-256 4146138bfac63ddd667297d3700aa76770f779ce8072eb7bb68eed58710b5ced

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c139a4718618bf800ba840e2628c384ec19defc4ca9187b5bc66368c05126c1f
MD5 5c441597a7177272b001c57642677dd3
BLAKE2b-256 fd97af2da5d9da7565e0bbe3a55b27f60cdba7aa7c08ba92f04438860bb1989a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 678d48c8f60d9633b9307f5b64d9a00b74c18d6b37965d475e37947fafbea3f8
MD5 3ec4742c13b2cca42b9e7ff9851d9c66
BLAKE2b-256 e2aa116f6e99f5a44d6c304733c278852e4302d4623b9c3e4d1f019f6d646a81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c4cb8f2a6ab9570468b8735680ba0f9bfe77efb59662a38c87e333914575d0b
MD5 185a31a2b8634730e5e201dd8f8851e6
BLAKE2b-256 03315a98669bebc335c284e4c74d540656df53efcdc24ff8f9249ac0b24d1271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ac96a55a369098b79e709879754c4cf12e84439a6292da58eff0b62aeffe111
MD5 da9bfc3ef2531b52fd095080d0e7561b
BLAKE2b-256 a28b07556b4d0fd5c52df896b823bb856aaac1195dac0950c8340743c6f10e96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d5ad38cc7b32029040615d292de76438ff178a09a3c6d202068954a0494f010d
MD5 16995edbc9808e56494ddbcb870069fc
BLAKE2b-256 9b07801fd17a820f705ff3477e8b2022e25a8262b98dde471827c08cbe920b81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 ffa80bb1c165237810c2d0428049506663c4eed9ffe5a635040b47e5538a90a0
MD5 81426870cccb545498bce3b3aa6e194e
BLAKE2b-256 73b27716a6a77bdc5241fd3c44db277c5bd9ff469f3efb51d8de73d801712412

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 447cdfad4cf85af956ba9d1d923bfe07c2e65368c2c847052e94e535acda082f
MD5 10389805825aab5aff432da8ca73ddd4
BLAKE2b-256 e54bd26f9e1ab6733ae9f401a2e2f4b6d078af0f54ac4b484d88150225ba3e3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 16cc4e5c52c9596aa64fcb0b550cd7e8416cbe3e3705344bb70fde6eab5edddc
MD5 57a13c73a8c34dcdb41388bdda1827be
BLAKE2b-256 4e9da63592bc070d9bcae64f25883f276a4dd85eaae7932d767f6dc04e1bce97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 836d8cd8d9592f81fc340eb7d24f9b76a46b6ccd61e36ddc0be35ed85f94034e
MD5 1b57264540cf39fb4107ef07c38c6c93
BLAKE2b-256 51cbc6a729cd9c559053f8f84590ddf005512124b0f8e2868deaf6f9b5cac6f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89b437e0eac08a5bda253c7fba728d2747ab7bbdba8450001bd9764614dde672
MD5 cd36373fdb99da35281a80d9e7e54ff3
BLAKE2b-256 b5f765837ac8f32753a22c18c3a5a61b9376f7010570a248f473c723122fc8fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d14c937e879b6ebcfeac1152f74a08d8833d5e997a33fb23657c10949de86d67
MD5 4336b48ebc6f72f2e3ffa8dd4da34ffa
BLAKE2b-256 be5de42b21f20a118f9e4a133de57ebca085ca12c6ce5df4123574364d8958ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 24aaa339eab7d06153e4d7c539d4b96c46a494c3b95401f96e79cc04b665f0f8
MD5 09cbcf2f51bfed7e34eb21dd57dc3cd6
BLAKE2b-256 dc08415d3bf131b4efaee69310468680ccac653a0f2fd8b5b8e194f1c9f75034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5083501a4616b9a4c017a4281fa8efdc9dee8fc52384efa8a87bb47213245496
MD5 a77d10aac58f541f85ade87b4816ab41
BLAKE2b-256 e79d37b4a5b1d7adb480978f4e52efe11bda55d1d906fbedfbf215d811c8ff9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2be3bf77848d57a1e21489f74a1d6612ee28d4decc4cd9d4b3330806ef5357a1
MD5 2a46158791c12558a5c9c825b8113a69
BLAKE2b-256 a45bb29036d84fcc046d283e038ae6acf3172cc6e0f89ed7ca49a226229e9795

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4e16ec3e2f6c8ec52c4edcaa142bc786bb36d80a79b66737e507f40a70c76af9
MD5 29e922972afef482c41cfa7f093bfff7
BLAKE2b-256 4dd8a1ad93b90d915f01520e1b97b2c4a072062fcb26a53a8bebbc91351c1976

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe77cb6ad24b048be59a59d92cc8d6887a37e26fc2d6c79cc22331d5e9acea5f
MD5 6971952bf33df42fd28cb49974c76424
BLAKE2b-256 6f8600ff4076ea1fac79f8338dd7a1cc40a0c829456a22c2ef226e6842914cb5

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