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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 12.0+ x86-64

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

Uploaded CPython 3.14tmacOS 12.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

resiliparse-1.0.9-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (5.5 MB view details)

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

resiliparse-1.0.9-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (5.4 MB view details)

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

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

Uploaded CPython 3.14macOS 12.0+ x86-64

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

Uploaded CPython 3.14macOS 12.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

resiliparse-1.0.9-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (5.5 MB view details)

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

resiliparse-1.0.9-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (5.4 MB view details)

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

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

Uploaded CPython 3.13macOS 12.0+ x86-64

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

Uploaded CPython 3.13macOS 12.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 12.0+ x86-64

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

Uploaded CPython 3.12macOS 12.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

resiliparse-1.0.9-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.9-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (5.4 MB view details)

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

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

Uploaded CPython 3.11macOS 12.0+ x86-64

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

Uploaded CPython 3.11macOS 12.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

resiliparse-1.0.9-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (5.4 MB view details)

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

resiliparse-1.0.9-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

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

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

Uploaded CPython 3.10macOS 12.0+ x86-64

resiliparse-1.0.9-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.9.tar.gz.

File metadata

  • Download URL: resiliparse-1.0.9.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.9.tar.gz
Algorithm Hash digest
SHA256 872e4e37f0dd24b383feb3c112ccf1b8328eb77256279a137080e4a65fc36c20
MD5 75779de6d0dcb49419c851144027ec33
BLAKE2b-256 14d29cddb69be57dbc80380a480998990d873ec198f6bfa3d7db0ae177fee169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0ca4c4921ed0221751036100de22423fffd023286249d6ecb82ca091a70246fd
MD5 8a3828c319fd3cdaae3e8720be6dc4a9
BLAKE2b-256 6431fc238cccfd6f7b2280f98043ccc8564d36258aec3d62a21a3b4a8cad26fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9c840e09a63b1fe5c20f6a2f9c4806c1d6ccafaf7a64d23fd5ff1f8d893b445
MD5 a79b00dfddd327ae47ef745f613f0dbd
BLAKE2b-256 ac638c5d68b5aee8591628286fe29ffdf9ee9ea888e647b7b8dc9a6a7a275446

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0f4f277931fd4c1e56675913ebb342f31cf2880d3f511ae7f2e411f99153ccc4
MD5 d4b9eb38ee640a90df648a516f257cf3
BLAKE2b-256 7c181a6ce98fc9260f368f487e4c539fe459518d46d8e79e70bd169b4d2da73c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp314-cp314t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 b3014125c66c43df177776508bd574453f665f1bb73036a20c8e51386ab97883
MD5 8a9900d92680fabf0df45f6d5f3c3d72
BLAKE2b-256 274bc81678481a737a8ba8e8ee0548a85756591cf465988cc9b8a4ed39d5bdf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp314-cp314t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 54f36d13c912f9d55b13ed243f36fe1d037ff0a867965b56506068133dc78898
MD5 866dfff10172363fa0644818aff5160e
BLAKE2b-256 6dfc347f36045bcfe6d6ee2961b975e0f88fc2cdf2ac94d55518bd40631c02c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 18a41921d57479e6e6280f1fe02d30821787c2472b6254054e8a39fcfd00f328
MD5 1bba821dfd3cac4986156e565d9d9f45
BLAKE2b-256 2e3a78e8d08448c6fb9a755c7c0b4e8d61685c9c42196fb5652a42be78469dcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d33c29283e3acac6d4cc996b39a322ce9dae2f8a64580a63febbc6bac9c6b00
MD5 fc87f57bc955f856da73aa647383393b
BLAKE2b-256 df95c87f6e0676d45e2cd4e917d38fa46e1cc2ca182b8f44b5dd12baf27c4be1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 078b90eab4c0c0e1e246db8a898bba49e4f4964be9be7fd8a2ccd23b542638a1
MD5 16ca00caa85ca9ecf6c151035ec98b27
BLAKE2b-256 04767d2c7e9cf70d0e1d867f080c1c03e0e1ca57b484de7f0c0f8612e86ace04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp314-cp314-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 f6227efd9932685ed740cf0cab99302399e6ea94beab154d6291b074765fefb4
MD5 d7b92ecf7d7dbb3f6864b683a8ddff9c
BLAKE2b-256 ae865a790cace0d85ca44ba54bc0042cee1d43c25e0c0aacdbf31f7a8e409ab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 adb50715c9c4cb61dcc59155fec9dcc5acaff93a3d026033a83ccaf6409baa19
MD5 48f028b046ade3e0bd4c2fa67bae357f
BLAKE2b-256 6ab378c6cb5a8fe5dad4c87ee9b41d3c21d4a126d24225d68021d4c0feeb86b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 65f342ae53073b48f5d086c13935222476ecfdfaef5b74a2b018ddec797b1f24
MD5 3181e2e2deea47fee7d0d9206be9b19e
BLAKE2b-256 8d8e8fd9d4c8dfac8df78045d156e55a5293f5380fdc9f6c4bc458d7643dfa32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a258bd438ad59ef0c4916dc84250f65e5ffb3c8f2b34c2f83994b4a9fd92c96c
MD5 8fe166e92c0bbd8fba448f285fafd132
BLAKE2b-256 d625efbd36b8efb5e973be74d69f10948d8ad69e3bf12738edec4a14950bcd8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 05159f7f96866c9c9ec51e022fa7e75509c2699450cac63b03781c10dd7efa36
MD5 dd90b9e008c496caaa589d4762d676a4
BLAKE2b-256 c82708c2ec4d39a1062f1657301b9d792ef072e2fbeff7e1548c6cd3f71d3dab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 ad7e0b4c8dc59ebf10a15a6875856e79044e85746515a12340b50184ed38d967
MD5 0341cabffc7ed74356e2920772aac371
BLAKE2b-256 4c96d6b10f0f0bbb79c98c7798da0a29105c1f52194dba09f7fc969c7d6635bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 5ca1333c994c3c89f52b1dbf6b4365edda47b9463a9ee30c7bc3a51fdaa2b755
MD5 ea4c155659578d57be91ca6e794cf2cd
BLAKE2b-256 b12aa7bf9e87ca6e07e892f48427b01291012cb9b227be5198f33196a0d98063

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 498e97f0cd1f09c6d8a26119b87f0cf035b8d548eea03fee42ccdf1be3e229b9
MD5 b5ede35f437995a162d325eaba1330a8
BLAKE2b-256 c7597c5ee79cd05d437b569b7c9e1f08c2de45a740745efa463c4efdc09d4585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c717da692cacf2335948dff4f75eeb65bddc37ec25eb235daf36ef463207b6ea
MD5 6fa52513f8d0c62bbeb8b4b031ad0b92
BLAKE2b-256 bd89c6945e951b13cc15369511e4df96e10555af960bdef94bda57af3fc16574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3636ac134164d7b8dda2ad4a974ee7d29051de83244defd82196d75560de8415
MD5 6c5dec8f78c9cc271be4cd1615bdf6b1
BLAKE2b-256 a45dd6cad24baa175b4383076e98bf5cf78c8efcda4185ba97e54862dbe26719

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 5d1234c2fb685360a1d15d525235106d7a9e6e32058d37fdba68e52e8e9c292a
MD5 73aa49bdfe162d1db111eaa1b9e80750
BLAKE2b-256 f3d6a5e4f51c8a3072bc9a3052b999637bd7652b0b7ac52e8bab501d57c84fb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 7ead24a3a078a97dbd0d7a6b23880967fa32ea403f86f748deeaa3b4cfd011d7
MD5 3767d25c69eba79fc4d442f2397acc52
BLAKE2b-256 fe1816f00e25e9e1fa2ca88e0f921a834e7018d699015c6ffd158e472cc630b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 86533a3a839766840e9cacacf503c9d658d3eb28ece92cd7eb01f6c3dd942a3b
MD5 84a66718d5361e274d6faaa02ff0cc38
BLAKE2b-256 10f1ded203e9df3cb7c5f8d344b091d310e16c2ab8d140c205b431a13971c261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9813ad4d84d4e457c59ea0a2047097c998e3be0fa08c051f97301f5b3d2fc3a6
MD5 9c248b2aa4a2437bf4850a7220f4f858
BLAKE2b-256 154cb114c9692e5beec90f29a933fbba920d895ab0f0636f6b2f303777da1447

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cb40f8559a51ca34ca3a3d083c7a5d077f25ef620602368cfc483713d79bade8
MD5 f114fdcaf2498f0331b0b9c8b6a7880e
BLAKE2b-256 aa31ec1ab7ffc25e21da7fa43962195b070873947d27fd7cd47b9ec913653032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 5278b55553f92952aaff001479d39a4b15d3aef0f88574dc305fb880e40550d6
MD5 167e1b0de0d03c8061a8fd2b06e3d74b
BLAKE2b-256 066760491a65dce1e74f1843b3667dcda6a4a21b2197ce809db9cd21448600e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 e06bed0f13762f714e53930138ccc194e2215171f875572f6284413a6fa840ba
MD5 83633fc0e2ba9c69b29cfa26c3459df1
BLAKE2b-256 fc8fb2cbfda3b7321f51ad41eaf91e47f149776660cd025137fa58841abe64ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e5b50f276d64932263356790ce4dd6bf531099861cc134185140018d965fa8d1
MD5 0f531b0cda7ed1f7cb2c033e39a2d774
BLAKE2b-256 3b3154e7063296f6288479e5e71b8f1ae531b97e5892b0518165bf387584723a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a051ed0d94e1a746f0eea2dbea03b622ba2d1c56222c6e8ac5fb00179e00a123
MD5 035de17625381eaec40862dc33c8be0b
BLAKE2b-256 c5df6814be9507d1198aaee9e2a6f5dc92aba72d681932888a3961d793fbe596

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11fa834289c2b5a116dc68380b9cd651816c3a62938e97fa441efe9145131f00
MD5 885eefbee201ab7bcc3e26db86158431
BLAKE2b-256 411d920b3f817431b8c645ec20144c037ba8163cbea55dae21c2bf1d3e47887b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 7f823d2f4ae867d5601f15b3381ad12615367015807cdb1d219939fca3836990
MD5 96f9f34f6bce00bcca27734e9aa27535
BLAKE2b-256 947525107ecc9690971dc995297678edc506201e7b718c760816ade913f6fef2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.9-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 5cd425128944b24c479a22ba9720b0597d706506eedabd2af37c145dfdaf2549
MD5 2afdaa9662763b41e87bb109e08a0ef6
BLAKE2b-256 2153e0953d623d7d6f018beaaebf68dc4fe8686ee1b4ba811218cdcfb17600dd

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