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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 12.0+ x86-64

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

Uploaded CPython 3.14tmacOS 12.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 12.0+ x86-64

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

Uploaded CPython 3.14macOS 12.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 12.0+ x86-64

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

Uploaded CPython 3.13macOS 12.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 12.0+ x86-64

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

Uploaded CPython 3.12macOS 12.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 12.0+ x86-64

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

Uploaded CPython 3.11macOS 12.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 12.0+ x86-64

resiliparse-1.0.6-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.6.tar.gz.

File metadata

  • Download URL: resiliparse-1.0.6.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.6.tar.gz
Algorithm Hash digest
SHA256 8bbfc8efaaa2c62a8a897a7a10e8e4b1a908abc3b113d04944bb53dd17179f85
MD5 459a05219781e2257e1b2466e98308d2
BLAKE2b-256 6b94c24f48b8ff7f8260c3db8ddb9f419a9e592d8b8d662d8b53ae18412b247a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 57b547ed32ec0b12d19ad8003e340c9d7c40eabae1f66cd842f2c00f409b6cd6
MD5 01baa4a1af09e47912da449d59aee326
BLAKE2b-256 0505a34e10ed223528f5e724e59b37a3bbf5f55a9d7cbe4ebc45d9faeafb5efa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2761a3d16f09dc7a7a9fdf9f283f40f92722010143f893db122ca020435b51ff
MD5 104c84b23e7121f44b10058008da0903
BLAKE2b-256 c306a3b24e3a0da3e2f2ca25939f38cd36e7afba5b0fd77d9b31b0d6c68a3a44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7331760ec8967d612431b8ee913757d0f9f317803d0ba520d21ced4e0695a4e7
MD5 259ffd34a054961274d26b1e52fad634
BLAKE2b-256 cefe0130c28a3cdd83c6733b76f288f4cf53660873660cf42790268c0c6c35c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp314-cp314t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 1ad47d6423fc8a36b37c713ea6d074b886a2f1d38b80b3ddaa0785a6c1045d81
MD5 91d555e4d79ee50acc466c865e78dcda
BLAKE2b-256 aa0474ddbb838a8ebda6746368851f0efec16d478b1d79d40b836285ded58a31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp314-cp314t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 f2f8ce6e784b7d750327f361eb519096128ca00b08948c659856b09fe3286301
MD5 2efb75adab521649643a45311403af29
BLAKE2b-256 4740e2c1115aa7d857eb065afe1921444209cbdfbae99593805dee351f0498d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6894072006210be3bc5a5403bf4d15cc8cd3617ae2999783ac8228ecd4719ffe
MD5 7d42a6dad0ed4d48679240207e3d7657
BLAKE2b-256 944e4a11db487f544333e2a76e11c5c2cc4f2b38ebd89ef9fb13fffec47510cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9830dd9f68c1f494a56b99e89a85571e4e5b5690ab15c4ea506b212599108ff0
MD5 0233900dad18e2d25bffc1764d400e30
BLAKE2b-256 ce2dfbf53a7c8a3edc6a9e0adc26f258c21f1db56eea02ec6bd2eb218e5b63cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e7fdd96887fc291fe5c0808adf54e453130a6a3adace0f93d17721f60297ae9
MD5 53de184763c633d06ed33fbd51d3cd86
BLAKE2b-256 024dd739beeba043523140f7ef31d18f2c294e7168f43d9e5af26a3d466e5678

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp314-cp314-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 3a93c94c3af549826ad5c2160ca2c40b82989038cd49060718544cbf905ee97c
MD5 7358477bbf61a81e66a297cefb9ff7c8
BLAKE2b-256 85433fce96b1aca022086cefee16286724d33930d50f19d9fb77127266e66ba1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 e7fcfd211cad39f6a1bf17276a875e6bf091a7e9847b98e90512e195fcc7974f
MD5 498aa8f0d63751449da522a56cb8f903
BLAKE2b-256 af14225b00469fdbb4d8a0ce3975284835bcfe7ac069cd44cc0bfae8630f1e11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 331bcb95d902daab110e2a654b20ba4960467144dabb61a25eed5997472d6bce
MD5 34d0cf9c7f537586d1a2ac70b566afd8
BLAKE2b-256 14fa597d270f6ebeae2f8f64b21073ac8cf2e733c6ff0c1c0fc3a29b36691a23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3243b87f1d57a773b183d40ad850ba0d11d3ce5355f925b97f79381f2bfb48b5
MD5 333ff92d490d6630b0c26871fc306c21
BLAKE2b-256 02a60ee39c0af4ad01418d221b42e753ad9f30e1908c5c7c0d4f24d5e7aaa068

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a23035c6147bc8f4b1040ce6ae0a3455a287e5974cdf76914b6677d83337c14
MD5 e25453e5d4808b2a11b9cbcbc70acc97
BLAKE2b-256 eac8e2de4765d94a3a3461374082f28436d1ba3d760fdca23c8d9b87627fa721

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 19d33e56265243628ae812bff6080819dd252e5f83c1d2f1607fd7f227af7964
MD5 75b52c52ee774ef786277a6339a91e7d
BLAKE2b-256 0ed0ad1581a590de3506c6d19bd15e5e7d7ef6b1f7c1cf71cc8e55ef1245445c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 0d008ef280a2b1b08ea5b0ca1b80f5190c28ff7f042482951b97025c3a82a213
MD5 a31cd71f82bb68750e21e4870d95ee14
BLAKE2b-256 94039bae2a65dc91acde1bd9e6984e4f55cafef505c3cdbaddb844157d5ecde6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d0432b887b07acc27121bb9aeef5b5183457e51714fd95f7f94c13b88fb0e25f
MD5 320003a87bd4a26b329aeef94385eb5b
BLAKE2b-256 ca3214248497a0dfada6c653fb298174b1eba8421689f5c797b611372a7ff173

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ba785ebfb6c2b12db9a50f51ed5faf20e2dff32f6c787c1523fe5cafdc12177
MD5 b30d0c3b0f0529a8819b91415f177746
BLAKE2b-256 181d61c27b00368701543010fb5f56aa2f85284886c709cee6b54a99a46a9cf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 973069144b254628cc1aeee80fc920b9c33f031c2a85ae02855f6933390fdb87
MD5 d7acf93763e045b4e844a482f03b8ca5
BLAKE2b-256 8d8f7d35f28245e44082af21a5580d3c91c63ad291a7a6c20e7243701a4dc3a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 53845d9667075349d735e25b355fb0287c2c2e6b78f64d94973c0a03efbaa0cf
MD5 96ac6aebb22cfb7194f1685e1169d0e3
BLAKE2b-256 7e99589e5335a038112d62dc079d229a7ac18245d746073d45c110eb700ac5ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 f274055203903dfa7d17e747b2cbbd4b353cb604b9f683b86dcacab6361e7478
MD5 db5469ebb617312d6baa43a44e510799
BLAKE2b-256 22dcb5ef56c29e287961289284ac6432bfb92ad2365eb6fb4b6f312e1f81932a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a3f7fe813c1e96b1821ac45b4a3c61d9a8ba35fae8eff9dc8e9617121d3b8673
MD5 0338efe5f208039e4a5c6f9756ba4f30
BLAKE2b-256 83a6681f263f2cea1c13379b1cd74e28ea9b036fb8ad90dfca4e629ef596c1c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce1bed9fcc674d48357fd9eff776b86fa12887bd0999dd42708ed77280db3190
MD5 f1edd92a6683dbe52ce55d233247c484
BLAKE2b-256 5885e030b7662772bddfb755bc5819633cf912be3ec5c14000b8746603d0e744

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f81bdd77841f258d07161ac7a72e66a8fcb87dea1b59a155813b44154de6aaf9
MD5 a328104aa65dbc0b3d1a0a93eb1c6c4a
BLAKE2b-256 9bfb1d9770690f7b8af62fc8cf00723cdbb596923e9a54c3116d7e5b8cce2e09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 1a0e2fadf500953842024e44278b986919bd9413e2381d89a512c50aeb824d18
MD5 3e2d00b15d39b8473171fcffaa3e7e78
BLAKE2b-256 d1fdc9501a8e619e114971577b3cf86844f8bc858b3cccfe5b9a556df705f1cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 d74e435bd5f0c93a2b96301130cbe26d38818faf1fe23a8dfc98fe2113599e42
MD5 df735d4d367a4171ced53a8200d4842c
BLAKE2b-256 70a5487d19759ee6a0dab7c1be84e90485fa4f741f3ee9cc1b68ec71805c7054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b65f1ef47bae54c1771a327ce8dc4925cec4e91f08b75df71eba13dd7d841004
MD5 051a582a096f103ab346c52be7badeb6
BLAKE2b-256 b4d55f4154b2ac77250b759ed9bf9d0bbbe0fff1e0316fff25ffe9657f539338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec38d10b0516887bfeb4bee14dcc74b8d5b429d3f003128f00d4adad84e30a38
MD5 c338472ef3ba00139613fc79291d6cd0
BLAKE2b-256 e6e464c0ad706a0977a956c950606da657842dcc0bf64c4debdc6a0282846e18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 93077d330d2a56f8bd1b0518024cf9a8dd32ce341b363f95d6133dfeee30afed
MD5 7d5fe137a41a616ebab04d3ad1f851e7
BLAKE2b-256 4727d8235a5a334f83b0f3697b04901c06610d3e01f3619e4b18503becf28a3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 93cc5fc53bd2cc5d121e0052532c118dbf6f5b9151c65fe48b456d630e64ef22
MD5 0514a6634dbaf97c920147ff61159bc8
BLAKE2b-256 f9c59d26ed668b571aba026fc845cc2c06278fb051288145b722b6442d07f290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.6-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 bfc8f2d79be3a83be247b8be2c1e6fda30da3ee7f3fbf1cfa63510acdf07e883
MD5 6fbc71ab1896fe4ab2c91af7fdd8d34c
BLAKE2b-256 00d2da859aab68aebd5df493e74335d85465d739665d98741854189b2dee9e71

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