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.4

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.4.tar.gz (95.0 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 12.0+ x86-64

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

Uploaded CPython 3.14tmacOS 12.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 12.0+ x86-64

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

Uploaded CPython 3.14macOS 12.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 12.0+ x86-64

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

Uploaded CPython 3.13macOS 12.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 12.0+ x86-64

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

Uploaded CPython 3.12macOS 12.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 12.0+ x86-64

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

Uploaded CPython 3.11macOS 12.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 12.0+ x86-64

resiliparse-1.0.4-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.4.tar.gz.

File metadata

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

File hashes

Hashes for resiliparse-1.0.4.tar.gz
Algorithm Hash digest
SHA256 92883fa969d0c06d683736384991c2587964447a2bdbd1e413e60fc9e3002b99
MD5 f8e54cee32a6982266b1fd5ad572de76
BLAKE2b-256 a9df952ca8d4c62cf8ea4d2f8588dfc366841ed57b444f510b458fe695612107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 96c9f30c7854a6febb811f1eb3be4211187b0c21d602812e0add0e54c4580639
MD5 607d3eb2cf72483ed0da5e0b6b573609
BLAKE2b-256 36bbe2a81c148063583e6bc599ab0dcaa1221e15d03fb1901a0a7fe778d7289b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b27df49e84503fb223cd445b076602b78d38c21c495800b0b3f4af10f3f49948
MD5 8026b39ea2dabcd68f7917594d0af219
BLAKE2b-256 93ad874f00297d4e6324e3af062c15d8b67dcd21e7703b6717ed151909410b8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0f15e2b0622541b0ec63420ae2c11f8bee465c22d982ee9f7875c398f894e8db
MD5 049c97f50b1f4b48decab58bc97e4f1d
BLAKE2b-256 f51625d74f139cf8a517d8ce2e9f90539e4ea2b7596399ef6bfc92e7ac59f12a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp314-cp314t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 c9574b2c426feecb399cdd4b87ee89803e230f064c6bf97b5ca4329df6400685
MD5 1d7380bf0236247e9223bfbec6b01932
BLAKE2b-256 811161845973781bdc354ea83f337e7cbffe184719fac07fc9f664c2cfd9c1d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp314-cp314t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 9e99dbf88dc93bb5c0bbf0f44241be1798a61814b792fdfeb9ea2b53a6d2c562
MD5 a5357bb1286956060b7fc5510059cee9
BLAKE2b-256 7ab8d1da275e485903f3c3d8b70781c743524713f6630e030ef3d6907b7d782b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f89e78d3aadc7499954fe0c48847ff9dfa5be899718eed66e0df9652626d2dfa
MD5 377dab7c22009b7debe734767859eaf6
BLAKE2b-256 fa5106d1fb94216ce80088fbff32b9862cdfc547c749cce60d162a25fc3c81af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c9f79b1dcc9d7363c3e3ceab37aa231f4458b6fa25339ff30fc855446738eaf
MD5 10350d2dedc1946a275a05a259070697
BLAKE2b-256 d79e1b40c47d627759a770cba426a74ba2140015657ac3fb43db97c127c60213

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 39090d42e0b333862760bc633729b4bfeb7b754c4dfe48c591d4aae84f741584
MD5 40772f5c4c9adf515946fce0851beab7
BLAKE2b-256 f4f1677c734e1d982e528b34ac9e0017a2611b3d559e500c2d9b1856abeebcdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp314-cp314-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 74c4d97d549bea692442991b735f3a732f3ca1914eb50e1ecfa52e9f38cd8e68
MD5 115dac898435d9f7b776f3f4d152a3d2
BLAKE2b-256 258753b1724068002ffdb1f25bbe5ac3635ffc146a2e1bfd191334ab5fc1a286

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 52bbce9b23916e2c964dca4d940373988662319716bce55dbdde01d351c332af
MD5 db0304cc842ae14b56717d8bf71bf931
BLAKE2b-256 be217abdacbddc7672fca18c644de3c1483391388f24e80116cec0a5c61e1cf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e9a2cee286a5cdee0d909c40d8bdd1325eb6ba2c2d83dec17a33bd25bf767ba9
MD5 fd5cac2a2012ad4969152927d629b138
BLAKE2b-256 b414b05b45f396018c6c82a7531f956534bf7e61f8654eff554f58f39ddd8c44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 092571138c84e5c2e9f5b4c1ddad025b6f8be5231113ff0e554882238a961ec5
MD5 7909302f27089baa0dbaed08f9525474
BLAKE2b-256 2f43173f7f481f0a01fd9b8792b8f8053f2fb6343d1bed78ba24b22fae6a11dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 50db538ca37775e6a62cfcd51055f3257ad118ba9b0d1f9cc5f64d39bfea1428
MD5 11deee5cd45bf2fd8f1e32d7677f67a2
BLAKE2b-256 b87bf21f69349e0985619d3728d858fc57669762ad8b6477d6ee88ed26a1ce20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 3bae3d57348208e5142f3b59ee119b1981a9b4ef8a83a88a9082d9ad412dede6
MD5 2505d5653340147e886b4d1d5ea8f9ef
BLAKE2b-256 2976ce2f4a938708502a5e74582fc05b971ed6e7fac1a778d2e8ee65c4cecc52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 3caccbbb09f5b6f33f5c7d7e88fd49a94aee6d4966edbe268fb79ba77e535ecc
MD5 63aa824d45ef0457184911910bfe308c
BLAKE2b-256 1fe6796f27ed1a4a69d9051a024c33ff01463bba2c3d702a8b543460e60db46e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 118c9f459289c253dc4f5b8375a0d9684ecf3b51a42aa246d355d163f0486b28
MD5 b712ae5ac7419fc1ed211410fabfaee8
BLAKE2b-256 796de6615393fa4f6679e81fb4886f8726c2aa986ec5a2d91386f0a5dec34b1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 27f2af78242b369a1f05b6df677822842c09b45487d4e3b89210dd82e8515443
MD5 b5cf53e604fd64526d7703f476551b7f
BLAKE2b-256 365a2ba4e621a8ee6ce1878d19ba1893c5617c9be19caf72b7ce18b59d9987e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9ee7f6e881f3091a60b4b7a2576e845d90c0f80803b7d45f12aaa4fd04cea5e
MD5 788491d193c15f305b7ec92cfcc3fd69
BLAKE2b-256 844da80b256a6173f42ddfe8601df64d6f3fc2b930cd3b9aa6e2cfed88401ada

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 ea25bdcf936d92e82c69b8c37fa9430b5c5035199bb47d5e8e5ae07040711103
MD5 863674771f5eb859e3b5576b981fb835
BLAKE2b-256 c51b17b3dec27c92236c1be99e8bcd79efd02f709d6c42a81d6a8695ff7c2e04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 32552f9b467becdc3181555b7e5c162d30ceedaee6810dc900725a4eef9a889f
MD5 b98fd300702ce84ebee2ee8140ff4f39
BLAKE2b-256 1adc7e4cd105f9949ec0e44639c80d391d575100239a55e804f45a07fca6b0b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0be25b4a95f3b319fe0177cfc1b96d6c8aaba4d7a5bacfceb8605f3325de9525
MD5 dd32ebdfd7d95d7b0775f4960adbc4c4
BLAKE2b-256 b44274e02c98cc6f58b598675e37b14c85668c56c3642c69e0cb09e22e0652cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 372580894942090028e11bc5a4c657344be328b78c524d1f14b1bb67585277a1
MD5 88dceea6e39b9390748b9dc286b123d4
BLAKE2b-256 16a07fdd90e42581fffa3119edc31e81cdbcb013bed357137f865c3d7d445b30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 554e3a83de4301d9d4b6785f39d230d3aa254ce9de32b61f03e6980231e503bf
MD5 c2b287e729c6378352fd2640eaa1d17b
BLAKE2b-256 70f47ac0a0fa38b73410075c7d8d2a3520c075603e6497c802e2b097c1a6186a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 2c7d92356698de3e1b24d238eac532be00dd048847c911fcf08654bae7824479
MD5 d1282560a51b7d8dbacfd53e40150de5
BLAKE2b-256 56fb2847cc6abbbb7fbb4966ed230670fa78f7db7d17522d9128f7706c732753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 e16f1cc3148ca63961fa823ee2737e474afbd7ee9067a1b9ab07fe24b6bfe3b2
MD5 5bf9b893a2655899d8cc124d4df9e859
BLAKE2b-256 3cea192d8050849653e6360e9be090894593bc7710f9ef27ee4e64c9f9edfa2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fdc2f9d0f1dac2723d244c1d32577c5958eefa673a9d8743c339a491cd288435
MD5 1009542c6c1a9ce3a6a08765e91c7e6d
BLAKE2b-256 004cd766d1e913a8f2b6437aa0933e78d768d9344199599c77f4dac178b76f1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1fe69b40d6efdf6ebeebf8354508faa3ef76a11993e64b1ed9c539665a63e989
MD5 62320da0dc1311866aff6ab8e6caa7b0
BLAKE2b-256 4696d1b22937c16a7775e70bfb0cdb98997f3b94cd0ae6f22eae8ff79b1a420a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b5e28e036648ff4af13d0066dff92be8c4f6f68f87211d9963c5e0b2371ac6ec
MD5 ed95374b740bf4581a79679d2d537d50
BLAKE2b-256 8067436199cdd43dd541bb0b7cfdaf7692d495e916498a44a20040931c8236fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 32b9e948498255d28707081ed783a1d8a4043df7e89fe74169bb1fe51c396020
MD5 ba54c3e2f84b8d748929df2404214f3e
BLAKE2b-256 1749df85054c3a8313605c7274ab439ef50373789ed31a34f1e9adda9c5b991c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.4-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 6d8c8ee6d4d52f9632dfcadffff928d47475d140cca677fb3d9b4035df8aa59d
MD5 61d9f34243f3028bd1567f222e3a108e
BLAKE2b-256 c0683f314ad349220d8b7de05e9b1a416af8860bbac58e53869a05b6d09ca233

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