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

Uploaded Source

Built Distributions

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.3.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.3.dev0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (962.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.3.dev0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (986.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.3.dev0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (987.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pyaccelsx-0.2.3.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.3.dev0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (878.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pyaccelsx-0.2.3.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.3.dev0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (878.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyaccelsx-0.2.3.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.3.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.3.dev0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (987.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.3.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.3.dev0-cp312-cp312-macosx_11_0_arm64.whl (790.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyaccelsx-0.2.3.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.3.dev0-cp311-none-win_amd64.whl (702.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

pyaccelsx-0.2.3.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.3.dev0.tar.gz.

File metadata

  • Download URL: pyaccelsx-0.2.3.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.3.dev0.tar.gz
Algorithm Hash digest
SHA256 a88d2cde1b4efcd4b5ed2bdc49ade1bbb301d99d906991024e1a1d458f87c30d
MD5 4a59e9f368e71f6eadd5d4c1c40089b6
BLAKE2b-256 502e211236f59ad3e93b2f78ef530e397c65c6d5088bc751b0b2b947a0096ab1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c63553474fae6619a96c765bb939511b2adc9c3e06bd8edad0be658392d4bda
MD5 178a021507d144204df1730b85763170
BLAKE2b-256 68395af59bc8d2021e1d20278ba4f2a5857c78ac797bce49de593d6f89d059e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 046a1e915556e40b1d03699f94adcc9231b61d9772f958996d49e0fae7402956
MD5 1004f53db9e29829bdf519cefe513c8f
BLAKE2b-256 25397916f09297af722d6ec2957f1ed5a0c74e8d13ea7bef57ac1dbf75ce5c8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2fbe872bc34925827a8398781a2583635c00b389ff4283be37462f45b46031f4
MD5 ba47811d02d3006184f42bcc70c74b56
BLAKE2b-256 fa52f244b9cd7f6205a7a6c2bf8d14cf3a101c74f2af16e2c8ce923503f6117e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 226cc0a2da376140dcc2b31e41e4b01f4e48b23440fb1560275d035060ea9d9e
MD5 92b5c047e19873a0f12dc446bbe71fbf
BLAKE2b-256 aa54fa9ea6f8058b818cbdba6d2d3842e1dac30eddcad5515ffddfc690c07848

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ec6671ea257869b1ae34e11364e7263bb22548afe068ddb46ad8548f3aee623
MD5 77432929e9b29ef03a4ce2d2032ad651
BLAKE2b-256 9261a71d81aa001b4aa7e49a5670ca0dd14e6029e53e587bfad2bca6e1773bb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c19283405fa8a9c7cd9443ba6dde154a9b7b303a1af7d3730e11f50b0a945d26
MD5 ec100a6e97a0aae000a43bd06a4efd3e
BLAKE2b-256 00f0942ebb5fa77e7a0451aab73c7fddc80921dcb1f906d75c3eb6bc85432c69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d52d279d55b193cf3911e8b42b45af6c4634d2cc6f2747c2ccc7570794d8e391
MD5 82ab3009d24a10cfaeea2e60b7cbc019
BLAKE2b-256 d760a33ff57f603574a8c159e5c2740182a4993d15eaace56af057d91112a11c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 29f6c0ba58232e79437660d3ed30e4bc129a4b6347ed5fb10d3d56420442fed3
MD5 f4c65d029adf2ce22aae51b5a1a2b3e0
BLAKE2b-256 b9eb06fba48f2aba16e2cbfb3ab460d60f6a69686f104b8778d0b16bf2b34185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2bfdb0abecd0dfe9126fdbbd717d3a48d4f5bf9f897b3ce699c6f219872e3f4
MD5 fa11cba18664589e23e5b7370a6f6a9c
BLAKE2b-256 170f27bc204d049843b56a573624b21cd407255d0ae60dd72cebe99929023296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b5492447a729c9fa991183897a53833295d35056d7e4cbfba063816b6b395dd
MD5 2d6ef232be6ae53c690fa095abddaf93
BLAKE2b-256 00de7e03397f20c82f381e798373540b297f1a561a980d718d19308d3865aef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a88ec1d9e12f5d3dcdd50f5282a01eba6cbf2653d5617a0a45da20db3fb8093
MD5 8bb922d3f7e4d2a8295b10b1df968017
BLAKE2b-256 caebb64dc0ce180d7538196d341328ab46cc9518e1708a154c982cb62809493b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c492b825cc17b8b69f0c48d8e31c2770f524dcea3ec0b80eda43febb5a130c83
MD5 6cdca7e8c788e36d3cd2310d56ac855e
BLAKE2b-256 2792ad96c7239d0ec0cee8b98f3c4f0c59cb1b60bafdb386132b4fb0daba4fda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 af2f98e64238b0156f4b2983c53928dafa755a02fb39c60204c8412c037fc341
MD5 56b046cef678a9195bce160911170425
BLAKE2b-256 6da7c9010383bee4b0d2f4ae17c89fb322902b900da45a0a6df0353b26a14f3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b92fcc8d3bd3460e3b92fbd172fa1a10fa00a45e99c1c88766b751063b93f013
MD5 e3cbb0ae1189a640e9029ab97689a16b
BLAKE2b-256 b611454ce1c787d1ab638bc273d5f46235748727c08820ddbad4a07b18a628a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8683bd921e36cbcaeae7403bd0a2af5a4c9f6a3c48294bafd9ebd75028f96bb
MD5 4f1dc7bf671b7c45177ea8d13f287e3e
BLAKE2b-256 aa120434310b60a74adfbf17e9689dc99ee3b7722305ef8a9a8f7c3e1e51c298

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 efe9c5eb7ae1ec2b96a7fb33fc030d8f0ff10a43db62821e5905b715410bd5da
MD5 b49e5e4680a03a9159b248360cab16be
BLAKE2b-256 fca547ea908f7945d5dfcef2fd2895ff04aa26a29f9e61dbcb0bd83557d24b29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9d10779962bc925486c794fb4f16c3e8c56b6ea17b37c234ea293503da6fbb26
MD5 57f44ee3b2543013340afa119ae12f1d
BLAKE2b-256 3599e74f3f84df2231e914ab4d955e0a9b22e79ac3e69202fec3b4e6dda69874

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 868826c88338c4f37df372e0943fa24a756e45b419a6cd0a44fa63fa647c45b6
MD5 b2e228847725082893febeb01324ec5b
BLAKE2b-256 d8fdce7740fd437e2362776277c324b44441d6411abc95c176c3846650479365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4d854e8a2fdbef0577efd52ceeff205313377d92a83ab7fd13d470cc996bf273
MD5 a8c475f0a7cb3ca1b0fdb2b4ab8a8c4b
BLAKE2b-256 bfc5e753ab4500f9eb44e665e4a50d5823eac02636b7b9baa80e1502937bdf28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9b443a0d32953aafe7c34bdabdba0d975b5a14ed514055f6b9865ee3bf61441
MD5 bf04679c8d7084c912e90497e0aa26f1
BLAKE2b-256 deb9b8c786fd12f7ea8d8a7054672179ab5fa145792e79d7b1a1f91ef64b44bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd8ee6bbf85f7bd6583e8cbfd5f8095eaaeef4d30b34f0ff04910564aaa55bd1
MD5 4157a73245f6dd8fc41bf4b5b50fb82b
BLAKE2b-256 ea1db4c8231eb410f1f7e56ec7b01af7499bce77ca65eb5dd49da1a1ef459eb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7144737b43b3f5527853ee1923e66e6ead307cf27bec9fed18d8f20a1c3fd4d0
MD5 567782f30474f8a76dd6821edbaaf7ea
BLAKE2b-256 ca2bef9504ef1ce80d02218842848d32284a54d41be71a43e2c116efb58075b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d49c3d09a86c9b590a550d234734e8c0bca949cb194b2287513795f7966d2418
MD5 3b99c2727e48905054e71bd5dea0961e
BLAKE2b-256 d3b46dfcff7a27612957dc0f8128a4a865dee0b1a856b1a165999607b3cf5f87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 977f5129560b25a398ae18654c89d10115d9cf9dda406acc14abb1f9f06b81aa
MD5 58c3eebfec86e6694f3950e3cd9f52ad
BLAKE2b-256 f1928739357df3858b0a6c546a120407ce8a4599ec93b72e6e51809eed29204a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9950c04fae7e762d42ad0ba5371048280fd8c250497bbd0e18070530ab54605a
MD5 b9f2ba16e943fa619850c0d53d0f2ebf
BLAKE2b-256 e846058469fca4a97b85921599b9c12fd3098a7cc09139c61bf8458f7483a269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 167d9d2527822410d37ffb827865c5afce414fdd34a557e46cd7729ea0080f84
MD5 d2d414a771e5c71f4052fbcd6bea8077
BLAKE2b-256 515c949cb1adaf1717f89f272ec8670e61e9fcc48849829b67d70c6d3983bfa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7d9a52f64357c3b0977c117ec21f81ec161a66a897b75a79d1e33e9c34cbf730
MD5 d399dccd18f56ce0c8752ba164f3a785
BLAKE2b-256 21a7b594b9eec439e81f4395782c71c3c8078fd7b9cbd6103ced857082b454cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab8e1a83d9165c7d4ab4084188efc9c5a674eefa991921f4aef439fbef824538
MD5 f88f8eedf2b9623268b49ff02dd371f9
BLAKE2b-256 7c37bd47cadd4805b157daf9cc5d98ab12e99aa83c0bc74e31a6f66f5883ab3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 4b3e8a3b4af12eb97895a8e3fc3b2a9004f883c3abe186edbf5635a938f29797
MD5 828333e925c659edc803d0858a589d55
BLAKE2b-256 c0ad74880c8cf27fab2493863325485c45f201d542a36617122a98c68c204172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 cda10af4bd425ec5ae1677793a87988cb3a66d925236a1e6a89c1716f85ad640
MD5 8da55d643ba5156460c29b05db9d93e2
BLAKE2b-256 415fd9cde7ff996797b4d7176520d0649f85efc363a5c1bfc7a06e85e7322375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 437f5e9dbefdbf272d75ed8d7d56c1af9256f77ea924896cb5013c9c07cfd001
MD5 8ee2e6bb80daeeac92b7db1291316662
BLAKE2b-256 1625d4530fd91ccd122accccfa7522d1cb696017af87c6c041d79eb255a8d9cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a768029f013abbba3f7f4d11d6cc91c5a6c8ff2ebf7dbb43055a07e7777ecc2
MD5 8de755140c7d12ca151e647c909d05cf
BLAKE2b-256 86eb3566bae5b50de72e3caf2ab069e75409fa586e37acc3631474c6b4eab052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dbfe2d73a50b8a5803f484230e989e88c5a319fc01d87f9f14d3a3f583438ace
MD5 18e634480a9ce58e1e0a7a8d6d1840b4
BLAKE2b-256 b6d73ecec84665676129317b935805cf588b3d922660888db656b9737c6b9d22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8732619fb895f48f826a7551d9db49564a271f56648657137e67fe77c98248fb
MD5 6dc8a336591eebb0d11d3d68cc8f4a90
BLAKE2b-256 50f3f1f3eeffd6ce5b40b4ff10463d7d16f4ea9127bc626fbc3cc42614bb0023

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96151a35e1e3c900984d9dc49943889d25517cc1d1f0fb7c4800c708ef4bfe91
MD5 ceddbca3e924a533e11126010ac595d5
BLAKE2b-256 1ad400c6ceb9137dc9ce2772c14ece57e0de03615fba4218bb2415c4caab81b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6bf64eeff563c312e14f5ebe71f28ada2bf185a8c7fefe4692361fc1eb26b519
MD5 e21e69e96ae44fb6a139b5932fc9fec9
BLAKE2b-256 89f4eb1d4d6b1b6a855a35abfbb5880521e670f915deb28cc9cee4829c486aa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 381e762fd5e416f43ab6387985c41e00635de999e18d59bd4e17ce978e317177
MD5 3e1513e896b71f6bb19d7965c3aa8971
BLAKE2b-256 e50abc7436fcc263751817b87af268cf78ed25a9001199fcd62173217ce164b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b0f640e9382b19587885b90cdb4b6403d1a95e14d48ca4fce7ad14da8a3bd7a3
MD5 665bf9c862d6b03f59c282e1569daf11
BLAKE2b-256 38eba5e433cea1c1b4b078ccdec8295125e401951a389281506656e971263190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8635094a885e6add9d91b94b86f30bf13ab022476f54b18119c3089f30f4bde2
MD5 c22a66ddebec23dbe5cfa72ff71f6ca3
BLAKE2b-256 46831ef55e3307efcf68f78f286346ddafe6638b0ee711a058b94326b4b5eab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a9a573e82bdb33b4d56a0950c93af1ee390bdf78fa9a2cd501ded716f39f820
MD5 730bac0c68c400c53c3caa2fa81727b9
BLAKE2b-256 01212b95cdf3a9eb6fed7951b20c83a5e891c6a55bb570d0b87c5b71f82062d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 916c004267e8458c8154b2d8dadc2b5ae08bf217aef506dd4cc9dc6b56f45069
MD5 124142f2db887cd515930382c89c154e
BLAKE2b-256 1fd23698d9aa00c984b8fa58a50a03e2c15ca2cc12599bf7e77b41c5a2ccfbcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a4f675d822ef317f30a75d421c8853fa330ddfaa00453f7eba8d4359cac0269c
MD5 7835c36da2881500e7ef1cbd82d332ed
BLAKE2b-256 7564d3f619db1690321a11939c404726ed08aabadd2064d3941d274ee9003640

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 497b12aab6fcd3e84173997806141cced93e3d66c81b1d9cc16e47b5d63f3c43
MD5 d58b1cdc4c1ce3bdfbae665dcec4cde7
BLAKE2b-256 cfc37a216d385468689865062c02c8c25eeb83a072f26d0e1e83883f1f7a4fca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 f31e36a70fb3556b4822c2d5e0f9c1e097f9cbf12eaad88ae3bf94b513c037f7
MD5 5fafd16bb911fe5d4d170aa80a7eb4b0
BLAKE2b-256 340b7d630ae40c7af1b37fa081d3341049cb930c80eb8e2efd7c1cd8060d5e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 227ce36773f5a75156dbd1adae5efb6376cf3c4dc40698b80cb8baa5f3f3e144
MD5 9e366502da42929615d11902fba8ec05
BLAKE2b-256 2f34064d1e214f351b42d7382a3bc5014aedf5efd75d074f23492a32d9dcbbd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e7e962b612d912c706064b99fb6b0855adc3368d6c8069a2b88ba15e07dcd00
MD5 f1b97bb265403f73c3d3f8d70d0715be
BLAKE2b-256 95d4f527f39dba729c3d7ea0eec4c10c3edcc45a4ba180355909378c066fa04d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5aea10b67ea530fa703133d01f2338f0e87ad68e043ae5bf20d0f564e371c51f
MD5 0a6084fafb78c31b67e652be3b2b5ed9
BLAKE2b-256 ff26d38fb27d9d48e44e1e2d5d712fb95802654e7e01375aac4f7675c8711df7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1adcaa528958399368961413ac34bea8b5968768661eb290357ed368f2d664f5
MD5 85b493261b3b611a59888b5af9e7bada
BLAKE2b-256 36556023ba7c38768ff13bc4a131c3ecc5b6dd83c1178008f2b380dda55b3a42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41df248c0557df271b2a8073f11c780af5f44da83df387f1c762229bc71b7e70
MD5 7dac4c4d62570c571ad6083e33bdfd97
BLAKE2b-256 f3dc7343e72586795380bffc90e4b02a9c296cc5e73eb0739a51764f7e0ac4c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 096e954f1cfbd41fb4b76ebdbcdea705032757fdb76308a3412d59cb1c02e7c1
MD5 a9e9d48daa84a225f5bdac89187fb68c
BLAKE2b-256 cb292f287eaa8b6483434d2b56a472249862abce0c22044e85a170c2c0804fb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c01782e7625ca636e1e00765790b8b306b78418a59aa538f7c1565c25ebf332
MD5 16fc4536c4ee79b0b5cecd6f2e2ada6e
BLAKE2b-256 c9bbc3deaf86b0e6a5ee18ec516ed8d73fef3dbc9bae646ea6227da0dae32b9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f3b0618e1d6721232e68a421974894e099cee41060c42e0bc8f5c47a99172c10
MD5 371e1702ad843669c7938cf270308120
BLAKE2b-256 9145c654ba6ea80bbdb9b0cee24624e0aec55f02fc500f8228b2b37b656a4a93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ea95a5cd739e6c5c081457df0eadb5f97e3ab76ded2f1c288c6cae17ac655d0
MD5 f888a84376793494a742e67aa6f70e3f
BLAKE2b-256 ebab05490c05381dfab0233b41926223dea9e0f1b68ab041c2c7a8181143825d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98cd07e837f50b7ebb20c85abe5810ddc498dfc179341265caaa6377741475b7
MD5 11daf41ec75d85ffa6802d844e944779
BLAKE2b-256 0298cf4fb7c29213b4ebe51acee28d964b948ae71ec09db0d63887a70293269e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fcefb73f1feeecff0ce7e5b915ecaabc675977107fba68de769150a895b9690
MD5 c3b07173e5a99cb5247f50158f870a8a
BLAKE2b-256 42facb036197837fb5c4a9210ab522cd3c431b2b8b70a73b718ed04b716b3de9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0fd0ebbf62cb4f5465f350d47d50c1c660cef7200fde83b768af7e416d23e31f
MD5 3a2c0b6f38dd56d23f5227022fdeb9cf
BLAKE2b-256 9135eafb2dd323ce54803ac5603414fa3a6a690dae6362931feb1dbdff8fbcc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 6c62f95bc97e502670895cc266ff752e83a4346143e1b3c961b860f4d20a4f23
MD5 28afbb36969aa0d35d5363214c304c14
BLAKE2b-256 6ad1144f73aae4966b7a21e841a4a87739c5920fcf828e698e2b7959ac90dda7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 d46bdf400c0a35c05bbd693c4d0b3e1606fba65d06d859f325addfa73c9feb41
MD5 22d3f430d9ed0a02e2621d7a6d706e13
BLAKE2b-256 c9ce8711d61cf8a0912f5b68e8790fe6e14681ad2890a7c46a26d752e6576509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b519ff81118df611447f55320fb5ae4eb728ae9f451ae26528231c70b5dd0ebd
MD5 523c59c07b5d3cb36458a25004df9b9a
BLAKE2b-256 d4b30e357ee787e4cad97a29169d85e1c070dc52325bc91ccbccbd4ae512cb6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a53cc264137f894b0fb93a2c38b1573822fb38e23dae817fecd98e3336e49ad2
MD5 1da81d28523e0c479f0b0604ca101054
BLAKE2b-256 b273bcde0e0f22a70b7e023d8382b88e5f0def568175ddc1aa2310eb89d6ec8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 292eeea881fdc01cb13b6d72faeaecf9bcfccb2eec3de233d977600c2f96799a
MD5 ec643b9a7ac17637247b7f2d5a422508
BLAKE2b-256 67cbea104fd16699a4ad849ae697bd6c1519f9b3430dfece0e8db7900d812824

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 909f04edd6efdd7acc489fc2fb01e7dd0eb66c713b951e72b3569fb8084a203b
MD5 97b6859f8fc292dc8edac9510ced05ad
BLAKE2b-256 ab16c962eaaf997a54927606614527062ebd7a1cb7627cd56578334343836e95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24aa264ba7768aea8080a66832b738158a2980bf4b8e55a0a8adbdd9d23af40f
MD5 c4b965dd84c14d947a835e4d5307ca41
BLAKE2b-256 cea078017a50b43318829f0910cef535cb8219faeddeb1a5ae7b9fbdb8f3046f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e704746be45d104037161cfda392b2edaf5eb597f73facc8e141c75428cbb81d
MD5 7b80c0e2d3bac200c3e64ef09a3dee96
BLAKE2b-256 73e055638928d3e11fbbdab53670248ac41eea7701c8ad3da0d4c03dc6804a4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 717913de2fdb90e8f7213ddf39079e1f02c5e57322e91b32ffdecd039932039b
MD5 cbcad02ff0cd5ca8bb243333e2cfcbd4
BLAKE2b-256 2b1e1f98d76dc51b884c7888b409c2d83a8f1caf53e4d64abcb73f48724fa878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9468b507891dd00155dd09cd9d24221f98411506df34808e189faf839dd6d1f8
MD5 d6340ebbab4e32f5d2c0b30dc813ab64
BLAKE2b-256 d7426b8351301382deb142ef05de53d6f0ebdc8fd2ee07112d7af601531b6740

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c69e0e241350b3a34c9e55043bfe3b333bc82c44e60ddecdc9ff369b2e02b932
MD5 751a3639a20dc8d7fee28657e3a4b0dd
BLAKE2b-256 a67aaaf078e4f2247583589fab4d40636895bc741eea0aaa2e9e57f33ba5a2af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29890627ec69a4478c12eb377e28984d4b6736c560bd802baa5973ec4189d538
MD5 ec5ac4e78b6ba165efa3602bfc2e965b
BLAKE2b-256 32d73c5758bc9c4fc035998463812de52b520d5df77d8d2934304346370b0a6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4dc7b4bafe6e942486a3328bf60eb2048084e17154d45061f28dc22d8e1f147f
MD5 26e5cc3ade094654244595a9e5dc5904
BLAKE2b-256 5bbc4901475c75e02ec8b84942fe538d21715a752e021382f67fd630462e5bb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 792ccc9ef42b721dfd3d379005a113316bfa6cc9d0e8c9adeaedd1181149be2f
MD5 04893bcddc0dda0aa269fa6d112a5309
BLAKE2b-256 218b0a106e7692ba9142b1bbc04f5ffa65aa9a57607448ce9acf8aad40f9f289

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 8d7f076f4fc5311f327deb89a5265ca14574742b264daa2c15480cccd3ee4c08
MD5 29ea8270b7612c11d9d8151ed49b2754
BLAKE2b-256 453988a976fc468ac0807591f23d9c6b1842a3ae592ed89bb0705970f073650d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49cd3bbb0d5b1981a9224e774f1b7bb39edfccb77941395585e6841b17e7278a
MD5 38ed26c349caae2b94adb4cdafb9913b
BLAKE2b-256 e417577e0fcc883ade1db9ff95f74c52651a97cdb4059d6ee86d55f1cccceedd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 37d5856aa59c4c152c035c6c7d3a7cde4cb76ff6bb59ae907e8f21aade2395bc
MD5 6447b9acab61e582d6503194e80eb569
BLAKE2b-256 b1049a0f0c753201b69ccad3eed64cc25251469b25f62286d14a4f38be50126b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a8b521330b9c3a32f10bc15e5357c821bc5fc35e83ce4414d85d18432fad3e8a
MD5 15c7058cbf288b1d493a8450b99c05e4
BLAKE2b-256 42d8bf3375a3a46129488ad77be72c33293f4d1c77684367976d61ccd7e4f4b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83e81a1e514191216bf5c815f8d9bc144e174f245cdba23df9a743974e9c32b3
MD5 2d05d961aa256ff406d23a087a4a19c5
BLAKE2b-256 01290707c752e59165699b02a78e23c4d667646cee98c47e7bb468efd5dec927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e59fbf5034ccbade32f8476e8617f0289da856c212b28c25a8bd1144f094ebf7
MD5 acea7cbe95ff7e820034cb6fc7d9ffdd
BLAKE2b-256 2708b23d78f8ba8837086b9a2c1431b7380673720f9e4b3f986c12ba4c3ac33d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5966c5dcdb1e1e4d565bff1ac31e7c1fd10b68de388b9bcfde4909fa34fef3c
MD5 1f91c27a4f0967daba160320f03c39b5
BLAKE2b-256 c3ab9200f1f693097eb462d5f8787520f7d7bd01ec131938fdbfb54ded431ff1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b44e7b60fd36ebde4bbf4f45f0c2638a23596d0e6ca972909bff6595162a18f0
MD5 14b07ce40231991b08e5bea644dd34d6
BLAKE2b-256 911d8ec1ef635c681ad21754eb6f36e552a29b4e2bbd139d2ebe59d2897f2468

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d9cff0bc8a8acad6d4252a9a45eaa5e278ef6c72838b602836e697b7c990ec8d
MD5 039c630a7e7fd36ae9c06eb888c96f62
BLAKE2b-256 6d0f68cd9e124bf3c63f1261a315ef71624097e435959b6c497bf157c94d2530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ec10f174c7806e2a1b67ea3714cc128c06026a4c55d91ff2be2a74ffac568a4
MD5 1d5f252de2cb8408ee9ce77a7147a145
BLAKE2b-256 bffd0d5de53a29a4f69765a6260309b7dd7959e81771b56fa95675fbf00c2d98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7238b3a144e770564a2951111aed39866072ae73b3980b8c119a0cd0edf2ff07
MD5 dac404acd68754b7c88d2e31526e3017
BLAKE2b-256 f5679e293c3aeefd7fa719fb91ad373b902ad0c423040ce8c251680d83aec1ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e32081a9c6f62864711fe86526c7cf0206fd0536302b11203accbd62ac5a71d4
MD5 344b1db4cc46b838637bae1399b3ba3d
BLAKE2b-256 8391c088b54297a84985a63b5fd6c37343541e6c8adbe516b1ea415574eaf58f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 83adcacdf0b4dcbd8c88d7719c58e17b633e64c674573175924e4a1bd24b8afd
MD5 84d97fb4be60c21d45764f74d00d17fc
BLAKE2b-256 e334ed615309e18e2967a29bd80a5e43d818bb36c2a2bcac1a9a2dc9f825a0f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 0f932c39eb56536435ad2c4dbd1d31bfb3c01f4e167b5d8b07e5adde71d35ac9
MD5 fc391299e76918a691523f97c1378c19
BLAKE2b-256 6d5182fc77a45077d570ada9f63b794ea7b4966363eda585a98d1b22c6d305c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20e4fec6990d24702ba36fec1a270f221d3522f94bd043935ab4d910d19e7e92
MD5 ef1f487bbe5483272372d3616308824c
BLAKE2b-256 83e596921cbc7a56923e1147942de294d88c5a148cfa88056c8d3f2425b33dd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed6f02375a3b20b4be823576cb5458c45ff750a028c431c7765849f6a524965a
MD5 31d472e432658e6df365677a44716c7b
BLAKE2b-256 7b6936b6e38c93beea9b1427f487a69aa9e78b9b3b018e0e095a534f1a5e895f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f329f486979651a820dfb3dafd568abe76e7eaa36666782d97f96038df1d4ab6
MD5 c73ceae59438842a78b9c46441757bd5
BLAKE2b-256 093883a6ef5dd7c01daa6d1a2c56214afb55359d85d46e0838b5b6b47584a2fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05064a87d62f86c5588b4c6f3a29c1f286b2152b39caa59635eaa6b20f25a7c5
MD5 cc1a20f202f2d623575ce39bdc53c9b7
BLAKE2b-256 43462fd504f70bb8db7450e67325b654e78756d9ac2ef76acfabae44c3ed1382

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2c991e8784fa7471fedc39b41a5ba84c837316fcd99b0c2e66922e25ae3f070
MD5 673aff156e4c48c362a568ca8dfa9d37
BLAKE2b-256 2faae891e39d1bb8aab6bd0ffd3e3156ee918b887c822550103aefffd63b65d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ec2cdd291937033c8b3ae007b2b0fe18e956a3811996a63f89734c2521f025a
MD5 ff5bc23613c2dd6ad0e98884032c0488
BLAKE2b-256 d72203e16370bb687545a6c6ecbb7d19563568fc6c2c0bc9b3a2bdc13e39f2dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0855add141a8e2eccfbe29cc76b2e9e5c83a83b232519d55a8b7489440f2fece
MD5 48fc528e66345328d341c65e704b5ee6
BLAKE2b-256 95a9ffba3188818c703bddbdde4d455d17e77f74bf479be3bb558bdd64a31aa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6003f2fbb86b14426332635586a43c54606ea8dd05652bc038ee6154718e44ef
MD5 c7345fd57ea2f03c17db79e1ebd16c96
BLAKE2b-256 08e373d8d17b2de76f2ec3964f8b197d728b98c894d19571d3e005801a17527e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 59b35713a1c288fad5e3e5f9afa125f9927f4d8ef70ca4a36e5716e7fb8e942f
MD5 c5d98a08e3c0a604d92f075ff8475dde
BLAKE2b-256 8a4ebe7146328017911e855bfb4b327724330ca40dccbab93f853ea8717c2f68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyaccelsx-0.2.3.dev0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 335ce27df9d1e5074ad4092648fea9c8cc41e04bda0d8286b87d0a78374c1e47
MD5 f7ef34b54df8e34d2e812b2e408b930a
BLAKE2b-256 fd69c3bf5d3932b2b2963fbd81b86e8f8ba76e46a3031db2e736661ef5928efa

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