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

Uploaded Source

Built Distributions

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

Uploaded PyPy musllinux: musl 1.2+ x86-64

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.2.dev0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

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

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

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

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy musllinux: musl 1.2+ x86-64

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.2.dev0-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.2.dev0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (964.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

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

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy musllinux: musl 1.2+ x86-64

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.2.dev0-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.2.dev0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (961.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.2.dev0-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.2.dev0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (961.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.2.dev0-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.2.dev0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (961.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pyaccelsx-0.2.2.dev0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (941.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.2.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (876.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.2.dev0-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.2.dev0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (962.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.2.dev0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (987.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pyaccelsx-0.2.2.dev0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (942.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.2.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (878.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.2.dev0-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.2.dev0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (962.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyaccelsx-0.2.2.dev0.tar.gz
Algorithm Hash digest
SHA256 be85fe98960d3596e5d77466deb046af401a61ccc9a1c098d9488c84026665e8
MD5 b92b86eeb097e2d4f98c218a243cfc33
BLAKE2b-256 a5874123f58d6cc991245b3f0a82e35a073fad17b81ed2a50f6bfca945fd6daf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ab744db1b64ebba6b4bece4076cc0c63ac4ea8a74578c0725ae79d0db4d223f
MD5 8b0ad33e553c7a651597a38ac11d3c4e
BLAKE2b-256 8a0de623e4c7291cf4cd88635ef4ebbc8f25eeda9f1a87018178ad86db100257

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f467bcb4140e30231056ea73cd76326a0b539b129f045366834f8f848c6eb6d
MD5 c3d1a28632c43dc6dbb6bf4e816d3b91
BLAKE2b-256 9708a4ae5e379f807e5454498b25ce5e19fa4ac22089c68e8740c06d3c982b70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3cd017b3a44c66ab397176500dbfa4a253b029f90e2d4f945e63fce9da2d5572
MD5 e783389a0b8072fdb3f79d0ebba8be59
BLAKE2b-256 49078332e01248cd05ca0bc2b9c0d9e01d0271d4b7b848c8b73a9aad1a92e0b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b87ef9f9aa51916656dd3217d05f979764b47c1576bb75447f5daf8e84837625
MD5 2ab8a7b0cd41ebe876a8091111da654b
BLAKE2b-256 057a74c0e7c76b7140d0056666080df76a7bcf2bd739adff15a570415009ffcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cca016d00bd7e75e473ad31c4f174e202f45cda535445637d9b7936bab1450a
MD5 38cab20d0b2dc0c4af166a7e4921efa3
BLAKE2b-256 0ca6eb4d722f1356514c28fe7da17c138b4df9d8021408f80bf7c4e83f664079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5120fec37a7d6e07a3f998f85a0a7cc80e1cd3f0069962f20f16792ed826fde4
MD5 a9f0a19bbbb3ff96d18802150a5d6ec5
BLAKE2b-256 26f0c3f6fb5159419fe5f694064a28396f313c8df529c3ab7e4a506f254caa2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8dfbe2995e4abe95b46ca0637f652bfea1d4b948f5f236eaa429a6aa61e79264
MD5 70972de84b23093d0c1a6fc70202dbb6
BLAKE2b-256 2172c36a105e493383fa4e264482ca9c1a206036c5f3b638b801e8e9cd41c972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6841638f8e7e7d51dc75e771d0663955472de34486e1358e5c2375645ab2aec0
MD5 7404eebfd83cb309b34c4a9be9aa9d8c
BLAKE2b-256 9e78ab963ccafd66a47ae069bb7f2e21158e47a7b91ea59caf647a5841c65b32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 633ffd3be022317ac4d7b33c197b99c6d8d1b70ab955672da55251c473d76718
MD5 0d76cfcad65c1b339916de44bd49e701
BLAKE2b-256 ebc0839aee8a6ae9026b0e2a576e938d9869b3fa6e69c27615dd6e4606f7d68c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00bf7a3fb9e69af4a6da03194b8970a0e94f4e47e348d3eccd00978b9d3e7e9b
MD5 c6cd601c9fadbcedba5475b629d2ce8a
BLAKE2b-256 d2172503bf8713eaa31dc1850e1e1e7477173ad23e196a53715df379dd0a0bee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 899bcb8b4c6a5f927251a8404f91036ca28185357281e8d25d44e7df2ef03997
MD5 05bfee345e47ddce894417fc02e3b121
BLAKE2b-256 922f794bd1346c1cfe218f6caf97e169b65d2ec8750f902ef18fbdbb2791b054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8ec0fb708517353695c6eb352dd62feb0fcb1251a073835fe14abccae5977932
MD5 c50d46e949d11af6ed31a2c9795f5b26
BLAKE2b-256 ffd58cf2cf111f4e2e61d4d4aafd3961c5045071a76289b158d2436078a06fbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ac091d090bcfdc98327b743d6c02c64c1912871ce43fb58f26b481fc79d209df
MD5 e0ea83b0e9fb86bd3d292da16ecdd3b7
BLAKE2b-256 812272db7e36098437bb48c31f0ab0fb57bf6dbe1ad1ae5da7beff2b31f6459d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56e5cbf45bb0f86c3771695176ecf7b266de4d3b4a764d528c597fe234925a42
MD5 35c0964adfd13f71d26d272ef4375cd4
BLAKE2b-256 81a2cbe2b02843b7433b0ae9ae3ae48f32edeef6f8adf740c46d76e0bd32aba3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3c99c02639a09447d90696473579e946f3690c7b8164d9f0c9a097a34c563dc
MD5 17f24b8cad1e4f7163f8cbffa0c3baa3
BLAKE2b-256 864faedd7e0080628a2a33e8c53b39104d9c5a092dfe6413d57938e3528d98d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f26e5cb9aefca66f4791a1f4f5ad346d7508fc412b468eee64cc9866b52cf72a
MD5 cc1471816c607aab97adcd128cf762f6
BLAKE2b-256 a446173c9f1c2158141f15ecb772c6d0aada93bc92435e8488dc6651ec9e77a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 050c51890bb5661d696d7051c9059157dbc30039557af6924c8409b3739ba113
MD5 14d6eae18264ee147bc7ee7bbb208eb3
BLAKE2b-256 5e395b501839831eb37fa5cb9f1d2a254390a3026e4e10f2c3a2a4cd02807cf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e0ae7bd5038cff43e5f460961a50373df6403ae1100296ec7f8115e024f3e91
MD5 a0f30fe9d3f6f3c04bf1c03787beab6c
BLAKE2b-256 1fd34ee802a8602bdcf696c84a648b34823b367717c2496ef9fee73d4c20ba0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0cf4e17909f469cff9abecd0e9dcc54f69ea9cff00a9afc8a28f3f20cb0a7078
MD5 26dc90750ec320a2f72ec0d4137ed25f
BLAKE2b-256 1131e275391105f2c493f3a794c7d6ee491df2cae9aff85786c65ff3c8a8a8dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2498fa114e747a49dc35ccea7b11d3afd1913defd7283eaa5d40ca9964bb5d84
MD5 555b5abe2b78d1e5655f8891ad82f642
BLAKE2b-256 da7ee84d621da7a044caa0c820319ef1350d7c6db9b9d0e83fcbe82f73d6c4a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88e84dd343820b2915236d6a3e9b92878590acb58179ad8291d90e173517951d
MD5 28f9033022ba487d8e83c671dd199edc
BLAKE2b-256 c1bdbc4c2091dd9a56b9ede10e1c71114829029de5813ccb7b442e9f0330d277

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc41410ca7687799bc24e71ed0526f5e2b70e9d2483da9107f5bdd9b2326e9f6
MD5 11a12b0863c554950ac0197037b644ce
BLAKE2b-256 3c32796d2539b4e9ab6e1e1376a33816ed8962c096d7109363d6d9d0a4062533

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 55b1e305b4048ec17edd2e75b379e7574d0778e559a2e1f5b60a5c50aeb44f5d
MD5 365255b3d22bb779cc7e02e5f4cb87e0
BLAKE2b-256 f65ea599ec093323146a4eb82a4f3b1a0e8b5639e40a3af4f244663cfe7c47ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c98c569bb921c152aa0f3e168f03d3ef59bb69edd359f38cda3034e1bd6db5ed
MD5 7fce703df0365f4d5bccf1af67854992
BLAKE2b-256 b45d8a19e1109179e1a78e8fa13acb0e69260b2ccaae0bf54601ec77fbd9cbfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 24632dcbe262f0657e3ddd622a3cc618a2a5adc1b2aadc0f832270a6fc03515f
MD5 3d51719aca318eb9ca9fc514b44bfb9e
BLAKE2b-256 023e75efcb16aaac044b12a07ebf3aec2880ef5f65d33faf0be2e693a0435600

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2e6cf36f7c008d341117b7db42bc872bf651cbd722790285559ce627d70042e
MD5 831ebc3f81d4973201a9064036e0156c
BLAKE2b-256 713b76e80b76ca80c34689e1ffa2f8de27cc478a3210cf45fca1e8ec840e458b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0c90d133ac21ede4525fa91d336540eca7c76e624198319530bc9b8f3d42d9d1
MD5 f3db155b9a8e0162a6282afe17e9151d
BLAKE2b-256 b60ef9cbcf5013fa8289434034e9920eaeda68df039fa14610176735ff2cb330

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2c8929730945199425f3afcfb40b7ae8933117b63ec87894083052cac80c992
MD5 81c15777c4fac273b22b47cbaa4e8494
BLAKE2b-256 3cec45ac20339897b71e36afc57d540c2a21ea9d8a50684b3a848efa69ecf58b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 4602d13a8a81003548e80a54dfe22089baca1b651fc79fd2bc5bf6243e0fef37
MD5 204d64bc458dc10aafe780dcb2667736
BLAKE2b-256 013e7c87371e233df004bc81422c3036ebf240b82298f5aaa7c7ec194d7a70e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 001ce6acf38baf401087e4383ad4e8f90e9efdd0c2e314b3d7e992b273d466e0
MD5 957b24c3bec409b2b08d19ffdfed3dc1
BLAKE2b-256 c81387ad62ebbf202946f84df72658368adbba45eb7c04edd606a2b2fb919d24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aba04200f53beb8a87f41cda8eabdb8d592ec897b5be451cffc0051b22b66205
MD5 b1cc0cdaa3aa8ec837a3444d1b68cd3e
BLAKE2b-256 e359895e481a8bf9cef05641b01fa5f82887027fa9f858da88effec484f82e4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 013ee48462be844ebab85041027a6d329adc112636515d097f34de9d3159019c
MD5 31098c41e8f42a72b2555a69ab698d97
BLAKE2b-256 b224bffb90ed63e57b26215a18b3a58f79436b3dd7f49701958fee88013200a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b08d17b7027cfda1d9baf9e9dfccc729e8e9011ce719e93ecaf7318e2fadac75
MD5 362f8f89c2e8b724f67496c3e0eafd01
BLAKE2b-256 e8b3581477daabb4dbd9ffa2bdb9f9615173d9fcc2488358532852e6e407d2e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 658feb2c182851adb786d9b3e83051a6824a1fd144b3046b546b25c59981b7a0
MD5 6586a62e30dd80fdd7531044b65cfad0
BLAKE2b-256 026260461ac50954f6e17094a2696a26b96390ad9917ae6956b2e3783ad31b5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b7b697a35b1bcdef702dbae3d9ee7ae733103dabf60d4fe8fe77b56784109f8
MD5 2868a9343112247e6e33c17a1b45e13b
BLAKE2b-256 887c8e139b0338c86deeb0e311091383ebccf3e968c3e48767984c889a403e1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd4c6e21a5101d16db39cc9f77017866d92a7dfdb6e9052fd7b6f1128adce5b7
MD5 44f8c85474d846729abe2ef450ba7122
BLAKE2b-256 e330a7746bcdc938d726f04e05ab03b4e6914850cda7330a1c1a2392c85fb649

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f7ce11ebcd7ab66cd715e04eb667b27770e727647c3b141d4a4e7a2a2bfa708
MD5 cca629db430d2ef33b7526ce25d95d11
BLAKE2b-256 671f8716e58d64c512cac021052f8548e80d4cfca7544aa73c9345ad5c793752

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1d3d8e36775be269718065fecf92de093acb35fe2625dd247996ff1722de968
MD5 ebbeeb87b62decfc07f11bfb93907ab8
BLAKE2b-256 3d14c50bfa4e9076b27f519b424b1b6dd1533636964f5e18f8a7d64cfb6f2d3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 67b309fce23aae3cf0089c05cf3edd4bbfe48b366020580d82af2c087e88d952
MD5 0011a6fcdfd7842d8a3c7607175af7d5
BLAKE2b-256 201204a6160117ce00dd886bfa3505b87e8ff27551c56f99379ed361d04faba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5fc35e2850ceb795f1ef3b9a442f2b0600a17767e34a6e24c3e13d30fc96a924
MD5 e98fac9ea34c41a01cceb89c43d45e1c
BLAKE2b-256 3eb3e5f1678b6fcb4aac55e142a0ddf06d9e1b6e21397f5e3ac15b98ea47cd46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db2a0dcac77a684bfb35aa36aa54902926f66fb3a5198cec2754f7325a6a68c6
MD5 c695211d29f711672c05f1aeb6bae4b4
BLAKE2b-256 194083266cd982740532358bd5f5e3a70c6a66b88128332afe5f82187ea460e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 44c75373449d82e1fb82330421def382cdda239cc2e8ae5cd36453ad0001875e
MD5 eaa1185772f46fb7cac08d688040fd6b
BLAKE2b-256 ac42696b2d21bd5d81ff29e6e4ac10387a64d061bd1d3cb23da22246a87fd377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 6db2f99d2d41aa5ec420eb97201b4ca9671477edefaa9a9510909ae552133fec
MD5 70c304ba67c20706a85d219a9c958846
BLAKE2b-256 0fee8b5885795b71c0b78225efe122b31ccfbdacc5a6bb07c0bb0f3663d88acb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 7e63b25085a538f5af1a4805834e0761074a68768812e01e0514b74543739872
MD5 a8553e90b9c4c60c6cea76ac33aecfb2
BLAKE2b-256 63daacc12ea1c2facb65cd999fb8d1f3373256650c5f27636df0b991f02236dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd18154b4a9b6fd1ded618ad0ae9c412c797a06860b93304e99e86e6f4bfa7de
MD5 6dd3309d7503815a2179a8a5cf09f41e
BLAKE2b-256 429d246c294f043173ab5a9ac70c78d6558d81b265fff820cf018e060ba51b4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57c3a029af3d6f5e58389613cf2a531eea053181838412c654fddcb48df4146b
MD5 06288826aea98170b6eab699eb8506c7
BLAKE2b-256 6cd88900ac0f0ba7c741a6053cc3c262ddc2f52131401662e58390397a389b35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 79d5078f0fa857dc4f0c2ad7947e67f0a5c9f7dca236c109066045efdeac8f26
MD5 8f98915a3b26456deee32461ace3705c
BLAKE2b-256 e8e2fcd1a276326765db62baf46eaafe7424215af5a3b490d2258370462fd038

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8da1c1dc2347921baea48db5ae33c880f31dd5caa37097da3401c180ef8ca42
MD5 7a6c9ce16daa71a38e9fd49c8a60a4ac
BLAKE2b-256 5373aa23611d4750e0eb18fa2f9b05501b365fd46e51b63a64e68781046a7857

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c3667fd2cf16f1f139c616231041bcf5e2a207d2423d698e07ffb254590a7bc
MD5 bd8ababce9ac0b4018d5b842bfd1106f
BLAKE2b-256 e967f3b7f9240b60010e818a5100d34dc106e81ec5d73e936f16b19894e0029a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 199eee0cac07b3419a37b88c445cb7e8390fee499200d83e57687a61db4d224f
MD5 3f56f74eccb92678dac990f91f98deb5
BLAKE2b-256 6056d2a3d446e55abe22db6401d0dd829ed9a21d79dd4a6088aa8123ae672104

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78b0183738106f1c0472cfebc21c7db7c1cd7ff6180f3aa201d3365e532eff44
MD5 02ec506e2bc57850324c8007ed546ebb
BLAKE2b-256 0a8fec1e2c5a8fc5f63168006f79c1e90e7670cad886fa1472a3a918e589f64c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b001b34e9dfbd27b16904cf9036fa448c1cb2ca62641041f73242de869971247
MD5 05727d3a5e43c1c577c758d5d85d4ebb
BLAKE2b-256 1c9a388bbc03368567b3b23642d5c60c80faf77f915eea5c7e2178b3478edc16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 51aaf022c63041609fa4b8db5f5a5b85c54fdefa51f1963eee3df6b01bf8d87d
MD5 8cbf62fc2af160f467d7c8de6f46f4d5
BLAKE2b-256 ebee035fc42c955376896eb6a5121a2c3101b81d919f540ae7d70e16c5c383f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f5bbd00f477910612b53792ac9cad8dac702db6744bd84b50b87cbb30ada1e2
MD5 5cd7be72489bbac883060a5286e563d9
BLAKE2b-256 2658a48d6b868a2ab70f4c675770212f37ca4b098fc0a3682422cc2bdd77f057

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 770d0c25ac3263a137f53c57b6ec792ecf62710b0c979ea113401859c66cee0b
MD5 37cca4d17240c6b946a1061833967b6d
BLAKE2b-256 f88be4745080fd519bcccad890c41b7c68cbb2639ad6913ed78e93e7b3654c90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e3dbcb268b313a21d803dff83620f9e5fbf03ceef8cea1b29c14e3c13686dbf
MD5 489b24d586bdd927f583e59697e3d830
BLAKE2b-256 f97d7bb901cd96db98051760c9e1e7bbb1024033fe2181e80e8baa4acacdd8cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 41b6b3526cb705e5be13c08b4dec1b54225df7e8352f5d5448364eb586ab0335
MD5 87c24c13d1f1a3b904564305eeba7108
BLAKE2b-256 37e50dbf679d09f2de5007b8e9ed66afb73f66c04d0f394b2b151b651a136757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 26b4b1e4a6b4bc68aca52be0238aaacfee7f6b55799a7ad3941927f621385247
MD5 bd6d8b216224442b9dac2e09b6d4c374
BLAKE2b-256 08495f31551a66c0ca895da3393f1b6cdd281ad800debeb753ccf47f125089f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9af2222fd4f1f491b95d5aed6f146b2c909bc13451b63ea4a1ca58812a60ba1
MD5 40927f5f4c0979a0656aa580fc9ff4bc
BLAKE2b-256 ffd869c4a0f68d2bf4aecd1ca1b3aa84c0ec173b76b34e89dcd1e1f688fcd05e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e3291db1aa831c2a1342b66a4d40f5b6f84bf1b799f42b4ef5b93241205c712
MD5 1067e65daa9ba9b334202328908c959e
BLAKE2b-256 db45a6782ff629c5bfc8cbbb37f1dd09e53c24277fae0d93d43e9472bd408edd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5650be265d9f68eab04fe9f19a9c8b6f87d5d0a3072281b2062848b2d4f3ba8d
MD5 8db5ec49dae828bbe8960c6dac5eb0d0
BLAKE2b-256 1f87dc961294eff7bfdf98f901d5c0a3cf3e517ad8aaefc9e0acc0ed8985ffcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e29504c8b3be2bbe409457d275eaf2599165cf58de0f564bd41e3f8c20c5b6e
MD5 bb712d1460c2ece7da589ba06869a35f
BLAKE2b-256 76ec54f0b48160f273530905233cbee8e65832b02cc74945e7af8567cdbd7fae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 532a6bba6f0ed894336b7ae1228eb0c61663b3810f8cd4234ca83bea5e647aa0
MD5 805c2983b056fb9827574e83feeb0b1f
BLAKE2b-256 a3b5054f7100fafe21e735048d1461a03b2cf63f5c548be05ac10ef8a30880a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e00c8e244ba13efccad7385aefce17541a5a426c8e385747a73a9b1ad9a4b00
MD5 10e77fd4e2b55dd4fa79f2fba09a52c0
BLAKE2b-256 e4fed67f0a5709e519f2bc0aa7aa0505a09afd8c148f457681d511ebe08daa1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4d1d9e2659dd6e332eacb78f1f7aa9888ccfcf5c08f9fd80d3ebc3566e72ab06
MD5 0acc8f5e0c088bff9c29615a20d08feb
BLAKE2b-256 781d5d757383dbe14ab6fd7e0cfc1413414a0dbc962c8e270fc87f91daca9d9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 632b985fb671a311105a52dbb431c0d69028d90f8a01021c9f40507f37a37052
MD5 b304ecd3cd286d0ebc0afa55540e291f
BLAKE2b-256 6449a03483032b11609051b7c040893fdd25cfe708b8d9c1852d9ba50e70251f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ed8b6bf61f9e1317390aea454c253325ff4cb3f1fba4a329e233cf855520e90d
MD5 e0b41106757fc49fc6b7b03408c3305f
BLAKE2b-256 98a3a5a6e0b36ba698a9e07034ee80b6e6f0ade1fae5df203a1a4c722ccada50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 baa91274804e934c247bd5f8b19b288d80231d53dc75b79a21dbb7b11edbae9c
MD5 5fbda5a99ba24df669432beb46e4af0f
BLAKE2b-256 00978fec45a07febdfb01b8301ff1ef38eb8a32cb416d1557ed6aeada908941b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e877833f58d817ec1137b1f82dab52aaba45dd624ebf12b8f33f05f15e40b1f2
MD5 8bac2e45da14002b9b7bfde82c72d27b
BLAKE2b-256 692e27621ecbf220d48f515568844e22bcb91c8094d53292f7bec2d6bf28c241

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 218b3607ae3537b67a184e2bd13bede583907213207f42f94863d8589e0b01ce
MD5 228a43ccf8ccdf3160e04b6803bf30ab
BLAKE2b-256 8b1bd8813562cd81919048c5649212e49e4423cbc245612f65fcfd25e4109227

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 07255e9837e3eff9a72bb3017bfeaa992ac0355d570e58473bb7c7583d1e54cc
MD5 340576fcdd09510c05f5241a1fe40ca9
BLAKE2b-256 2abb97f96baafa2c3820f77e62c020f075bb18c018e7330b20523370e2b455de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 977ff4c31fa8f69a44ad64bd4e85e87bf5f82b510923fb57935b03f2070830cc
MD5 5a692b2a5740e35bf04b08eb89e22869
BLAKE2b-256 6da8b2d04a70e1d09139967fda74c004041ca67a6efdf059c4dd7a0095fa573c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 979c2a40809193a07cd4b035c9fbd681601ee011fad1fb96fe3513905ab14e77
MD5 47507ba43c07544e4a3b0d7d02c7cb41
BLAKE2b-256 d6fa6c6b2bc8129714d01199d7803792738cfad554e7801af62b038c35357991

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8a8689850c8ae7a1af909584b7714dc90137f4e6bb7099b8f910800af53a208a
MD5 c4bd5e8ec63c5cbd10d82d24ce5b483f
BLAKE2b-256 5094a5d64d714b7b81080aa3de630ffcb978cdd8746042dd46aca0c812e23def

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f76a0a272062786cff7675534f88e10f172286aca3c52be985105de6cec040c0
MD5 a3ac8e1c7378e0c80b65b87e6a504311
BLAKE2b-256 c6595e1ba2fa2a8704122bcecbd89465624465eaafc582f0713cccceab2107bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ac7c45c68c544e4f807417eb3a77da9c80816ef3042968b8f1d2777231396d8
MD5 1f0edd18fd8bb6577704077f4475eed5
BLAKE2b-256 fcb795a80a0e4fd3ee96187b55a3f13ff44ef6d3ccf1c71ada67201f6509606b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6713e82bdf342b21ea1154d03182a5d2e8b23516b1c176a41a76712e018e58c8
MD5 c472ed5f29d8b7c0433219090f2d92b9
BLAKE2b-256 fa036e4d927c31ce73be9d9a7a3ebfbe36a721fbf5ead3b8898909e68ef92a86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92f0e513a56cd04e977a55bd469de508c5ae1f2e76128fdcff4d6376394e259b
MD5 4e73d852deeb8b5a0f15721d0a768d2b
BLAKE2b-256 c766943a3721e56871f687b81bbaae5734b55fc2a8fa1f789a546bd6bed33b9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d910c6a56a2ae4466c542e6c0b45781ff0ac10aee05e828c687ae1345c199885
MD5 d669f2e928d59fe7e6dfd0e3c771dcf9
BLAKE2b-256 f27297b36ce6ccae0801fc60f8429520b7ccbbc6aac7fabcd84257f36aa9a887

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d6ff9a516db3aea203e9e0abd981b51e905aad1fdbf1a8906481b8d492b36e9d
MD5 a4e890cad604f297b7c449699b30b771
BLAKE2b-256 8fadcc59b7f44e871f19376cd03cfb447f3d70ed89723ef460e8517268c82a41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c0e54e011e89e34c852ff17930954d2467ec7ebb5223a41ea7f0bdda7712bcd
MD5 92a87fa77ac4bf1476dfd81f24d2483a
BLAKE2b-256 d6ca38b38885c03645ad1325b9321349615e9e5fb0c9cc0e7dfdd2f4a0d7144e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ea9a5727da83c6023bd9fc3b07f0d14a9dffb7e36b8ebcfae4b86e316e1b530
MD5 d8100448a4078a4fb5a3af96c027fdc3
BLAKE2b-256 fa59500b5f5071dccd12e55d6c02fea7ef3bebc3b6a8e974f5d91fbcd7965fec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 99a3a5f1b4f9e6eff8efdc88b3c49cc09acc14081fd3d889f0ee6ff11265fb3f
MD5 165a4ce05414ae23b838ae9cd7c26a7c
BLAKE2b-256 490c9f3b1e4fbd1c6252569336b5006638aa79859a2e323535aab4adb8a85118

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 1fc8c43e1dcc29e1f6d0d26569e6723397aec39a015e8ec94bb6395d076c5b75
MD5 db96c62b2458bf3b8fc94bca851758ff
BLAKE2b-256 5b3090f86318ba297390668f34ea1ef0c3f5753c0e8b349011b2fcafe5731726

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67bc8d1f917d043dcff3c6cd43285e0e8d8030d57e433d19ad11fa590741ccbc
MD5 de26d2e24f8d0af36531b84d2f36edd0
BLAKE2b-256 9786475a42bff8e2d6677d2b53ad2b02cd42523a2fb672581b497765fa7c9b07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 38115c7e845fc4ed78c9985a94ee20f49d4d906dc7927a10be2d4aee5a62b54e
MD5 894d8315248345c7bac3d82c77bc9334
BLAKE2b-256 b62bc3546f763b8e381c3940ba186b8dee85e4810bab473de85da25cfa9306f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 445161a4885f603b6c00233ec324f57d1f7616aaf186b0727ccd26836d776dd5
MD5 8ae10b2ffb2b9cee302a996ab885fc3d
BLAKE2b-256 5eb68563d84bf6a42fbc60b98de9a2b1c32dc5c4e49f5e2b20613a3de5196971

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45fcbbfe12a072dc8b58bcba7eb3e6fe63da0085dbcdad2fab0a9050c3e49298
MD5 b5fa73e46ed153a071a2a66afc6177f9
BLAKE2b-256 ff203e528dad49dfcd46a2b5b8f9474575b835c16c9fff6191c9f7c5c98ada51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2acc1e86f9eac7a4eb5bececae66885d65ba0995fc2b7da932978cba191717e4
MD5 b9ecbcda55fa440bc764768ffbb15253
BLAKE2b-256 e7dbe9801ed41347e591e89aebffbc6e91858450458ed985d1ab6ae39dfa1ddd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c4f614ac8f3eebe94f0bfe55a481e80b8dcf8ff604a70dd5c7dd3b92bd63e77e
MD5 2a8fdcb0577fb81746522345514b2e28
BLAKE2b-256 bf310254031ba4d1e7411131f11b018244b5f1feb24fb299626f8eff6c642d2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 623bdd89006c6c012802704a75c29b502c14eb29a59a59684008531f611a5ac5
MD5 dc6bce0308830f9db54481172f09cbae
BLAKE2b-256 757d537e075ce343c4bc5b4933fb717c3ecd01359102e72c98694c9f35eb9034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b94acc09433ec43fc8131346804a7be4debb6b99aaff9cfd4d539ab5028be288
MD5 fe5b9ae1289828a6ffc0c8563c07e168
BLAKE2b-256 631bb6d872bdf14ab2cc29c958e3df8d6fd9ddc587df4d4d74795148af05056d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f1dbeec24d4e527fbe0b7ee4ca16e052601f237653ba04e5b6043f76f77036c
MD5 b9baa92b2b31bc6174191beb5ae4c4cc
BLAKE2b-256 245eac93655a2a54b220e91579fbb821f4b57a19ec592a4699b77221cd9dc094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.2.dev0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf7e4a9899ac555c734cbc32f4cd57fb9b02f2586a22ebf5e263976bfbfc48a3
MD5 43a30e2163678294d18c0b8c4b48538c
BLAKE2b-256 bcfc3525a37c6e65e5bb4e7eba86566ad768dfead3ccf103efb7d15de2e5eb9a

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