Skip to main content

A high-performance Excel XLSX reader/writer for Python built with Rust.

Project description

FastXLSX

PyPI License

A lightweight, high-performance Python library for blazing-fast XLSX I/O operations.
Powered by Rust's Calamine (reading) and Rust-XlsxWriter (writing), with seamless Python integration via PyO3.

✨ Key Features

✅ Supported Capabilities

  • Data Types: Native support for bool, int, float, date, datetime, and str.
  • Data Operations: Scalars, rows, columns, matrices, and batch processing.
  • Coordinate Systems: Dual support for A1 (e.g., B2) and R1C1 (e.g., (2, 3)) notation.
  • Parallel Processing: Multi-threaded read/write operations for massive datasets.
  • Type Safety: Full type hints and IDE-friendly documentation.
  • Blasting Performance: 5-10x faster compared to openpyxl.

🚫 Current Limitations

  • File Formats: Only XLSX (no XLS/XLSB support).
  • Formulas & Styling: Cell formulas, merged cells, and formatting not supported.
  • Modifications: Append/update operations on existing files unavailable.
  • Advanced Features: Charts, images, and other advanced features not supported.

🏆 Performance Benchmarks

Tested on AMD Ryzen 7 5600X @ 3.7GHz (Ubuntu 24.04 VM) using pytest-benchmark.
Full details could be obtained from benchmarks.

📝 Writing Performance (Lower is Better)

library Mixed Data (ms) 5000x10 Matrix(ms) Batch Write (ms)
fastxlsx 0.97(1.00x) 62.06(1.00x) 7.77(1.00x)
pyexcelerate 2.65(2.73x) 256.89(4.14x) 50.33(6.48x)
xlsxwriter 5.03(5.19x) 297.14(4.79x) 61.25(7.89x)
openpyxl(write_only) 5.91(6.09x) 422.22(6.80x) 83.89(10.80x)
openpyxl 6.25(6.44x) 737.30(11.88x) 83.65(10.77x)

📖 Reading Performance (Lower is Better)

library Mixed Data (ms) 5000x10 Matrix(ms) Batch Write (ms)
fastxlsx 0.24(1.00x) 24.22(1.00x) 3.14(1.00x)
pycalamine 0.32(1.30x) 33.51(1.38x) 28.25(8.99x)
openpyxl 3.93(16.07x) 330.63(13.65x) 62.71(19.96x)

⚠️ Windows Users Note: Batch operations use multiprocessing.Pool, which may underperform due to spawn method limitations.

🛠️ Installation

PyPI Install

pip install fastxlsx

Source Build (Requires Rust Toolchain)

git clone https://github.com/shuangluoxss/fastxlsx.git
cd fastxlsx
pip install .

🚀 Quick Start Guide

Writing

import datetime
import numpy as np
from fastxlsx import DType, WriteOnlyWorkbook, WriteOnlyWorksheet, write_many

# Initialize workbook
wb = WriteOnlyWorkbook()
ws = wb.create_sheet("sheet1")

ws.write_cell((0, 0), "Hello World!")
ws.write_cell((1, 0), True, dtype=DType.Bool)
ws.write_cell("B1", datetime.datetime.now(), dtype=DType.DateTime)
ws.write_row((4, 2), ["var_a", "var_b", "var_c"], dtype=DType.Str)
ws.write_column((4, 0), [2.5, "xyz", datetime.date.today()], dtype=DType.Any)
# If `dtype` is one of [DType.Bool, DType.Int, DType.Float], must pass a numpy array
ws.write_matrix((5, 2), np.random.random((3, 3)), dtype=DType.Float)

# Save to file
wb.save("./example.xlsx")

# Write multiple files in parallel
workbooks_to_write = {}
for i_workbook in range(10):
    ws_list = []
    for i_sheet in range(6):
        ws = WriteOnlyWorksheet(f"Sheet{i_sheet}")
        ws.write_cell("A1", 10 * i_workbook + i_sheet, dtype=DType.Int)
        ws.write_matrix((1, 1), np.random.random((3, 3)), dtype=DType.Float)
        ws_list.append(ws)
    workbooks_to_write[f"example_{i_workbook:02d}.xlsx"] = ws_list
write_many(workbooks_to_write)

Reading

from fastxlsx import DShape, DType, RangeInfo, ReadOnlyWorkbook, read_many

