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.3.tar.gz (95.1 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.3-cp314-cp314t-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

resiliparse-1.0.3-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.3-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.3-cp314-cp314t-macosx_12_0_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14tmacOS 12.0+ x86-64

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

Uploaded CPython 3.14tmacOS 12.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

resiliparse-1.0.3-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.3-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.3-cp314-cp314-macosx_12_0_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14macOS 12.0+ x86-64

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

Uploaded CPython 3.14macOS 12.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

resiliparse-1.0.3-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.3-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.3-cp313-cp313-macosx_12_0_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13macOS 12.0+ x86-64

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

Uploaded CPython 3.13macOS 12.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

resiliparse-1.0.3-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.3-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.3-cp312-cp312-macosx_12_0_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 12.0+ x86-64

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

Uploaded CPython 3.12macOS 12.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

resiliparse-1.0.3-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.3-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.3-cp311-cp311-macosx_12_0_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11macOS 12.0+ x86-64

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

Uploaded CPython 3.11macOS 12.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

resiliparse-1.0.3-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.3-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.3-cp310-cp310-macosx_12_0_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10macOS 12.0+ x86-64

resiliparse-1.0.3-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.3.tar.gz.

File metadata

  • Download URL: resiliparse-1.0.3.tar.gz
  • Upload date:
  • Size: 95.1 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.3.tar.gz
Algorithm Hash digest
SHA256 e1c9141f319ebe66dadc9a30f2da86bc559ea545e631d2de369b8430edb9640c
MD5 fa779901e6716ab69d4a18e56b32d994
BLAKE2b-256 8d06d669623e8efc3a317e7d9991847ab28b4689c71a576c7e2fb60bd77b8329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3dc976cd39a9d85a6d79e5064fde8de9910dd7afebedafd264156b00d721a756
MD5 6662d0a8a89cfc0bff8104a47b6f093c
BLAKE2b-256 4913b5cbfc51525953369bc4ac8fa15b453adc849b7ebd9e5d9f9bdfef030a60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 74264a59f3d5feba3223582edcabc85461f01b410ae6544733b7ab2cc88c3e29
MD5 c9d9b143cd72024da4dec9af8fff21ae
BLAKE2b-256 7a6c193831fd85bcab3b854f19eddef175562d99ef66f82eb2358783404fc4ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d95060ebf1741810ea299f672fb0d46034948df7dc6032311739f36d4ea59c7f
MD5 c4e600b851f12a4ab563d759a57ffc40
BLAKE2b-256 d1e13bb2896073a2a151e2f826cb459b3fcd847b8184e1e4ba01beafc794e810

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp314-cp314t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 d74379ab99c3240d09fb664b862b1a8d4a136d313e1d27bccc6aeb3617aa75cd
MD5 54b7e312b26b932922bf8bc6e8ec083c
BLAKE2b-256 37aee55697dfa6d23e23f8a723ec73fd08520ea9022dd4c01868073ac4b1005f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp314-cp314t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 d1a5590b4222a742b2e28e00976a9972008e87e0b47b3363383df2ed133f947b
MD5 a1dbced365a97e2f07decb2463532bf0
BLAKE2b-256 63deaba5ece1b727430fd9f72982b29db02c3de85d0de294925a25463a0eaa1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 68085ddadb76af560323500cfb3938d09edfea70eff8211cc58ed8e5536bdd3f
MD5 f5150aba53b129b93351e1082169e5e2
BLAKE2b-256 0a2cdd8004c6e5396fa8263d33173c4861285740ecb8fa859ec938dd77f49f77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc4d1e83f0f6adb5d9760719511af4ef709a1f2bc07d162df5904a9e54f05a1f
MD5 c71ebc3052843e16f64f50ba86da2908
BLAKE2b-256 576f851a68778c0780f3f0a67e1cf0c5ffc45bf17c6448d228ac96b52250a9eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 37c28f3dfc890cc13df429705739d23c6435156e76c8008588e75ec1d8cc41c5
MD5 a480b7d673b2edae4bcffdbe22ca8d25
BLAKE2b-256 ba1b575189dd627539c409382eaad0aa07c6abd8bf522ef57e06debc681de9cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp314-cp314-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 a2745ff8ff7a152eeac613e20e45daa839998d81b4b403953373bc77955c7d0e
MD5 b2233931e45b0920cbed09a001501048
BLAKE2b-256 cdc04c574ac36a9352a74e08a4b8cb8a0fb41a6dd86145a7e91f29c85cdf7ab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 7d7f8ade330386b2a7b12a4ed2dc9769c8aa898ba18f638e1b2ae9ecbb860c5d
MD5 bc9d9fa9d42f22a789a5dd5d5b0e0fb0
BLAKE2b-256 8abb40e49ff27f6dc50a27f8926d46b7f8e650777e14f3cf2969bad65c9cc31f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0aa59880a418723f2ac317ba47bf7b755089399436d2264a68568598b0e768f3
MD5 28cf2cc74f66ac4810541ee2f7819ad7
BLAKE2b-256 ba6ee25c96c04b97f8e2265b7b08f4d4672c2ca46511ca791fe5338acc97a355

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 30247f9fc52f9de1f01d2781f27fee91049979f6360f5c127d08050c22c76d75
MD5 93e648f77a629194c3b40b0d3622bfba
BLAKE2b-256 570dc02646ea13db0ea6d90d2f8d7ab2878d18baf7a5129988b7610a1c18ee87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9f16d03af42c4d9bcb1ee5a4f01317497b9781f09df3a9526bb71acc2bc9551
MD5 d4ff969d89a6508a27e579cad15cc718
BLAKE2b-256 35ca8b67cf659c281fa4cf2cd33036e1bd4a410a5f1d636841c4838f8825bba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 768705d68855fe267886ef53b7cf9d14462973ef751926ceaa5dfbc43c48f6ba
MD5 067cd32451a1b140d3c1910f321424f5
BLAKE2b-256 d7483547227bd56d3d313e040574b87a5dadf3200328755c9a243d23a14d180d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 93e9cdbf3b374d01d77caafc3feda85b0cee7e32af228f5116a79fe925925805
MD5 6713eced2e648fc995319b88cece6f10
BLAKE2b-256 bf96eb606a43648bb408ea789139554bc73afb7995f88c9323b4572d9375ad48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e26ecde5ab517b5b3d67183e707e853d86a2e766e2cf019a37ae988aa3abdc74
MD5 be929ae1d5e444b0b690d0241d22eb06
BLAKE2b-256 ca4f8bb75842ae69eef122a0c7b2cf944459ebd03f11a4dbdf25a07585b2f4ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c66dfc4539c52188b375a7bbf4ff8ae39d9cc66decc61f62de788ee46c031627
MD5 702c5bf10dc38b65a6aff79578afa67e
BLAKE2b-256 fe2b535d4dbcd82c7a292985272d4874968446bddfbf8db98a697671fd1e0528

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 625b6f062815190f0351021c24c9dc3abddad75678a9aa6fd70f58cf888e7469
MD5 c0ab6fbcdb8307e7b29e7b7f9f896df6
BLAKE2b-256 9299584e504fd858cc4f95adcbea1c8b75187ad9d8371d55d0b5668ad3e28d74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 16845fb951ca34f3f605123e183f84d5749178139d5180089ff63f2a3e71cee8
MD5 e54b35442d451f2cec08f25ba35cbcdf
BLAKE2b-256 5c13f1d27fb7f56e9c5368f98fe2322557355347a84026901362de8db8b9cbcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 19bcdf9c2aee2d40e960e33e59acd12eaa28810f208d22379e88be97f045351f
MD5 68be6806940f67efb2d674f7ec0f02d5
BLAKE2b-256 3a801c80c79bf11c6ecc897f3f765509f31b14196fd10b41d92ecb940d13c07f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ea16c0a2f9bd1494288ce2d5819933737c8b158e0b9dc5ea1bce2f2848ddb23b
MD5 00b5a0576cb40ad37ce420211ad7e185
BLAKE2b-256 cfdd7f75522b5235940ac9a59572e924d9a55ac35399f87eb8a72c8c981f4560

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9e5d1fbf9f150150c5b7927b64915c148c2921a513ff265452601fc5240193c
MD5 d3b07ae62d60596cbce87c7b6495cbe4
BLAKE2b-256 ea0f892e43ec7646f06b9be7ecc25b03ed73fca82ae449bf3ca2cee2bc08b8a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ba5bdea87d2ce6ff1973cb6d8e00229ccf17ad8d2c7bc7bf553f4452d852cda
MD5 33ce1edfeb7793f9aaa7b0e5fcc73978
BLAKE2b-256 ab3d194395104341c556793695b30e465e418dbccc6bb7c749d28304f9f4acfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 0d3fca6dbd35094f2798d43ac6f30623805d0f1b0e481b3850aecb6f2369f614
MD5 d4924af61bc9273ed349e4c985f88679
BLAKE2b-256 fbbf99a0fb835c5972a33b08cb5e8e0b354dd774fc6a093f2c4a88ab8f25b24a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 79421235dad2ef897fd83576f178dec0e3a45480628463a2a5f856af625ad039
MD5 2df8968e5de245c8a7e45d14342ef873
BLAKE2b-256 b28cab89e0893bc4aaf1988722066d84b104f5518c241fa2298eea33b3e2c5c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d13a4b1ff857ef50771daf51046d4a33d2e0e441a1251275e8264602a4bd2f95
MD5 25b3f11690db11a05554ae1d78594730
BLAKE2b-256 72dd2d29a3fcad57a1734ee37619622e257bc59063477a72c122d1eab603a122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 975cd8f727394942ad809f39b10956f60ef6ffd736d90218dbfd07108c2784ab
MD5 d6c0a169035566cb2b0c350dbf7cad69
BLAKE2b-256 6836d8b974015c861a1d827f0cdcd13587e5e2eee40c2f9e58791d313184eef1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2600e901fa9fd2b121cf34ae9026dc59dc4eb823b67980645bce6ab7b5cf3444
MD5 e8418359abb2dc876886f515e0240d63
BLAKE2b-256 317a3e3f457319f7f8addefbaabc0c1d1f03e6d2302c9997ffce0dc192bf105d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 c99b3069e619ee19363d637ec98eb09a14f7da82e7fc47ced2a718c0dea8e1d9
MD5 a6928f2bec1f4f31fd3a44a80718b9fa
BLAKE2b-256 6ade2d119f030e245324d79ae919f03921e8de254d320409ec66616372d8631a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.3-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 9688a47e3d9285e65a740f0ec1516c656d353766051ed7dedaaa5de412d6a54e
MD5 0870c6e77fcfb25cd2cc4ba6a2eda069
BLAKE2b-256 c904619eebdffa20462a869df17e9c760ca868e5ce3047513ddc4e73d983f863

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