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

Uploaded Source

Built Distributions

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.3.dev1-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.dev1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (974.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

pyaccelsx-0.2.3.dev1-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.dev1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (974.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.3.dev1-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.dev1-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.dev1-cp312-cp312-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.3.dev1-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.dev1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (971.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.3.dev1-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.dev1-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.dev1-cp311-cp311-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.3.dev1-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.dev1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (972.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.3.dev1-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.dev1-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.dev1-cp310-cp310-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.3.dev1-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.dev1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (972.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.3.dev1-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.dev1-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.dev1-cp39-cp39-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.3.dev1-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.dev1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (973.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

pyaccelsx-0.2.3.dev1-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.dev1-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.dev1-cp38-cp38-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.3.dev1-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.dev1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (973.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyaccelsx-0.2.3.dev1.tar.gz
Algorithm Hash digest
SHA256 cc2eb2afcbc5aa17d84c87e8f9502f2d7732cee4d5b7cfacb6fcd953b4a9be5d
MD5 5c93a3917959558242629b6f0636e7a9
BLAKE2b-256 43fad139d1c3821f0b61c9b3a6226426dced089ee7546c214323390e3fd63bfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6f136e469d76102bcc577e9e41b0b4327af59ea383cf175fa883889315979bd
MD5 c616d525fdc5623bb8b5a9ef1c320957
BLAKE2b-256 afe8037a2f265d76a8e3d49c32888636534b110523626c38a2f842e757810405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 82f2f0b614eba76414ab69095095c88bd50c45494002a9d556e4030c0464dab2
MD5 51f74dbe2d9ad6dd21f0a69c3ff2f8f2
BLAKE2b-256 e809e97a21277f22f9d6c2e2e12284eb89504dc9fa3bab3e7cf5839c29852287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d274f6842420ece5a4ffb2c6c253d8889a7de5c7a03eb16d3d759358bd7fed33
MD5 25d4c97856565d9b21251ba8667b71d6
BLAKE2b-256 dc346d01e585ffd14c6e63858a9dfdaf4979ee1dd5e9605cfae2d9690ca79f43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63f1f880f15e37a7f03dfa419dff83696fc39db2dacf84ef889e6cbef446b4ba
MD5 9bcc389eb2d8cd6f28a9f5a4271888e9
BLAKE2b-256 b90d43c9e4698eede7773a94cf5505fc7dc50d28477490259c111d5acfd36b0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7d5027670bffd7a8b16f99a9ee565b53626cc79673e82a8ba8581f657f14d06
MD5 66bd26abedf4745ea47f8731111f7fa5
BLAKE2b-256 77ea949acb4ac9a2b56cfdaa10cb2965d9725e1257b62cd758aefe6cc180cd86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4020e5abc3376fd51bcc51a34aa237f8841dcac3a0d83d085cbecadc1e833a19
MD5 9fbac078de7b52511c8e4653ccdf2dde
BLAKE2b-256 61d0d29e4e3f4091f73d991eb349cc265b2ef99e962f50d6c78d9de0232b8ac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 53f11b96adbd2fe6d28e387023d676e4947da4177ee95c9198e4ad0152b52439
MD5 0a2b0863db240af8175bd822a1a8e06c
BLAKE2b-256 9fcd672df30dff4d3e2e8f4a777fffd7a5ec27ab004c081a03df8d56e2fa79a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b1cfd4d3488aeeee0d6138142231f4195843a7dadf4447e52c9e2b26f607e442
MD5 1bcbee718dbca24d32158de42a33d260
BLAKE2b-256 7eb9a6ad489926c7382f11e2c08e4d988703206d20dd4f7987e84ded2c7aa9b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 99451fc2cf08be251d6a66c0c8da8b75b3e2c195bbb4704b1e3cc5fd1b8cf3cb
MD5 f8d69350e0fd7f87af636e314954bf45
BLAKE2b-256 4b9693087305f14883cecd27c462e0c2c6917a8b61d6af9c42996ec68a7cda8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84f42a36ccbb44340a1261cf57da2142b82df67cb5ae2761865fb45779e5cd66
MD5 35c7536516a5d4eb184625360e44d9b6
BLAKE2b-256 463da8b5a306ae2a26747e8cb55a49a2a13d6eaa6eb1d2f4abee3b3c90810c72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 349b39c3a1a8f7827a8202a14f7b8cb9d9f8fc63cc9d8c8fb44aac07da06c32a
MD5 9b62728acafe2ca7f385aca46bc26634
BLAKE2b-256 6cf7262e22ef846e85def7d09e5e0863e98cc623011a553e21c9151d4036d635

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ab433bbed8ede5b781f77ef111bf669364147631f21f14eedbdd4e846a66ec4
MD5 eec1ab094f33accc6476855e5be1de6c
BLAKE2b-256 b722b75891f30229eba1e53669e75b2c92d1a94e5d4f3c7f62d3376f1c129c15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7a230680dc1dd97b014d00b0a0c7b7d425f65d1450a2389ddf5a5aad72e5deac
MD5 b8245b3f3f6620c7bc7299f07399fcac
BLAKE2b-256 57dd5f0df47b53c00fbc73d21b7a5636ee4d507054dbbd7d40108a2bea4ed70a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0152adf31287b8dee58be0317e5ebf7b291f1aadb34fd83988343f0f95215e4
MD5 5008c8a4246341681beaab8aafa7a6b8
BLAKE2b-256 4c5f4bbaa0597d83f3429c218ea687217e7c790e71c01d95f710ee7c2eea6417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53c860f9e0776e863f214988902b7d992f3658b90cd9e501343fc1f0f22479a2
MD5 84cd26500cc7763ea721bedde6f89a7c
BLAKE2b-256 be278471f63a5237b5cd485cb03d40dba661a1af1ff1246acc9e38f1d8a00de1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7fb4ac03c1eb13705efc5c5748ea25bca5b7c3a763b5d5bc7c30d0eb820be492
MD5 790932185db5d8438777dc30a15c263c
BLAKE2b-256 71a496c05f8fc1b0aa55843677b9bd7799d26dc0649a0305c8fd4a6ddba64e5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8cee5d1260261c7de2c6fb1b0219952d0c55005eab818c2b93ebec8dc3269a10
MD5 9ec3300541bc6516c26f59119b27ec5c
BLAKE2b-256 4336b034dc3e1995d616be9de8693bc3d41d42da62d01a3d186b0304c5660e77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ca33d80573ea1844b748be757826de9c73cee5d69705ff5cdff498b1a4f319af
MD5 c4ed55de36bc0eabb2a4a48a96cad645
BLAKE2b-256 108b21eea2454cda093464b592ac7e3341478832f8acdc4f279d649882d8946f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 184b933815a040ecd0664fc0552a45dda8fad8aa96d557373427937020eff019
MD5 169ae70f8f44d9c642093e507c72090b
BLAKE2b-256 6e4e5acb90c290336fb311ee198afcc80c0029406b4e94def15a573cbe754fd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 407a10b360e26e3d83ffbca75fb716251509dd0beba475438ebcac813badaae6
MD5 7c75f6d608dff862135adb10807e5b43
BLAKE2b-256 6c065480e77d0670c753940f29c70cc53d33b179dc4cf7152ce78ce7e7d87bac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b47b51227c4b6ffe827d32a89a6c66e440c12701c1951e93d2a830f72bdf88f2
MD5 868f73e307da9dceec63b117d6cd7ddf
BLAKE2b-256 45f22ed187efb9141f372038d120ca4dcb4c39fbbab510c38f5093597cbc6478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d8635d32650b60190f81a8a79e1816fbf517c048430eb9cf4c4b137576fec97
MD5 8a85237411e6178c6280f117a77dfd72
BLAKE2b-256 9369792db4619beb1078881aa465e9500b098a9c69bb12d10a61ff971adaad17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 47124b99ca30285fc5a38959a096f08c5d0b4bb5a51ca9b694887a64648749e0
MD5 5763745efdb9310edd3702b146d3d958
BLAKE2b-256 af4a92309a82ed5bd9d875bc11a465b2ead4a4b0f8ee6ca819b7106c27095ee8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b88a340b9224d918513dee7bdc8c6eb550ab337a70c44c70f81b8e483fd67a4
MD5 a94b5191b1deb248c1aca42e418d8bc8
BLAKE2b-256 b39f73d4d0dcdced76278e1bc5b88c281e948ac443dc72530740c76f327cf29a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 095351fbc9e05787954ec30061dfc44ee2f078d5030cb771f306450819ab01d8
MD5 3f2775c73459100d721f88948cde8184
BLAKE2b-256 b14727cbf48e11a4ca90de556f34bedd1e2704a8256c4b95ab5eb4116bf5f19b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e3cfde0da5b4533b4eb35d6da0725b2d98b60c4a1638b2fbb78f3dc4256c9f6
MD5 daa64afd561cf3af979f463f831f6ad6
BLAKE2b-256 34fca3f0e349f838f385a7e7b2e24dedb7a61704d3fd791e8c9bd38e9df3713d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1f39b481d42ae74d1bc77f96c6559d475b5cad4a24dfa401944ce2e9f949a45b
MD5 88252e7948a0159122a64b16f31ac680
BLAKE2b-256 7a81ff589eade555ccdc67c5536f9a1220691918821b8b60f3861639cf9d551c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71e1b3bff52ff0535020433aa905cb9bf67e56b69c15d24b719687de6184df97
MD5 42b857d72366bd9a2c1fa58134c7345f
BLAKE2b-256 e92a24cb44db56ff2c45c1b119bd9a0d338bf7f227e87679c39ec7875c20b49b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 e90d5311a16e4f7f106c087df3c82b1c6c6bcd91ecad4dc6b61ee98bc9b2460c
MD5 843e4dd452cc348389a8bfe03ad13a23
BLAKE2b-256 5aba9081c8a1f4667d2f410760565a60c56093a36b4e87830f5d61ba71a4730d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 2e324b86fa5c203129604da1898916e89408be8c340208f377ef14a6a1946e53
MD5 083d2eccf41634ae94e0b113162a8144
BLAKE2b-256 d533ff1a0f58e8650ee1493fab56e27d6bb46a0d63d84620cbbf07ed02ca284c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5790392cb079d797cdb2b6e3041a744858f38567d60d4b75a572efb6a064ea2
MD5 3292055f9f67c38a7413e09352c83421
BLAKE2b-256 b7450988eb301765b57b9c4fd359f540108f53952915aad804f931a999876e90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6ede35bae51734947c66663461d78f2168651fc263a632a1443a50a1c2db718
MD5 8152f8cbb6a0bd17a737d858578034a5
BLAKE2b-256 94d94af9057c69848b5eab1f9452d8c39394a3a47a5f639362de2fc5e975f4d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7391652a112783c5139903595346c2325b758db3c1fb400a7d1754623c9b0211
MD5 1f34ab698be1fd6f542685951655b0fb
BLAKE2b-256 10b2e9829a66eab3f30c633d6d5e7e653a57ed6365d64124d65888b8af43e2ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e5829adbffb15c2626ea496a0213ec5451279c3bcb6ce78a47f04cd79c95741
MD5 1f2f5bd6a330c436bda69cf09f957533
BLAKE2b-256 d97ba6aa676b4a3e932e0776225e26cc6b3a8f17a0d485f404c2b65f10a0a5a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3c9918b116ce6c11af3271343a25e017c9d86a155a7099f57dad8cc2feeb79d
MD5 16dc77030682c1734e66f896cfeda1da
BLAKE2b-256 f31044f4bb570d22838bb0450072afa9c622d9b5cafdf43c350b84b48ec41283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5e0202e389c6f2ff16aa3967391a72c746155cc1d8155243c53bbd5a63d3b131
MD5 b7b7a3e96e4c4f958ba7ae56418e296b
BLAKE2b-256 8cfd902941021ca997c72f1b4424536115c2bfe4a01410d1718b4e0a923be323

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eedcd3f26becec18ec83c732c057753c1151fd7da1d04931837a91646abaddc5
MD5 9e9f11185006b82cde27a8423bb0d55e
BLAKE2b-256 96ede3755fd1f51e9df415fea4f33e185a69528a8632cc6250eb630dc0d699d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dcf5edd688e36149c6d50b255a75172a472dc5a22004962a667b2b9251e1c4d6
MD5 33c8f62092df95501b8ae5287db7f70b
BLAKE2b-256 193b3e801174cdfbc222d405db149a97accb1b108e57eb8f5ff7dbcb6fe15e91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1fcfb40a380de3649bd244545748f4ab632e62e2b0b8335b0fd7cbc2a1a1e3a7
MD5 2294c26fbbea053e19f04cc591a75170
BLAKE2b-256 695db8345c46e349a4b5f59d0c56b9c04051949b0263c153d4e4c3fc97231a4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8a01ba8dc2c6cbe9bd0a42c7a71b9cddfbf5607be4e54a366d305371c70a0da
MD5 70bc905b439a7a7b14afd8d2e6676916
BLAKE2b-256 de66713059c8f07f9c645bec95833bab2c200d7c7c5abcdd130c1b5aa11e54f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ed0400817a4d526832bf6f12f906972f71921d6590b6b02950d022ae0670584
MD5 167408d9990b46a94c8e61d7c584d2c8
BLAKE2b-256 96361c3f3ebb30c99fda052f9f02657814d7a02edda2f36f59975e12601ae1ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 96aea79731e7b826f37c44ea80a5dc17e912adf2b45a89a165feddeee2e01c1d
MD5 649440316e2a13e57996a54e48e4786b
BLAKE2b-256 b0093f5d977cc492656b234b378c2b5f4dd8703bd1d4bbe78369102794ffff06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 fc1418b47a2539e4b600ed8d70583f09ca98627cb25df4f22558ccb8d2ade761
MD5 efcfb9842304f9d80665dae7609ad74f
BLAKE2b-256 fdf4866900829bc4bdd64c455732bc35e6a502ed7b5cd578b920687ed1938ece

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 58ad8da14eee76df41e06f0646dad0e3e2ac60aa0c966d6292732ab86ff1a907
MD5 92e00fa0944ff0391f583b46c73f9d87
BLAKE2b-256 15a0116eb32f62d61a6d27cc0a829a021342e8c10056583608dc65620d1558ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 638abb22640350dfd97254a3a862ac16e03e2272fd9fba90233f643cd3922ff1
MD5 6026e21704e7423ba61f8b2bc44e440e
BLAKE2b-256 47d45122eadd68a3a55774ebbfba5f938661190b5b2ab467c98487c32786f427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5d9b0078d82c0048aa0680a87b1c8819dd727cbde0fcab8e3cb1b1089b040245
MD5 3d99367f032b60b105998819cb3a2446
BLAKE2b-256 d6ac01ffcd69747c52900b3f1a33f90097751388cf37def3e5cf63de0255c3bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a2535452ed3fb704ed7e40b2f6dfe63a2abdc657e67895835a8cd1e5ace8802b
MD5 14b7a6089a39bebb1ff6cd21b3b20c0e
BLAKE2b-256 6ca039f6925437309d39824c0cea41610c4011aa463383a55ba60162d9fc11a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26823c99e0b26dca0233e756949ffb005d4c436154c52b044a4c77f6622d0561
MD5 6aed2ae03566f425e90f8925bdad6807
BLAKE2b-256 5298ed01250c2ae0a84b368d1bb3c83697c805d528740a727a21d024a508f75c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2e2aa98949bbdccbf1892895a00701a103016b41139fa310048b4714ddb3959
MD5 504b139aba9afb6ff6ec6ee0b74e58c8
BLAKE2b-256 2ba3347f481385d5340e3d1b62e3ff1998be612bc1d69981b4400aa6ef199494

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6b9fb3c127f2d21acc81e09d216ab7ee331b882870943638a8e52601d08b73e3
MD5 997c552102ceaf0e28ef94b6a72e0a41
BLAKE2b-256 275d24c8eac470e9750abd258d61097f1ead25fcef2ca0efc45eae3528b34688

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b335029a511bcfca0a8e8aae3580c564c3ba17a961abbf7436209ac34f3fe2f4
MD5 afd8dc1b6941c4f510fd16043a7b2fc8
BLAKE2b-256 2fd7523826d0249edc86581cb8c2f841fca8bd84ababd19d774359beb682429e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 693fffd790f4f165f6d3ee73706fd09be3983db9468fc276e036c70c0c31c05c
MD5 bf9c9b6361696704a27e85edf3019eb7
BLAKE2b-256 099cbe61477f81040136ff58aaa0ba8acddf09a843bc189c043b1d655f11ce1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cce3605ac62295610abde9ec7f70db834831ff375e3218dd113c0d725810ab05
MD5 3950f466f961f1038e2cae05c2ccf104
BLAKE2b-256 93e32699f962a2550763b35430fa7975bc3e57bbfab287d1ee6dfe30f4a13c53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ed2e1501443559c6371edd792229a0380db5e24c38739368fb620ae06183d62
MD5 96e7e175c487ecedae51a347442f63c6
BLAKE2b-256 862753753d51eba6b6ff6e6547351e09c5adf9c8dcec4f01f2403c8dd4c1b0a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7182461b36c13ff6ac0d38e67d53b6d642d0b98623af639fc7cdd178dd009157
MD5 6f2542f45cfb2d22611eb1526cb5c6fb
BLAKE2b-256 47a35d9ad1c6ca92151cc0dff8c98a29fd8c24233eb3ff391e3266a48cebc763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca964dd6072d75cdd63b5bb619f41ff0e18a1159c9890ce1c219e6072583099c
MD5 e95adfa5334451d2e107c6571a7655ab
BLAKE2b-256 541b091afc91ef9100dbf7e68d25a8b978043f4a2b0339bd07a0de21f7c74673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 d35da2f89d6533ed9f6d5ab6fb6df47d23c78fdc599254f1beed42638a082873
MD5 007c88b031b9ab7f033986e3ee0c7a35
BLAKE2b-256 16c2e1640f2d2ab3e55fe784d2f8b2293911a46d25ed099f5842ee73e7a7667f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 208df3ff647e85304eefb1760db5cad536e785edece215b585ee22f15bea1c8c
MD5 c10630a2a18c2cf71192b7e951a1c8e6
BLAKE2b-256 0dd33a24bb1f8eec1633ea2288e7cafa606594821b059751096adbfb8d00d2a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f894e132f8ab88845282dc7e571bbbc16aa0c80e810319ae1d2c66ea0333f48c
MD5 3df7623429089f0627e3e226fadb54e3
BLAKE2b-256 f33e235c55167aa50cb12a10cf9df71a441cd35a22d8d55fdafd0590926ab94f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da06fae45178458c5be7aafdee0f9806364894ed70bab98c302ad95cddbbc36a
MD5 f5490bf810d35e517865daedba2f44eb
BLAKE2b-256 2fea0aaf36f4e48c202a33055bbe9dbe81b4cbf343557829c7e12fdb477f854e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9baaed71979d117459397c2c3e092d5fcb4f0e22fcb41f4497d264a36f9aa83c
MD5 78adf6ecd3c81b7fd4f7dd0d3bde1291
BLAKE2b-256 0598972dfe2e835aeb9d9a7681f18c1cba6ad1ad3fe67f7445bba2b0dbffd903

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad17e59d578a9e04e9a7c1c5b25637eadfc7f72f2863ba9ec1202938f18b3ff7
MD5 89c37ba15ed2d51313e83a2cfe018555
BLAKE2b-256 9306a3d63d89256ca51e89e7aa5222c2d96c4f3fa374081ced21585036cb8b78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aaf4fcde019b79b89e517980e420c224902fa755828bf39c5badac9bdc39f478
MD5 8e16b42dc68fe3371aee7bff122bbf83
BLAKE2b-256 4f1b055f8a7ed24767d87c7ad52e974f7017b28eff2f8e45d983571935fc659b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5713d84f3b89453e37e5e1b140c987f16d5f1af17d1b680f7344cccc1d948dc4
MD5 690ba84e29d902a05394f3e7f6bf7a67
BLAKE2b-256 7bbb8c9a91700209431dd93a5f104231aa28b8098ccdec5003facd4704c55cba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ca03fa86e3ac8c06dbcfbd69745175e888669eb12c1ae95267862488bf859360
MD5 abfff639d71c03f968bd5ef890e8e676
BLAKE2b-256 337299afe2fd90c067bd4a1b9d0afdb64abdd1ca17bcae392c37a642934cb1be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ab3b8c18c33dafc8233dba200ca204309945438ac150ff795d51abb6acc5aecb
MD5 05dfa0188cdcc14d623e48693282e87b
BLAKE2b-256 42feed44d2ecc1e4a19303fa563dee0d053135132d999bb9c021b4901fd44aad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0a85ee56d7fe661f93c0f6698332256ee5b8b09f752a79ae963837e1c17273b0
MD5 c2b0c8cd2d1c6d15269dcdc6fc1550d7
BLAKE2b-256 4ac3a2f16d8814fc6c881b73e8bdac4e1ce3a82740ab80e87da5bad42ef80d4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e22f83e6a30ae82cfefc337ebddd2b14af2a6a77be70ac3db94e92e53b9d321
MD5 3c930cca3022b599d3200536a6ece6e2
BLAKE2b-256 b52791a166c96612cac89e5bbe34da77fe66d914075d04b864e080ddcab77815

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fd7b56bfc903898501c346d27979425b1cd1c3e2b423e52ed886e913c50d427
MD5 831d1165dc5177e8deaed60af46824f5
BLAKE2b-256 db9d45bc862f335036e575f10e0783ac9fc482de99a8d77d071010966c4ecaee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 8b654ca2db3a579fe227bc00f138e1f2b9f821540154513b0ef88c063af959ba
MD5 e5d46daa93266b538f45258ce4ff4fcc
BLAKE2b-256 bcfeba0015aa031a9122a8cc25476ca483102bb395d240237e2e1e51789a203b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 f07f65553fca828db9f02007e45f13d43622e349e572a3cf96d27b7cbe4b35cd
MD5 e55fcf8b17ac84c8118385213dfcc37e
BLAKE2b-256 4ee607531e0422e852d6e9128b7f741af42f5e1e0eb847cc68a5cc3d74429542

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2bc05e876453a082303338df90d8fa1776386471a5d1256cf38afb893a356ef6
MD5 0316d5adbbe7e544af69ee6c29969768
BLAKE2b-256 559b6db9b57a6c08f50926a96d53a48ad9bc21877fe8fbb2d820df5ec5f85c18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9f738ff37356329aca8eb7de75291d13b3fa9e425bf26abd925ade3c56f667e
MD5 e844b58d917be7f813a4dbff766978f1
BLAKE2b-256 23f7cd242aa6c043f837cf019dd9dda421db4770a1bd47a46b2c5501fe26ae80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 17efa2d5a503f85a77560e7fdeb18c06847bd17e26a3a3df156cd782e21858e6
MD5 644c7e2ec3f649550c268706491f59ef
BLAKE2b-256 3fa54d50eb8111da9f88b308f206ef3a55becba921fa3d7c5db9ef340f9e2b7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e0a9ae6e76916e4291327718f3a571a88b82beedd4546601227a95920c4a493
MD5 2a32d2efe41d272b3930bdc7901e5790
BLAKE2b-256 9bc85bd88c9ae33cfa79912dbefec7d48648f3b0620b057c5e23da772f751a13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d820807e8e26885d837a5d460994a280b81f29e1c3693a73bbb814f290bddc7
MD5 c3ef2c9508a03e9ddfdb43ecdb8dcf48
BLAKE2b-256 b9916ad8838103031df02546c58f1c03df137b897d846381093f001aa8fe36c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 10a9e77d5478f6cf2c93d3d29338a6e1a4ed75b4424ccf9d5d2d2419e96d2a13
MD5 47926057c17ae350b6593f6843cb623a
BLAKE2b-256 c0474937a0694360d74ab6c28500dcd3955c3eb771d538a9be1bedf9cf091c9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6bdf03502face33ac9b11b6178fcf50931656554be4dd2c5b52399c80eb51262
MD5 0e464ce573309e130710e9bb55acefe5
BLAKE2b-256 eb9e1081a853d29fc76e08bd2e1e579aa6e73b67d7d392b23cd30009b8e01cd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 25f1517bbc9e34f2fb49322b43b81127db757500efe938146cd2fb3a8195c5fe
MD5 94aa374c72f9543a1f51c456c5e45dd5
BLAKE2b-256 daf30ada295826a8735fbd15d75f0e0b6f89f850d526e2fa272f0f3b9a6a8874

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 02436ffe0e73da5b721aab76826e16ae032f8845f417dd88d8b16fd7161121e3
MD5 c57156b5560e7499598a79ac6cbee951
BLAKE2b-256 9039cdfc212b769de1baa836afb7b253a1e3e8a199f625435a6869a153ad034d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13dc8dbba4c2357d1115134990fbf5abced5b63c25ec860e0fac500576290997
MD5 d55c3cfd08d57d87dc6daabf6eb51ebb
BLAKE2b-256 d6570958bf621ff2ebcf676dfad87d4a6c2ed5c371b3a527b99e178653ea82b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44081cac63e8e5c0275d2506bb4886d07589f97535d401ff522256330c87891d
MD5 0907a98c5cbfc45e0cd74388438bf143
BLAKE2b-256 c350c854c55e943d41af47799ddf57cb4c03bf79fa89dc7e1fc03624a81b3f6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 c3402d42d26516a84aa8a7e696098722cebba2d85c3bd63d527ec410edd82929
MD5 e9055d0dfab86fe998848c3566abf176
BLAKE2b-256 c00500900f462c1da670c43734c2250d3ed1e7301546cd7205aaff517efb8072

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 0e824c04f1601e9d41a18d740527ec8ecb24c8cdafb51703be74781c64780364
MD5 6df1667b9d8e2d65675eff960e2dea05
BLAKE2b-256 707b04bd4ee90df8adf7ba2b8b758036759faa452aacf92a348a0ac28d6fc7e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2b23e787d1d2c51d027818dc9ec007e94ba8f6d8f40e1a66aa8c2d0cdd46bb4
MD5 e128cd551eedd3cbcc1bd4cf5b23f6e5
BLAKE2b-256 36fd1fb24df56e2d57be622788149485f8fb90acf66260298f674881fb1e7338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7f6286b551189694aac04ea44a02b8ac06066b1ef10051beda1b589f7442759d
MD5 8d15d660247f9e5d60c5e42751488ec6
BLAKE2b-256 0d06b0e329deada44696d88fe61800d71f7eaf4b8c3db550750c7635882b85c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 980f16044078759d60240fa9cc0138c85e8a86d8e8e0eb913dead4bc6ce5acde
MD5 2d6bf891af8d78186ae2aa39f818db25
BLAKE2b-256 1aca59c93f67fbc0ab133b31ec36cd89548b12f6e26c0136e5f26e67dd1b72c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b61ac203b4eb37e4b431377b03c8bd392d930546e748764a30d2f899ad59752e
MD5 701930be2278185cf22854baf6999e50
BLAKE2b-256 02bd42abff161cc7ee4c0a24542b2d9720c60c26d43d8c4a56769e887c943b95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06f4e1759f8f69a5041bf526b59692d2ede0d6c657dd8ecd4cb7cca2b8fdacf7
MD5 435fd261139539b4a4028342f501924a
BLAKE2b-256 ad59e27ff287033e98e2aa9c8418847eedf2770315600a303611a3e71031aa72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 df77c769b173090486637dd8c9df2470c326befef6fa3edcdfe7490efb01201c
MD5 8789bfc1e4108ff69e21488db8f1692c
BLAKE2b-256 52b810b8dc1c53017e06b2cfcc36dc41caa9c1e1d009b40b13e8a7f167dff835

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 edcb98e764262cd2b5af2d7cf3aeee82394eb7f23d219f570621e8f6b0ac34af
MD5 e2aeb0a354ba4032728c751de63f226b
BLAKE2b-256 e1a2ebe454a47edda6a554790f08f212cf958dd9c0366ea129ddbab45106215b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bcab1956eb14966c948ee0e7c46e277c2252f5523f054021ff8b3c6af8df135f
MD5 60af2cb901d04ffcd475d50a9a600020
BLAKE2b-256 06c91997361220c16908456e76c93b1c94e49a3f03800002adfc123a4a8caf1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bfd25bc0d0ef069e5e1f8113fb2a024cffdadca120222551db1cc4190aa7472c
MD5 68c928a915f14ad372bd06da50a72952
BLAKE2b-256 cf5e615be78d107420538ff727b1283be780568a913d1a8db0dacab2bf8771f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f930abe9f33b2fbf3610220029ab36dd2375ac1c5401f40412ae45de831c9209
MD5 718e06bbe77dc954e22c53e882474dc2
BLAKE2b-256 6e2cc6c3e8fd8987549d7ea0048ba10d8d056f7d234dbc7988ea4a1616aa4b8c

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