# Load xlsx file
wb = ReadOnlyWorkbook("./example.xlsx")
# List all sheet names
wb.sheetnames
# Get a worksheet by index or name
ws = wb.get_by_idx(0)
# Read a single cell, notice the index is 0-based
print(ws.cell_value((0, 0)))
print(ws.cell_value("B1", dtype=DType.DateTime))
# Read a column with `read_value` and `RangeInfo`
print(ws.read_value(RangeInfo((4, 0), DShape.Column(3), dtype=DType.Any)))
print(
    ws.read_values(
        {
            "var_a": RangeInfo((5, 2), DShape.Column(3), dtype=DType.Float),
            "matrix": RangeInfo((5, 2), DShape.Matrix(3, 3), dtype=DType.Float),
        }
    )
)

# Read multiple sheets
print(wb.read_worksheets({"sheet1": [RangeInfo((2, 2), DShape.Scalar())]}))
# Read multiple files in parallel
print(
    read_many(
        {
            f"./example_{i_workbook:02d}.xlsx": {
                f"Sheet{i_sheet}": [
                    RangeInfo((0, 0), DShape.Scalar()),
                    RangeInfo((1, 1), DShape.Matrix(3, 3)),
                ]
                for i_sheet in range(6)
            }
            for i_workbook in range(10)
        }
    )
)

For full details, see docs.

📖 Motivation

As is well known, Excel is not a good format for performance, but due to its widely used nature, sometimes we have to handle massive XLSX datasets. When I do some postprocessing work in Python, a lot of time is wasted on reading and writing; and when I tried to speed it up by parallelization, the spawn feature in Windows disturb me again. Therefore, I decided to develop a xlsx read-write library with Rust+PyO3 to solve that.

Thanks to the high performance of calamine and rust_xlsxwriter, as well as the great work of PyO3 and maturin, it is possible to do that by just binding them together with Python. Also thanks to the help of Deepseek enable me, a Rust beginner, could finish that.

📌 Future Plans

  • Add support for formula and cell formatting
    rust_xlsxwriter supports formula and cell formatting well so that is not too hard to implent them into fastxlsx. But personally, when I export a large amount of data, format is usually not important, so the priority of this item is not high.
  • Improve error handling

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

fastxlsx-0.2.0.tar.gz (41.7 kB view details)

Uploaded Source

Built Distributions

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

fastxlsx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fastxlsx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fastxlsx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fastxlsx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fastxlsx-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fastxlsx-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fastxlsx-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fastxlsx-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fastxlsx-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fastxlsx-0.2.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

fastxlsx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fastxlsx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fastxlsx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fastxlsx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fastxlsx-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fastxlsx-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fastxlsx-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fastxlsx-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fastxlsx-0.2.0-cp312-cp312-win_amd64.whl (991.8 kB view details)

Uploaded CPython 3.12Windows x86-64

fastxlsx-0.2.0-cp312-cp312-win32.whl (983.8 kB view details)

Uploaded CPython 3.12Windows x86

fastxlsx-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastxlsx-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fastxlsx-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

fastxlsx-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fastxlsx-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastxlsx-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

fastxlsx-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

fastxlsx-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

fastxlsx-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fastxlsx-0.2.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

