Skip to main content

A collection of robust and fast processing tools for parsing and analyzing (not only) web archive data.

Project description

ChatNoir Resiliparse

A collection of robust and fast processing tools for parsing and analyzing web archive data written in Rust and Cython/C++ with bindings for Python.

Resiliparse is a part of the ChatNoir web analytics toolkit.

Installing Resiliparse

Pre-built Resiliparse binaries can be installed from PyPi:

pip install resiliparse

Building Resiliparse From Source

To build Resiliparse from sources, you need to install all required build-time dependencies listed in vcpkg.json. It's possible to install them globally via your package manager, but the easiest and most consistent way is to use vcpkg:

# Install vcpkg itself (skip if you have a working vcpkg installation already)
git clone https://github.com/Microsoft/vcpkg
./vcpkg/bootstrap-vcpkg.sh

# Install dependencies to vcpkg_installed (must be run from sources root)
./vcpkg/vcpkg install --triplet=x64-linux

Replace the triplet value with one suitable for your platform. Valid values are: x64-windows, x64-osx, arm64-osx, aarch64-linux (or any of the vcpkg default triplets).

After installing the dependencies, you can build the actual Python packages:

# Create a fresh venv first (recommended)
python3 -m venv venv && source venv/bin/activate

# Option 1: Build and install in editable mode (best for development)
python3 -m pip install -e ./resiliparse-py

