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

This version

1.0.5

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.5.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.5-cp314-cp314t-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 12.0+ x86-64

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

Uploaded CPython 3.14tmacOS 12.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 12.0+ x86-64

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

Uploaded CPython 3.14macOS 12.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 12.0+ x86-64

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

Uploaded CPython 3.13macOS 12.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 12.0+ x86-64

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

Uploaded CPython 3.12macOS 12.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 12.0+ x86-64

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

Uploaded CPython 3.11macOS 12.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 12.0+ x86-64

resiliparse-1.0.5-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.5.tar.gz.

File metadata

  • Download URL: resiliparse-1.0.5.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.5.tar.gz
Algorithm Hash digest
SHA256 b014e704abebad13d48f08e770c90af5fe3913146df8097952198fae21cc6755
MD5 0badb1c87125e80fbce8be215c7df022
BLAKE2b-256 fbb806988276e34777878d0ac98cb4c6e9914befbaa34e4d9a0e136d5633f2ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 18d1edcdca1e5500b92660aa8ae7b118e66edb0b16d76ef500f52dd9684ae1bc
MD5 61f393ff1c949120fe06dc202d9601b0
BLAKE2b-256 ebb8e053b2af72d3384ae228ea987a9bc6e6d82702ab33737933baf618828e17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec180be582786e98c381fd4226ba408ebaef4c7d6849f52f38a2c454b658d18e
MD5 f1eddf576c83b6faa383be6dc4cdc371
BLAKE2b-256 311d14754893c2d4706b42f1f31b64ed295ceb6d207817014383cd48c7f31e47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e0669ab4bcdaf062374ca2784b6818a70da75c1a3be99d11dd7f8d47c6a685a9
MD5 2c91830d944e5453a3c7bdefc84b62ae
BLAKE2b-256 fdbb3fb8b223a6d43ae8e259185e3a9fd63c7e906e301865230f214595099587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp314-cp314t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 e9f8172af2ab63cc84d0eebde40da2add9bf86c750ffb30b36c3e95e67b5312f
MD5 02d61023fe31fb73385983d94cd307fb
BLAKE2b-256 b6eda26b4352842ea96555237bf6d49fe1cf53280246bb337db792b01cc8e217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp314-cp314t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 81c9e630d6e3fe3de6d41bd2140588ab697ac12e1f070b358a7c6f21d1d1a931
MD5 2a4be7a432347a90608a8c10c3c76a72
BLAKE2b-256 5c1b287e8452d6527240015aba646e603b5a3493566bc2274197071e6a89cee9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6d4939701a6aa0ad15cd4a9dc99fd83dc1d1f33b8fc96e73a0e33eed2a21ddbe
MD5 40b3b6780b704f6b6cef855accf76058
BLAKE2b-256 78d7a135193763abe743630053ec4d61635ac5b86c8c3a859812626479d680f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5883284ab172f2e8638667cf484371ad924e330f606447c04245edb70ae302a9
MD5 bfb77f849a2e910d6f7e0736d61a0d31
BLAKE2b-256 764310a2804a5c9448bfd07ffbfef939dab55d180443d0c95809eadf1a5d6cef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 563fcb699eb3972d60e19e758e56ec3acf39bb840f273fea49b6aa8801f218f4
MD5 e61302dbdea491a9b03a24d3131994a1
BLAKE2b-256 cda86798acf798bd183703bc36d55900a26b5a22dc76789b004e32102c5b30ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp314-cp314-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 0865574ca3d0919132183ed0ec79378b0434d1c4d8f3fdc204ee4178d2ccf7e3
MD5 c28e60141072d5988ef0fde2a4ab6180
BLAKE2b-256 6324ca544819fd1fc9748fae479348dbc721d35b4e113379b9ebf04c6b958b4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 ae2d9252c2fc4cd4980a7e95984d7dc400296e793f3590b97db95bf39319512a
MD5 2d879cf02b7a9c7da35e5f31e9f66acf
BLAKE2b-256 89ac0bb0e6dda688362db4895214e00cd465ce10cd51c4950f307b667efdc6ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 118693b211575b18fbea4d8b975f9887e72bc35f11f744da4329310b6c7db08b
MD5 4977179b0567a04f3c54586677654d3c
BLAKE2b-256 1bc37a24f351fba37e33bc51c385a5f50bffd171378e714c85f828d3b054bae8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35e92b422049bb9486222fbde7c738a8f2d70f16eb32f236d546d710059dd4b1
MD5 2eef4725aade2074de2ffc75864fe647
BLAKE2b-256 fea2728267f728703e0543fa57cb281a61f2662bb7c95d2d79d2dd46a52d9241

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c1ab8901e1559c3a618603e484aeba58d6e4c7b9f3d4bf9145b4a2a158de60c3
MD5 e8a89ff9043f2fba434f3244d3ca7d45
BLAKE2b-256 10d78b7f027d2d59ba536cf2b46f9b36a88920b36605e19e5f06d9d2100348ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 525e561fdb877f6843dbc7e0fa6f661282ba9f347321df594f42156a70f6b117
MD5 bd5d5d1b04558ae080f457509de2a985
BLAKE2b-256 5add5d386e4edcfa53dfd2aa8ccb17cf58b9a8c7a77d88b3c46d5c074b1b2ea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 89fcdc5a58a352c4cec1bfc6100a345fcb90cb63aa22ffb9902232e26bab4e6c
MD5 4d0d04fdde88cf4f549e6bbb8f752741
BLAKE2b-256 a0a5cafb3d946db5e1777b7a455cdfa0320248c5e1fc2ac62157c80154f5571b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b7a5626b4453fe4ae0ec57b7b97575b768ec5a01def34046b954b5d75454ba15
MD5 c541a5cc5335006ae4477d2f5cc0003f
BLAKE2b-256 557182156d6af1def995c8533768045042f2a4f943efb66c0f24387079e0c732

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5314d5865a0325b24fdfef3d809a2401330d049487e51976f6175cff7eb8645d
MD5 2b144d22dee3796cfb1baa803b75af88
BLAKE2b-256 a71ecea04e1a9573f66e78d1c0d84d19dc6eb253fa05d6179a37777686120bb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f2b4eba883ddccdf3b36bb59f2524260acaf12515dc9df9c29ce6d2c0860d988
MD5 9f7818e214c79c091ec2f5fde697dad2
BLAKE2b-256 2b74762ab36c6b0c8466f57bc20d5e61592ba8f5472199e310a3a5dcaec28d3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 64ba04a9d37347e8c1d313e7dc6fdc433badf8b1ba7281c1e71cd5a1481d4926
MD5 77a9914428e3bf84885fd8fc1578206f
BLAKE2b-256 764aa6c4a0abfbd5575b901d0089aacca541d82d7ef58e518362f114fd6eaea5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 be17d061a9213a7c18bff922d94a45f444922498509557b20d29db8afe17babd
MD5 66f69757efe29e8eb5cd56704820524a
BLAKE2b-256 3881541c220872a5e03ee0267b9f7c7d14632345f2e9f241fca5b9d24429a9f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8eb4ddc0ce59f4625a6cbae4a0293c788f1908fb90b86f933674138786cc2e22
MD5 e26e586e7163ea93d34004cfc226bb37
BLAKE2b-256 66dc42b9aff268b9fa7657ed7fd886fd38c844a2d839485d63ebdb694d396cd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b94002474a6dcca960e70c70d3ab633a471f01a4d53d1f77afc3bec362437006
MD5 0b28c6122dcf89c5353703c4dd867b6e
BLAKE2b-256 c46599612a97563168f60d0096683ef83f4b84a062f175a1ec43b94def8dea3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4366fac286bf3a3530e625e1b29fd6f098589adab87777ab1a6691377a59363
MD5 1986eba975a934a445d3d722147acd3d
BLAKE2b-256 c7771e14bb2f201587366a7a0f4f22f82e76cef5b88c9d900652a429d8df02c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 b39744b8e40a8884226d99d5019b6f7be8ff8871b0d64e530e38cf108a6f508f
MD5 4891fd6cf6f9da2cea699bfe10bfe21b
BLAKE2b-256 fd69aa5f118dfaec626ac5aa8642ee3298689476068988623734675b5fbbf052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 a29d4f8164f87afa10eb856c4ff383ff2154bdb6653dc15c43645ed374686b1e
MD5 01172c8f658b6b08a13deee7ca30f3fa
BLAKE2b-256 f78f0d028a7c994375c2e5fef47013e552191b852be17966c3aa8fd77133f54a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f835274024668394d6f1cd5abf0a8a10c658f9eddba1bc36efa1674b47121254
MD5 526a60005056083f0727a272ed30c7a4
BLAKE2b-256 5bafd3c8c56c023756fec1edb11e8584a93b74044f489c5884a6913b9ca6771e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85eb0858691f5f727d171eef72158dc452e6e74ba3764cb2bbe12f092a269f22
MD5 e2ff1cd83c356ad5778cc9b943b65844
BLAKE2b-256 e30481e4e122a0b8bc5ce960f47e29799cd8a82170aa47daa3a4c74e12328018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b07b05d83ca4ed4d9225acb9e55ef65f06a06c3ab7b97bca4aa61341c518dd5
MD5 2543d08518888e4bff3c1cab90d3b9b3
BLAKE2b-256 e93836772d28cc2922265fa856b33527205be7270dc70a93a4a6c4fd9b20903b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 4b55b4306ca4dd76ccbbcefd206b00a2830da2e2091951351f84a5949c4fdcaa
MD5 fa29592a03f436e9b0fb29b4c14617d2
BLAKE2b-256 35968d17ea541f5efcb37c7e131fcb1f99b0e990d42cdf92d1970dc246d4e6f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.5-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 5c5cc7fd4d68638dd9463e37dc4f9b89be0a0eb6861c49c32ce78ca166ee2067
MD5 3e81511da387ac447f1cd776f7014e8e
BLAKE2b-256 d366bbf0b1b7ee93aa55459b34f6eefb461e1f4a658a97a1149aef11ea642d83

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