fastxlsx-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (989.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastxlsx-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fastxlsx-0.2.0-cp311-cp311-win_amd64.whl (998.0 kB view details)

Uploaded CPython 3.11Windows x86-64

fastxlsx-0.2.0-cp311-cp311-win32.whl (991.7 kB view details)

Uploaded CPython 3.11Windows x86

fastxlsx-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastxlsx-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fastxlsx-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

fastxlsx-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fastxlsx-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastxlsx-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

fastxlsx-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

fastxlsx-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

fastxlsx-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fastxlsx-0.2.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

fastxlsx-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (993.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastxlsx-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fastxlsx-0.2.0-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

fastxlsx-0.2.0-cp310-cp310-win32.whl (991.6 kB view details)

Uploaded CPython 3.10Windows x86

fastxlsx-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastxlsx-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fastxlsx-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

fastxlsx-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fastxlsx-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastxlsx-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

fastxlsx-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

fastxlsx-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

fastxlsx-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fastxlsx-0.2.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

fastxlsx-0.2.0-cp39-cp39-win_amd64.whl (998.6 kB view details)

Uploaded CPython 3.9Windows x86-64

fastxlsx-0.2.0-cp39-cp39-win32.whl (992.2 kB view details)

Uploaded CPython 3.9Windows x86

fastxlsx-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fastxlsx-0.2.0-cp39-cp39-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fastxlsx-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

fastxlsx-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fastxlsx-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fastxlsx-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

fastxlsx-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

fastxlsx-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

fastxlsx-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fastxlsx-0.2.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

fastxlsx-0.2.0-cp38-cp38-win_amd64.whl (999.0 kB view details)

Uploaded CPython 3.8Windows x86-64

fastxlsx-0.2.0-cp38-cp38-win32.whl (992.3 kB view details)

Uploaded CPython 3.8Windows x86

fastxlsx-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

fastxlsx-0.2.0-cp38-cp38-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

fastxlsx-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

fastxlsx-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

fastxlsx-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fastxlsx-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

fastxlsx-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

fastxlsx-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

fastxlsx-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

fastxlsx-0.2.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

File details

Details for the file fastxlsx-0.2.0.tar.gz.

File metadata

  • Download URL: fastxlsx-0.2.0.tar.gz
  • Upload date:
  • Size: 41.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for fastxlsx-0.2.0.tar.gz
Algorithm Hash digest
SHA256 06dad2f7cdeceec07da22e44833e4b2de5f48af669c30504e357cf5aab90e2ce
MD5 84fbaefad89ef43af0c579a43e35db53
BLAKE2b-256 3d4dc0868e3520ad5b8cb574a6ad309cfa5ecab25161187bc94a1d5f3efef10c

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ba2a3d495de7b5c215867f6ac6e6272513a472a8f73c8e1492518f6b1c2f5c6
MD5 c5e806ae8edb12f5d748259d5595c9cd
BLAKE2b-256 615b6a7726c111f5a37b3531ac7e20fee48dba4da78deac6e984a1559d8300dc

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d0402f3f4dc299299e3a833433ad023f24faf9bd388aa582b3d444e87be7daa0
MD5 a475c6fdac279f3b34d6be75cf0b1fa2
BLAKE2b-256 d7bbc7ef6e78b7a6e7e2eb7a5a5c24113d83386a9d3665a2f510bf8fa3a45c93

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd01b9c3ed2d5a1e45061e35a8001ea1d77ae377a93ea345cfd52f6c08607f88
MD5 d3e0659d32d79a13629fa640d8be9a51
BLAKE2b-256 ad8b466bf6bb85a907e343d1fab6b96d9fc7b43cdbde0f86ac03e6f292e1139b

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec6850d41748616e96e5394f6d0e5bb37f14fc04f3db7ea8145375bb0a468e79
MD5 056854c2d11eadccba33966b69345356
BLAKE2b-256 7001c65cd2b22d7459bbf1509036d68b93d8a4fadd6590281de619ce5c56a3ec

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d51d17aad3ea31adb15880e666a4793c03f77260f205aed714b8af2b25f9001c
MD5 e373a60cd2e7ef922f8bae938dc549ae
BLAKE2b-256 8630ebf51ed8dd6e237aed145537240e6c9246f498fcb490fcb06331917692d6

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2da0876efffc1d0a1b96eac0a91c341751b08eaa80ccde362e267378c8ff322d
MD5 a2f4ec1fceb7f5abdb7164654f632a13
BLAKE2b-256 03f09f4f688e2f7d43ddcdf139550303958c0ecd9e07ee1a573caff173b78df5

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e85384fa4f1642db16d51f74d6aec59abac5eac34618be8d136ffe3fd9adfa82
MD5 18af8618c0f44a1bfa9acfa59738fdbb
BLAKE2b-256 c7fe6cb31a8e8d915ae3dd55a6ad9df722881c6bb3d77e44a834b90a35c5a1e2

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f105ed25a165fb594f45b5706b0d00814af080453bba11d9e8ca6c220ffd9e7
MD5 611771209be6acd8c49211955d6abe8f
BLAKE2b-256 c34d9892601c19c456ab97b21a8f204be7ab838d7bc59b430a0c12e66d6a5394

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 819906377dc66af25ff3455d7c784d5f233b2c5729d217b71479c83de832ce7a
MD5 0991254b775441cd0a3e4ba2476772cf
BLAKE2b-256 68af5f51a0ec8646ef9e2abbf5d1419a754a22f06243aa2ee7949a98ca5ebb14

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9a8414ed749ea04d6b46da903da7c79748a2800ea377ce0fc5faa112a9a5b073
MD5 24b1ad4364c0fd197e29e94b5a7b790c
BLAKE2b-256 19388295ae243ed2a7a460109565c20872be6014b002781017899fb71794796f

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 433f1ea51a6c03f34714d147df96a2852e2b3d067e5122a87052bf4714a8b78d
MD5 3bdce547ca2e788d826bb5a97d182cc6
BLAKE2b-256 3f3a4d93eb935397d0903239638ff0eb0f57b6f63ec97dce34d1d3bf7ef2b1e2

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c59f943a7fa07771672230b1367a12dac3622852fa6d868f106a20bec590ac7
MD5 f993b143fd425033a3a50a9d8e6b57fb
BLAKE2b-256 7e21865c4f1bc8222b169e82fe7a6c6aa10b37b0dc0dcd366553b9a85bc99dd9

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8433282fad25031af521776350470c0b0bea774abe1e7ca763cf922e4875c5fe
MD5 2220f6e8079a573ba76f972acfa07d2a
BLAKE2b-256 a32d37efcdc47504f4c6626e48c37227785ca4a2150fe622a60b8f79620c724d

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 550b62bd086fa08c2cb7ad499476a4ce66ac7de2a3b9d971feb2453a8a0874fb
MD5 72e7d68155b74001979bd9ea72b879b7
BLAKE2b-256 6171522d05c48494d5cf89b2c2bbb567a7cd6b63369f693e098177a3b9b9a6d9

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73d4093e04f8b9e9ab1912af80381dd2f6eeb838267a6ef69d53f7cac6758a70
MD5 1862a13e182dbd7faff9a8ec6d45d357
BLAKE2b-256 c14eb8d8cc9c108cf58bb4c55875e4f2e8b86b2114d3058bbd568b8cc7f290db

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 62ba8641dbfd718c70b53bf24103003dd7a557cc2b4008f5885ab3fd8cd1b6d2
MD5 abb5c77995b8b41a56e1f2d523c95483
BLAKE2b-256 cdcee96dcae06078fd266b00f5c236a3d03ed40362360f2e5a11085a7b72b084

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 952419276a73c24157b66a8dcab080a7aa0c8b3dba253d8caef7ce4ee57a477e
MD5 99ae25376d11cd7237c5310c2c95da2f
BLAKE2b-256 aa4971548f891f61bf60a52644147eeff498189b2ce48394d3064b2a6b17a068

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e02407bd5a08407b28dae7039c2dcc528e8a590fcd88536ae885215070f2a0a
MD5 5f5d32a238331b2ba0f7c7eac0792e5c
BLAKE2b-256 b04c67c531d23e99194ffec43c64d36f808dc1f7d225021492e6eabe66b4ba87

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ead76142cb5608e92118e5ad950af69cc676f6b18ce29d9dfda644a1d36ee8e0
MD5 e76b65b49b321b54f45a26d724cab956
BLAKE2b-256 cd9881521d5a02158a884c3fd8b42129cdc7350fd4f94f8f39fd4864c3f2d0c3

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: fastxlsx-0.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 983.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for fastxlsx-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 112870a0f1fc54b81dd7c35f15c7132f995b4e79814e1eb710045069c09f01a1
MD5 26b21c0441399a4d4b45a90cb32e71e2
BLAKE2b-256 22c9cc24eb4820ee7eeeea89d3801a5af7465c6364382e55b6b69d67e0c96b15

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc406b058b32a58a336af7bcc9680d45d0eb80bfb830a10e22cf67de5477910c
MD5 21f08ad5af67b1a745c3ca3e95d261b3
BLAKE2b-256 1ee0732150010a01a1e665fefe6dde3fb681a5b64df13becf220c74fd84c14c8

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e56d1cdbad1422cf09cc2357c8c6dd458f876b9a64dbde65c444dc59438aefa
MD5 e340f160c20c6003f70aacd8139301fb
BLAKE2b-256 12c8f8429db7c87e2347f647242304f56eb69824892febdd4f723c1a59ee4b56

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2ba1a481880212e7153d2447a11f20a9451dc1acd90d9dc7e2d0d9475dc82541
MD5 4599ffe82ce5b0f9fe31f871fa4fd7c4
BLAKE2b-256 947da79b28924a11ae09d030df5bf931c515413ea7af35e0099584816167dd42

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b489c3c483497be701a3db9eb0803d83d51d27dd3f230090228e13a76965c7cd
MD5 ca95a3bd877bd11b70e117b02e390d38
BLAKE2b-256 c8e35c6e0d87059bbd7c74859c37b058161cc4b6c86d8813d9c53b57042fda3b

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47d67bd58b9c535681538eef1e1cdb0ea6f45e3ca59d48962cbadd1b1a61f023
MD5 063c1ae482cca8bda382a8a63b9af318
BLAKE2b-256 cb1320af243fc5b18b3970f921abeb7e0bb13db58d90acd98a35aa7ab85382d8

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c418f1141f22b8bef40d15fe2f236bfe669f6d9518748c99f22462c6b1ead306
MD5 808370efc0c3baf9bbe0f7b63f9acf38
BLAKE2b-256 765917f32107cba76391bb6154492bf4ac0cee1ccfd49f14bf3d3bc126ad2e1b

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 037eff93ef59b2fafcd9cdc71db797f0ca0b4ab7b95d4518d239eac84a47624e
MD5 76b9af4a35ba4f52fb5ac0e195bc1ad4
BLAKE2b-256 ca28995203729291ed9a8de47b45681a2aa5b305e5edab6a88fce0d6d2628416

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a3dc30c80b0db84d759d5f6556334db4aa37793f1183855f2a6724dfe0ba74c3
MD5 575922b58a328bc8100bbe3cdf9816f8
BLAKE2b-256 17c188c7aa56522cac3fcd780b69927662779ec543ee7ae4a31da5c31ef8bf5a

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7f5b1b9bdff14093edef96c84eac47a806b39089d1a5da290734134e557cd85
MD5 55fc64ac630afac9d7660e523eba60de
BLAKE2b-256 4c0ab8d6e1f273431ba34240cc0443814de8f072ccc8d055116ccbbf368534c8

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4a16db5aa3582b3f2c4f5b87684a7876a316cc4a6bf3d8fd1bf3ca9a415ccb5a
MD5 15ea58321566fe6a7690aa63fddb4af8
BLAKE2b-256 ad383dd58382983ab5c55be4073f139a6b95ae3cd5c0af929c0245fd33ca69d6

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42c2fd63e747c142da0133e3b57ea76d8daa253e6cf1e17b81620434cd48f64c
MD5 1319eead187b821124e665e7598664a8
BLAKE2b-256 feb72105e2c2397e2e5d85e3d558d52f69b54f8d51296f0c4a3372e1439430ff

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 61f76ca9cb96bbac9a322722c354909f52d60d9133ce0a7eb9b2dd1b684145a7
MD5 656c161260a855b05b17ae9e7da72966
BLAKE2b-256 caffaafc77c76c1f966605732e8bf19aca91ddc3efa5efb8adde1d91047d4595

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c2107f58c59ed3658397c42f6bc8ba91377905df21e9302a734a86902ece8afe
MD5 b7f5775d6244a2f47e7c4df954722ac2
BLAKE2b-256 df5eca943672f5ad728c0a27bc2efda2f1a325e67535a40f3982660f060f2c17

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: fastxlsx-0.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 991.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for fastxlsx-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 25e9baac8e3c55c2d8b7a7a2a4f2f66a53b3ac6a9d615b1be5312776dc83fff5
MD5 9b566fde26f8645e84f46e49e60c4fc9
BLAKE2b-256 b774ac9379aaa5841915ee4afe223b71e8dc418d96e3a3bf1b96563d50461fd1

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb23828a88e0a2972c08fa413dce9e486ce5029ee074dbedde0e3175f6a451c8
MD5 2a128b71b7e36e8c84445178d0b27ec0
BLAKE2b-256 64be59f21202620775f693e00d79216835abff003e49a714a0a73596e87fc248

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c4f6e3729ab1dd7937247fac8ee47f6c929da51a8bb58dfb6b7396ec1a89c490
MD5 5431f060f5f748999e772e24857fce2e
BLAKE2b-256 7992dc877419c1663a811faef82e736e1f5ab19b12b652757e9fd271b0106fc5

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f656249023515171d21ba8f65b53db065572911a1d60b46e9361c80212c74505
MD5 036e5c1ff16c167d4a6cde60c9b11d32
BLAKE2b-256 133b6e2b2bf6e42b210c127258bee27cf0415dc808a8d2d6555acc61bf377004

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce3697367eb7c5659ebeedbcb71327be3f3d9294b8c28f062acb039c7073c2ec
MD5 d5d700d9ebca441777f65484651e21ad
BLAKE2b-256 c1aa42365cfcca55f42fbc2189e013364453e94ef4cc2e24cad2fe0228c50122

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d7ce1e02490301475025dedf6446fd9e21ff954c5fc860228018284a76cbf18
MD5 2ab603acd16b5e4e80e39708ba0e384a
BLAKE2b-256 8ed341d1f43beac2676eaa391f3aa2b76eead181a9005e90348928621ce9e9de

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56331aaef2367e2054dac5c3c97cf2301902ce5f47e9dc69b95ec6f9c182bd1f
MD5 9cf0205badf2c2994a365b426ca28b68
BLAKE2b-256 2026a73b07c4ddbac5018bc5f40fdad1d60e7ce4961fc8dcd50e6eae68ccc67d

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 085abbabaf7c8871554edef21457cc14f25ac74a076a35f5746507b405f8e351
MD5 9ec8838a0d838892ee031a078bcc704b
BLAKE2b-256 5fb6435435160a769ec56d8fef60b4d722213bbfb012a566a1725f9585b15736

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7093757cd29fc07da56aae85629f6f24fbb7b9e30f9338ddfd41918d2ff5310b
MD5 e33f14380b1e5673feba0cce6236942d
BLAKE2b-256 69825bd7c4e8cfd80c9cc2cfd8822b9005dc74524d9281eb3cadcdc33e69982c

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2ae16c47295bed1a232ec93858eae81cbeef68394090ed53311282d02cb44bf
MD5 97948e9ae52990bbb24e03f08d37674a
BLAKE2b-256 2f5ea2b9f92ecaa8ee49ce507d730ba15fef23757da8e51107903b401898b0ef

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bc3099ad948c1998e1cbab880b726e7666003710d79249b04dd4655ca3619525
MD5 efb9b321df51a98e0265d1da899721fa
BLAKE2b-256 e60cca651b83c7edb25ebd7f5884a87981409991b0abde76c2416ab795b75180

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6aad19fc076293d217e0285a4aca48445c89534c9a38f5a4ef4df1c07daf8476
MD5 971c844d93796ebb6c1870dfe8eead53
BLAKE2b-256 dd9f06239361753c5875f0fbd12b3d58d58e89c0811e1dd8dcc16b3949e1b2ee

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 204f05d874df8c8175b27c1688c96c10d646791adcb08bbaf5c81bdde790a2fc
MD5 c02c6dafaeba7a1aeb7491b752fc7177
BLAKE2b-256 a3130169ac07bf0455fd530aa075a1b1f1d9925ed71b8e09007b39090ec2b309

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7117ad5223402d499a03d45ad074278bccdff70beb06b33d3bb9a86654a45f72
MD5 f6393553a517fa4459211eb9ef9643cf
BLAKE2b-256 90c42b738f9be01d24d9803c46fb0ec2e1c771012d7afcad3714e25e446bbbc7

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: fastxlsx-0.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 991.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for fastxlsx-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 855ca80a54b0a6fef6e7157858932ad11ab5a361818291c944b9194a667dae17
MD5 31b827c370a4902fc9d0de5ad98be762
BLAKE2b-256 effe8bc44cd93f0d003bb8d44107211019cf2f054092b12b5c68f30981d9ca99

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47fec0a1e1f39d24295ce00d8431ce141b1d69eb0da7ebbe98600ff7803150ca
MD5 8083984617115f8fd9f4b9cbb87bdafb
BLAKE2b-256 d3f9a7ff6b71c1c50fd1a8676f9be5fd90f5badac2a9fc7842a04098933dac1d

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 843aa9dee60f9cb55d008a8299879be9ec56141187bb0615efcedbe91b00df09
MD5 9a79b26c0cb3b766023bf9881358f6a3
BLAKE2b-256 2596f90b699d4acc53eec0a59c3c618b0dd981542b6ea8f4b4f4266d541baed6

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 71c48efcf3439f29c690988bd1def34c7347dd61f6a7b2a0fa81bc157c8728ac
MD5 15cb8f2aa7c6e92ae3a69194b2cc252f
BLAKE2b-256 2aa5f81aebc8f7af27ce503318bcf14f3e50d6bd3d155231884317cd1f1efcf8

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9fcb2a9afbe551df8feeca5200af5b046ec851a250ac9613c539deb9e385c92
MD5 1c3b1e985c3f17353846bc85d771992e
BLAKE2b-256 99e7fbe897960aad2e8284ebd3deaa4235d2562ff7b4541ec1ef254d1127c421

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebbb1a488e68f934208dc23c05cbac6d9043cff7041846088b0653a1d32114c7
MD5 44412732dc72e6fb38c63d21b2f64ea9
BLAKE2b-256 e996ebe0f54f1792e53c52bf91805b622cd59eb247f0be81c6cf2489162f7e4a

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2de95d5d2b958b4cde597ce252efd7792b83921243817f3d7ee87d1fe0756e83
MD5 d0680eff9701ef36cde0d1fbe0e07e69
BLAKE2b-256 d3e727d45d4ca334d74bfe07533d34227ac3cf0e9b1c5f02a54112f9a92b05cf

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 148194fb47d97e79d44bbea26a300930fe6ccf7c417562fdd8d5b78b7d3c9370
MD5 1bcd1762b349a8c27f5cf5bb0d55986b
BLAKE2b-256 c179e795a8f52f50505052eeb6674101510484adda185504f904742c80af3647

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 42816886cea53eb1f4f77505ec41e7beb1012cb3dfec599710a2b54714a919b5
MD5 a8a07c5d3942e73ac132422dee832e3d
BLAKE2b-256 2ed78adefb07d8516b1cc34902470f1a54e764bbce191374e164fad5b5ba9403

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 706225d3f66ca593d4b3da66462e80766b1b4c190b0bd0f2347aba289801c644
MD5 30defae29439c5686fe0d9829a8ee66f
BLAKE2b-256 5cb60c0df0b2b888e1e03df4ae88e67303021e89e148ecd757b5167c3e3f8c6c

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a57abe4d330a7861e2d026a78f19a9f14e832610c670d3331366727a42aeac0e
MD5 ad39a37db35c6f32339c22a0cefe0d2b
BLAKE2b-256 3c114f082c488dc74021bdcd11bd79cf48c26b6b0e8fd0d618af75c8804468de

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fastxlsx-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 998.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for fastxlsx-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b126c1eb0f4fc7826938bf6cb461a9f6da2bcb1eb40a67a370e49a90a567e60d
MD5 0bd7da045ab50cb6feb52ff2aad5b745
BLAKE2b-256 40d75d52dd6fabbf3361714635e365a4c841d399e28cddae8d17c6ceadd7f3d1

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: fastxlsx-0.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 992.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for fastxlsx-0.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bc94ec2aefdbb34ecd8e80f13a35c34df6b1a3fc822a655dba8a3befac574a95
MD5 2eeb00f48c4b4eba263435eb0409d8ec
BLAKE2b-256 7ce1f3c660e08b877d0973abce327438189078d46ee1d029da2b3f8146af83f2

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26fff64be015c77f877984ffd78d9af035b07f9e329910660de8d80d7eb0b6bf
MD5 72261e80f831ef1fbadc1cb4b93d1782
BLAKE2b-256 237a8d78279f000abb06b13aa2a4473d5895e2c517bd9b209354d5a311ef496c

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 67c80d5b818a3dc98c38a576903cdde6925d557cd8047a8a90b55c1c89be7c1d
MD5 bd54dbfad2409f5259217c5f127d5868
BLAKE2b-256 91394973da592f445eb1fdd29b90d4dd8945a2f8b4bb1c947232bae4cd981093

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 400e62a6dc4e847a91246989dcde44000dd6d8d54b963b768fe6eac3b8dad957
MD5 5e3796d51e582c2b530b30c43947dd9f
BLAKE2b-256 f0d6e3013b438670b7dafd154f6d2217ad72a5fda082e26d0100e226536900fd

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d41d81ba4ca32da3ee229d63fd82f5016d6c5b2f45486e1da3839ffe10ddea77
MD5 6004f685690fbb5b83e98c948c873147
BLAKE2b-256 76fa8c1a42b247f83103ae9e9b33cc97c5e7fd60944b43a5ac678c9d5d6559d6

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e35e13d5af89b832517767e11853231c3fac2b485e216c197289ff39525495c
MD5 7eb2c3ac7c2f1f3456a7604f2b8a48fc
BLAKE2b-256 3524b0e9855af6eaa418233c5503a63e76ce8413c20b9ba974486f4e2ab1f418

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c4468cfb747199660365b7d7c4338f5fe1655171c6240921004af190cb8c05c
MD5 ca0ef5ffaf4ddd8a5d4ea558f8f8a050
BLAKE2b-256 1ba382c08bcc0373e01a5e4a40d6d5093e387dac12790a761d5c60bbf4bcbb0c

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be063dff1aebbb2fb54f6bd71dae2399c724494f02985882629d5808ca950394
MD5 3d5f53f0cb27ac96dcbe1983f4207f8f
BLAKE2b-256 1428fe074f2c27534841f3dc389b3a71d30332fb63ad06ba8f816b6afca26a62

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8e64482538fd63d6dc33a67cab06584584a34afa26da7f4b5d23566bf26d1c8c
MD5 1e5c3f2feb51f221bd7a9eac57dcf5f3
BLAKE2b-256 5df51c9eb470e8f20c895c3169a47105474801a016c5f3d6e1619db586fbc052

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 115cd877449ea516f97a80b2ded81e6f7c386b79d47a8dca978626f38838d4c3
MD5 745316027d0866ca1415debe5fc16760
BLAKE2b-256 51fa6720dd9e375d4136ca437516ac47022d8edbff779fda85a0788fd1193c5e

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7dcd289f028c21cebe1f1ce8a31ed58441081c58d9d16664f75864443fac0a4d
MD5 86b83aa6b3d04e2717bff18d7eb5e197
BLAKE2b-256 c792f245ef68e599909662ca51f851aaa65d7f800ca7925d32f4a9dae889fd25

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fastxlsx-0.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 999.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for fastxlsx-0.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4b489610eff220e15c32e298a3cf3a4e77a4e63fd3e5be1b0bd5b7a178a6fb8a
MD5 8d26891fa811f070ab0b01c5344e16cf
BLAKE2b-256 277f2ecabbcb5ff3d37b34e9e24aa7f71d1a4200bb8ac56b932de5af47f5a7f7

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: fastxlsx-0.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 992.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for fastxlsx-0.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4354a04f3bb5bbaf36b62fe8d524cb6887e480c4cc70c5848ffeddf387561e1c
MD5 3a40b995bae32739e21da8f1412ca834
BLAKE2b-256 651f7954f1e49d0fe322fc82d45e3cc599fbe53c9eebdb31dfca8c1895857341

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d32771c6a1cf629772b99a4cb6be181343f2eb18d1d69c452aa42e494100364
MD5 36cf82a2958198eda80ece8c82d0ec4e
BLAKE2b-256 95531059fc315d300878d39c9ea1f28d92093134dd15b561f922296b4cc2bed9

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6de6e503d5779a154d6917a378753289ef37349d2be113bbaebb9ce6481370de
MD5 43cc06e409e3daf5271cb288b9d1da3e
BLAKE2b-256 59c3c20d75910612876e62e545db407cad1fbb7b350461360a28f04ba1a492ee

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2b5e03666a56533894f298b19c28b37bcf5036ee360125bff34d671a52134f9f
MD5 606100a0795049eb138bc547c3756063
BLAKE2b-256 f56728fad0935e36b4aed2bb5ae3e3cdf093d82ca5f7714bb007ddd587412250

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46fad526fbb03bf6d078bf3b138ceaf478c187ef3998b3f4cb01d3052130446e
MD5 c8d50b2c16d360692926ff558d9efc9d
BLAKE2b-256 ac61ab06056a650ebab6f3bc12a95ac6f6fc402be4916c21f8dcdd6f1e3a3e47

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 582c66e9c0ebf6f5fbc27a2e4390a3b72953421d9e67c296d84109144805e884
MD5 bfee43759a0d97d0d2cccdebd04fdcfa
BLAKE2b-256 495d4dd341c29fe5800d654194e8bd9f878ec7a351741cb188b71f93b03ac51e

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 896c184b291547e6a59400a97846a487e5e3b6d20516aad75d06faa21d43b3f5
MD5 952b66fe9514fce6471f11a6701f2b78
BLAKE2b-256 bbc10203897bc5739661d8c14f118624626574f2a2b62faff2b77825c12d486b

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e1173f1041d67d068350b84bd96b2c913c46eb189ea977761798744a0eed699
MD5 285edcf3b291e39bfb01350e2ead0b91
BLAKE2b-256 0ce6ab06b9f5827994436088da34f4efcb3707cb867635ea0fc40fa51ad23a91

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dce8b9326ed32982e6b0ce2fe90a8256da67b8e79e9bc8f8633b30f47c411138
MD5 e5904d0dda6110a67210013e6fe10989
BLAKE2b-256 349e22622756164f750917f95f1750a688ad8a26251826723ef72e7647621a5e

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 090fcdc46f7db78edfd674ec5eab53719ed9c5f7a9678b4b85dba83a81986ca0
MD5 24e2031efce6f43ea98f2f414051edf9
BLAKE2b-256 8125391e165aa4a7b3f4ec6a244469f34a47f13266b07dec602d3f10f0054db7

See more details on using hashes here.

File details

Details for the file fastxlsx-0.2.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastxlsx-0.2.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5df83e9eb70d25ca838c9966c0ccdc3395e28f78e51bba65cb0d588d0d5240ab
MD5 e1c20e83caa96e01038ef45b46969419
BLAKE2b-256 528d0bfd275cde1ed0d23cb09b6262ac47da18ced3b81c273bbfaed7f476d6e5

See more details on using hashes here.

Supported by

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