# Option 2 (alternative): Build and install wheels in separate steps (best for redistribution)
python3 -m pip wheel -w build ./resiliparse-py
ls ./build/*.whl | xargs python3 -m pip install

In most cases, the build routine should be smart enough to detect the location of the installed vcpkg dependencies. However, in some cases you may be getting errors about missing header files or undefined symbols. This can happen if you don't build from the source repository, use Python's new build module, or run pip wheel with --isolated. To work around that, set the RESILIPARSE_VCPKG_PATH environment variable to the absolute path of the vcpkg installation directory:

export RESILIPARSE_VCPKG_PATH="$(pwd)/vcpkg_installed"

NOTE: Unless you fix up the wheels to embed the linked shared libraries ( via auditwheel on Linux, delocate-wheel on macOS, or delvewheel on Windows), you will have to add the vcpkg library directory ( vcpkg_installed/TRIPLET/lib) to your library search path to use them. On Linux, add the directory path to the LD_LIBRARY_PATH environment variable, on macOS to DYLD_LIBRARY_PATH. On Windows, you have to add the directory to the Path environment variable.

Here's an example of how to use auditwheel on Linux to fix up the build wheels:

LD_LIBRARY_PATH=$(pwd)/vcpkg_installed/x64-linux/lib \
  auditwheel repair --plat linux_x86_64 build/Resiliparse*.whl

(Please note that linux_x86_64 platform wheels are not suitable for general redistribution.)

Usage Instructions

For detailed usage instructions, please consult the Resiliparse User Manual.

Cite Us

If you use ChatNoir or Resiliparse, please consider citing our ECIR 2018 demo paper:

@InProceedings{bevendorff:2018,
  address =             {Berlin Heidelberg New York},
  author =              {Janek Bevendorff and Benno Stein and Matthias Hagen and Martin Potthast},
  booktitle =           {Advances in Information Retrieval. 40th European Conference on IR Research (ECIR 2018)},
  editor =              {Leif Azzopardi and Allan Hanbury and Gabriella Pasi and Benjamin Piwowarski},
  month =               mar,
  publisher =           {Springer},
  series =              {Lecture Notes in Computer Science},
  site =                {Grenoble, France},
  title =               {{Elastic ChatNoir: Search Engine for the ClueWeb and the Common Crawl}},
  year =                2018
}

If you use FastWARC, you can also cite our OSSYM 2021 abstract paper:

@InProceedings{bevendorff:2021,
  author =                {Janek Bevendorff and Martin Potthast and Benno Stein},
  booktitle =             {3rd International Symposium on Open Search Technology (OSSYM 2021)},
  editor =                {Andreas Wagner and Christian Guetl and Michael Granitzer and Stefan Voigt},
  month =                 oct,
  publisher =             {International Open Search Symposium},
  site =                  {CERN, Geneva, Switzerland},
  title =                 {{FastWARC: Optimizing Large-Scale Web Archive Analytics}},
  year =                  2021
}

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

resiliparse-1.0.7.tar.gz (95.0 kB view details)

Uploaded Source

Built Distributions

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

resiliparse-1.0.7-cp314-cp314t-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

resiliparse-1.0.7-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

resiliparse-1.0.7-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

resiliparse-1.0.7-cp314-cp314t-macosx_12_0_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14tmacOS 12.0+ x86-64

resiliparse-1.0.7-cp314-cp314t-macosx_12_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.14tmacOS 12.0+ ARM64

resiliparse-1.0.7-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

resiliparse-1.0.7-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

resiliparse-1.0.7-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

resiliparse-1.0.7-cp314-cp314-macosx_12_0_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14macOS 12.0+ x86-64

resiliparse-1.0.7-cp314-cp314-macosx_12_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.14macOS 12.0+ ARM64

resiliparse-1.0.7-cp313-cp313-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86-64

resiliparse-1.0.7-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

resiliparse-1.0.7-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

resiliparse-1.0.7-cp313-cp313-macosx_12_0_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13macOS 12.0+ x86-64

resiliparse-1.0.7-cp313-cp313-macosx_12_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

resiliparse-1.0.7-cp312-cp312-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86-64

resiliparse-1.0.7-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

resiliparse-1.0.7-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

resiliparse-1.0.7-cp312-cp312-macosx_12_0_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 12.0+ x86-64

resiliparse-1.0.7-cp312-cp312-macosx_12_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

resiliparse-1.0.7-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

resiliparse-1.0.7-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

resiliparse-1.0.7-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

resiliparse-1.0.7-cp311-cp311-macosx_12_0_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11macOS 12.0+ x86-64

resiliparse-1.0.7-cp311-cp311-macosx_12_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

resiliparse-1.0.7-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86-64

resiliparse-1.0.7-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

resiliparse-1.0.7-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

resiliparse-1.0.7-cp310-cp310-macosx_12_0_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10macOS 12.0+ x86-64

resiliparse-1.0.7-cp310-cp310-macosx_12_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

File details

Details for the file resiliparse-1.0.7.tar.gz.

File metadata

  • Download URL: resiliparse-1.0.7.tar.gz
  • Upload date:
  • Size: 95.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for resiliparse-1.0.7.tar.gz
Algorithm Hash digest
SHA256 43228f1328650d185e7f6f1138a2a4498494a3a6930046bd389dad8d61d3e43b
MD5 641feb451bc9180f9171892b21a71d10
BLAKE2b-256 80667833bd708d0147a5e68916d3ce217ae90d39feb44e58a83261ede8ac7918

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c41d138cd552a02ba79f0c89b641a41e2ff9294395e784b4e7a0ca09c6df7711
MD5 ebe697f7d66a5188e55e4acb09faca6f
BLAKE2b-256 242dfc2d8b2428967c82d7926083e250ce540cd00fd060f5803d4b4ed1dd3785

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13ddfc88f227e5d4af455696b694e53f7281ea3a1eeb26091ac8de87d9ac5347
MD5 ed8ef31fa7406628c20521cc1a0d1310
BLAKE2b-256 a185289cd738ea642540aacea8a5d6f53846fd60000e3a828ef10d926dcef6a8

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6801b4a80c8e9ffc63df686283b619a96b3d9791565b13f25b48befe99ca14eb
MD5 bc2c45663ea935c7423fad9d95984951
BLAKE2b-256 e4c5edf83a900d9fb26c32b4fafc57cdc263bf6e7a1f375b9a5cdd819804497a

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp314-cp314t-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp314-cp314t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 a1bc879def394af598b7c29d9f10ff8ef6a1a1030904fb0487ec49525fd98ecc
MD5 7c1eceb3a4a7522524b5f4a7b47ecdd3
BLAKE2b-256 0aad82fb183d149748b91ed12ceb7819100394f6a48cdcb1d71206fa46ceaabb

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp314-cp314t-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp314-cp314t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 c2ee40d09435978d3e248139dadf924ee3739faa1cf9000f3a9f6453be97dbad
MD5 134d8b795db19ad4930da470c6d74be1
BLAKE2b-256 6d526f37609c5c350865aaeb6a7a396754f73f49dab851059ff36e79cc605abc

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fb3c7335c6f300e8c32ecf1e00e5719be1c36a9f89394e7d01dc1a96e0a23b81
MD5 b79185313110860cdab6663bebdcfeb3
BLAKE2b-256 78c9f7e8a375a36f6d5393139142197045219ec32ab836ac9a1fb0221bb3d189

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6cecb8807f3343db9be1203c4217273ce3a405441b6c298dfc02c6e714fca5c1
MD5 98db55d18c63d7bd121543784c18ac9a
BLAKE2b-256 c66865e84e6bdd1cf38aba153e32a586c385488df69246ab73c4edd15d536992

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48466f7ab2ce6f3ad25162e57c75a372e676754a1b94e28e77b5114b9bb1d39d
MD5 a409ee6b55422c9186f6048c62170051
BLAKE2b-256 a9ceb380415d2f3cb79ffb03e09ff0e016697c16ccac29b2ca1bd522f5ea48df

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp314-cp314-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp314-cp314-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 5702b53df59aa6303f2788d2e7afa2d713e6b986f02b957532b6485d2361f20b
MD5 021560b7054b898a855eb7808b4dad4d
BLAKE2b-256 d9066c0cd68edfe69f74b147fd115c24785c9910629c8630b0e39d76b6cc76be

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp314-cp314-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 35e4d799b027bbfa845699838201effd455f632c9f787f5bff273fccfb6695e4
MD5 2811ed582a3ecce89c01deb48a3f7c70
BLAKE2b-256 435de3f64807e2a32dcec7fd7703ada392302f75f9538898f41b5e5e5b3c8e78

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c482346bc47d3e65c6b9a20d4b0d566082c64a7ef82abd48acd8f31550618264
MD5 3177817e2a48f50454ed806e33d1d461
BLAKE2b-256 1ffd4e9b5f96a3c60ee1f1d884887ef3e753ffc789172dc1cd7b6ab926062cf2

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0199065889a2437fcafb5a47695b7aec4a0e072bb2c0654767107a4e4441061a
MD5 b0b9a485ee5fb4f8c58d07646ba64f0e
BLAKE2b-256 eb7a52ef3b07e68f2ce7cda77c20f20294eadd6a48c3a48507573272a903465b

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 147dbc0314eae6516d398f92bfdeb9ef379a2ff266bcf04f76a8b2a23a11946c
MD5 9ea1447a7afeae5979ef864078e1f4bb
BLAKE2b-256 56851572413c8c33ce1ba274e080d4ac42c9a4b4275755ed518751b6abd9ff23

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp313-cp313-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 ec8ce8a61db31f1d5b953a106b28013b816a1e85ee0ea8bff9536638f937dcc1
MD5 2a2c1c715f96dc76287fcbda9c667bbe
BLAKE2b-256 f2d9285d2d7cbeec4f276e7893e37f79ffd7c263f1c6652af6c2ee1a5d71d9bf

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp313-cp313-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 35dd6c2852886ea50a75281c33e9061cdae40b0c8aec2c686cddd91647b43c49
MD5 677eb8474e81f735bfcec660011be29f
BLAKE2b-256 807f30fbb62a10cbed1f8efc964bf769b8a0e677c35e459faabec2fedc31a80a

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0196ce3e6109665e774037f961209d2b3c883cc817acf7fa99d2b42a5a1ddec0
MD5 11ce59c40c0cff2655aa98342a0b723b
BLAKE2b-256 1302c2db916a3c33303254c592738e79adafb0477bcc50963d7117fa639b91b3

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64e46a4fe34ec1a01db408925d45305329643cc510208efc3a545b1d2552919a
MD5 d9f78f67f6d414f52aec83872170282b
BLAKE2b-256 46013ff28074fa2ababdf04aeb2d03a8390c9bc274dda28435e7d1949a8c8ded

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 610f8ae9733320be00520e024d8cb5f1fd2d64b494d8748d2f176b28e06c3f24
MD5 ccd38116a343060335724d4efef91002
BLAKE2b-256 fc8f868a9828b1d57082ae7976ba3004d2a0efeae7f31b6c8f5e4896935e02a0

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp312-cp312-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 170034e39713fec4207a0cee61ca5b57aa5eb256c83b8f25dc42806b97386348
MD5 75583e55d7695f1b9afb30083c1908d4
BLAKE2b-256 c202004d14330283b0b0197bee5975e99470c0e3642f59689444495f4c4b7b7e

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp312-cp312-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 ca254bb787dc29b37548cf390087cd575dbae8b8d22bb7954c3ecd9c18600c44
MD5 870261291770c9b05d24d36e898a0814
BLAKE2b-256 af994394752287e441e21179d64878c5c4229eb47479b2fb6a3302adcbd485ee

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b8c5ab21d51a3d6cb98717efe0a6f0b40becedf50c6f754f6707a5a6be61b84c
MD5 fa679b8608588d5388f865ef7b31212a
BLAKE2b-256 c0026babafbd850554c7fd0846de30709fa73bc47b2662f2c213bfeb4a2bf6a4

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5647f36bf972ab8bb8db89f153fd379298838b17167d977b642b9246b6ca522d
MD5 7c65ccba7819c428126423367b54c3ca
BLAKE2b-256 807bbd8e90f2ca39b940e9269744af5a4baf4325c81fe7d5cf7f072ed30c723f

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5bd4153d678682ed533e3ac24b030096ddffa0f38fa9b4186315b42071104e16
MD5 b91a776d67512c055bf1dd086558d722
BLAKE2b-256 ec189b6d586fac7a460fa87555554a924185e9cc847539c0773091ba5aea9139

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp311-cp311-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 9179acf9fd18004af4d5c1b4088d60b98d5caedc3ed3f43289602cdeff2f80e4
MD5 e2dbdc71af4c27888dfb8fef61cd4925
BLAKE2b-256 b267a1603bab0bf1d620f06fce6dcb4074d5e4fc440a76a322fae9f040c32fff

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp311-cp311-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 de60119b16ef51f7983eaa4938ac80c69d719ae05c23ec20cbdc70393811ce2e
MD5 e856cb787282fdc782c5c683f0783d9e
BLAKE2b-256 c601528fe198791d9cb2dc79f4cee3ef6dbc9dcfaef36b533219a67878a27644

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2d3a740c92b1b9c0f7482e1fbcb145b244641fe6e5dd7089fa7e70f49fe02c47
MD5 488b95982ffbdc23c97da94f45068647
BLAKE2b-256 050f89a599aa7f2f38aea2591aaa9dc8daad2b008179bb21761687b461b49bae

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df27fe3a3e85a7e9e1ccb24908c82a3084c5ebb478795902523261ac2fae3fcf
MD5 351ef08bb112161cc091c9e62f29699d
BLAKE2b-256 d9c28cc9563a7677d76dd6f53f483a51c338a51b04929d23120c5fa9619cefc6

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9170a1db4bbf98966e1f797f1c0e854a5ae9f50093d23d28a461f229a92e5ff1
MD5 c548d3ad5825ed39209748b977ec3ca6
BLAKE2b-256 552d0213ed9fe5edcdffadb0392de4095d3fd9859788fe5cad13af41d4fc52f0

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp310-cp310-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 594b00b9fcc6c62b92232c081f4204b75fcd61fcb792eeb04e8c0c2d77503a3e
MD5 5bd6463a022d06d7b086110cfadc35d2
BLAKE2b-256 e592398aa860676f6aec3cd4f69653eb282f4f6a4b8a3e1e486db749fa7f471d

See more details on using hashes here.

File details

Details for the file resiliparse-1.0.7-cp310-cp310-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for resiliparse-1.0.7-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 8715518e8b055e95bdac6bd5baf7d52f747e2619613691ba558c77b3de1b32cf
MD5 1f82e3a307d252725141ee83b711d7af
BLAKE2b-256 06494b519d513c23789f19252470a5e3db16efa70354d3d3dc755359fa5cf3c1

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