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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 12.0+ x86-64

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

Uploaded CPython 3.14tmacOS 12.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 12.0+ x86-64

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

Uploaded CPython 3.14macOS 12.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 12.0+ x86-64

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

Uploaded CPython 3.13macOS 12.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 12.0+ x86-64

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

Uploaded CPython 3.12macOS 12.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 12.0+ x86-64

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

Uploaded CPython 3.11macOS 12.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 12.0+ x86-64

resiliparse-1.0.2-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.2.tar.gz.

File metadata

  • Download URL: resiliparse-1.0.2.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.2.tar.gz
Algorithm Hash digest
SHA256 760c874418f79abe7432e9f75fc67205c519efb116524274d4874e39495a2ff0
MD5 3a1b4887d2f2d76e0507aec2762056c3
BLAKE2b-256 eb565bcdc148189537cc457bc895167d6401c52539963d152acfa7d3ce828ee9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1bc7e7468a726468350039859d79cd57bc9d27da070c6f7b5d6cbc30d32c7910
MD5 aaaf9f9519a4e0cbdf008ce93a129ac9
BLAKE2b-256 f352cd35350b8642a3fb7d8cb673a50dc3773f958e7cf210c0b8fc17601b5c8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50fa339bc0cbc1f3d27dd80c767fc745d28ac6ea6044ea1662f01a3d42dbe5d9
MD5 5b1edc46794b652a0043f675048a6d69
BLAKE2b-256 f71d5a0cf907956a42cba4d55c6b8cb80941084bcc1a771f774a5ce1ca45aff0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3ceb065c621805e72800a1c6102c68d934909aee32a492745187922d40bf2234
MD5 ab1765d2c197c2a71e3f5d572c55c129
BLAKE2b-256 0192103a617428cd886502fae0885ee99d7756f9fb6384da609e5c97605dbd8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp314-cp314t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 49dc206a363834f14a6d59189948ef15f54615b70101ebfc031d12198bee2b5c
MD5 3433f2c24f73be0a5e0ddd4554cff5b5
BLAKE2b-256 f5aeebc3ac1b27803bec9577f1031f01c489187795fc353321cb686d8c0e8ddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp314-cp314t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 50806aa0ca2911bcb5bd9512fa1deb2cb8233b4555604e8ae609e9498b8ac079
MD5 f73b3ed5791516cfefc3e8b878903f55
BLAKE2b-256 a35fb8b0d9d72a98b03fb9769725b7ea4a113aef835c73fd761c276b37e261e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4e64c5a10a0d90a41b98c660186d93bebdce23c6e55ac2c78df21b0f3c313b4b
MD5 96d2aebbb1d24873d989d6cf75c7f5e4
BLAKE2b-256 c53631d1b3d3503f944c08a52de0d83550c4cf448398dbfea5408d1f24d84a46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4798f2860bed0dd8578952dfddd25eb91b70288bb551bbdcc71a20abd83b0434
MD5 082107b79520f236386e1677f7b57dc1
BLAKE2b-256 181eb4286c6ded04d459b14b2642dabc376b37a30ccc16836948ab2254cf04c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e95c6e015e95d774934e330b86e914f12ebdb2257f713776a7453b21dde24db4
MD5 d121a4250341f4a446e6f940be888bca
BLAKE2b-256 e603314256ee1253d05266bfd95e1c3548d12e09e3f2383c38e76a2481913dd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp314-cp314-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 555236dbafccc4f222b7f4274e5718fb435ece6111b2daa6ccc74677e5be5a22
MD5 8eb6882209267137c449a30783869a9e
BLAKE2b-256 01f044883f88ed0c8bfe432fb3cb315102f5b30892a735a8b21736e506a315c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 a8fb1de9b66ef7961638cbb3a811605ff74c5d27b0b0eb3c53bbda61218777f3
MD5 43945fe07ebc9c106d652556d72808cf
BLAKE2b-256 d36dbcd4757287313a037382e2833d3cdaf73f7f2e75e8575e890fe4311daa84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fc2eb376f71452c1a75c3c3845d038a1708a7a9cdf86a4938c96af753e12a8a8
MD5 6c3fe3ab090235718576f181d7568331
BLAKE2b-256 896e41d13c035e5bf4e16fd08cbcd92462b43d3e9c72afbade1579ca29dbb8f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba041521fe35e4a644dfbe861790101593244a8eab7330443757290628955957
MD5 a3da1fe491ae870c1b3115d4561d6d51
BLAKE2b-256 986d0f6102097621ee721afabbb97881d8c94dfafb4a7fa43744791848970807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dca65df193ecc2a1238cd4c2c0f20f3211a274665df8066a7b4dd5353d882c2d
MD5 87e5ff499836dbeb7734298142fd2db7
BLAKE2b-256 95edb062ff289de9b58945d449725e5211a96d9d0274288df0c3c57d913ee8fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 6d7cc03369a693633a9b2be97ae1c799530b605bfd1704e5c1fc2d78389dd6ca
MD5 827c6839c6949b3d04a7cae01b1765b9
BLAKE2b-256 dee6580e5e59c6683bee4da1d2538489883fd8083105c771e51f6f547bbbd68a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 810320e6ced43d93e4976f425da543ff0a9beb516b3e64308fc089d7b5b8df9f
MD5 6aea1797d2c2248991d246d47fb8a867
BLAKE2b-256 50afbde1bbbb9a0132a682efaa5e208956a449e0a885f4b55becc03452105ad5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6ecaa82e3e5e58dc5f20bb6c21d411a03312969e1789aa133a95555de0454609
MD5 6a2dd347b5a3b6ae327fc783ae2b7c68
BLAKE2b-256 5f4c2a8b111d3dd587f8faa5d149f14960a8b8844fe321500915713b151c81f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a555e74bbbce3fbc5959e12b47930d2c3e698d7ba3b6a2e0f6770da789e2f68
MD5 c53823e7d9446518d392210e262c7635
BLAKE2b-256 64b95d058843b9b7a41086ac13a27dd17c3c422ce1814ada6b55dcf906ef3bf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f0f55a8221a61df5c71417d536acde2e3ed51dc9684f87b9a6cd5e2405307e5
MD5 4047c80cb9ef88c85d776f50ccfabafe
BLAKE2b-256 5a7c166e85b8b0a71048e4171d100d79f24c1438b619eb44baab2a15ca09b283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 68dd1d9e0c5278321994d503dcc9d3da059fe83cfe5aa5d7d155a8e136e797dc
MD5 49d827bf238ca5b5a9cab57f13d882e3
BLAKE2b-256 0bc5d72ffb50f02ee9dc5ebdffe61b98f9560508a571e84595e12587b140a207

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 192159fa0a8d5ce407857341b138ccc54afdeee1bb18f3d304bf1d5549265202
MD5 ba5d8dcb695e053a36eb2795a7c3fbc1
BLAKE2b-256 42e4a83d95aaaf477d04c7b7faf3b4d22ffaeb8449b1a3505e22256642a12eec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6141236f34797c0a29f8678cca41c621e683a1381e8041768d0f94747f295cf5
MD5 6bf7b96265bfaaeeb373c44a71eff6cd
BLAKE2b-256 0e7b47793fd043251475b0fba98821155ee55395ab6f2af0a274e2358a9dc010

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 631683510550108643cd68a1bf99352270687b7b0b97aceb68a3192f15dc0ba3
MD5 47bb2717973e1cf3fd115e3e137c6767
BLAKE2b-256 487ef08b7d05b47b51c908524904c338cd9a35f211604d27dbc8765ffbfb0c0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7e93c2e7d8e28567af7d45aeaf33bbdd197b18930f34bc92ea15c06725d5f5f1
MD5 000169eae17d32ffa527be66c7c28dd1
BLAKE2b-256 bcb3249be815c5cdae87b6b8909cf8fc2fe922ecd855ff19ee1824e38f862a1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 7a1df4a40e5478a191603282ad439fcd14ad81b15565936d60e39f6bee3067c3
MD5 04f3ca9e96cd29695f36106942f331b5
BLAKE2b-256 c171da4f8c2ec6924e4c0f0111e25a10980abf16e3dacfe54852560800ffc140

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 f4db8692fa8619485a10b4fcbc3d8d0d85c82c87feea423a8dc1c61e95f05c24
MD5 8addcbd34e29219920aa743f8501e4e1
BLAKE2b-256 e25ee5098c7749a96d5142c5c530d977540e7f1834be35775dd561cd7bd81386

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 482b7ddf75084c686de8cd143a1e549a7b4d6004dd05c0148a51db8fe01a99ff
MD5 bf92645df4cec8c322b81e8e743e7d1f
BLAKE2b-256 4b69184fd7723e5064676d487d0999f3a751dbd948a334ee765259022100eb59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c371d38d5f60eed7a412fed4333babc2c5113c5ec58ba7be054d2808613477c8
MD5 d852b490d8b067cd9c99daae49e7be22
BLAKE2b-256 88b65a6797d225cc715c53224b89757c758e539c7c7de240223b320c59b6f437

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e9c437fe49d350cacce7cd17a0a04eeab0616dd070fe6d5c478858dd4b5cf2b8
MD5 cc301db803734d77afa60d3a5ec1c652
BLAKE2b-256 c16468593d8caf8ba146c05ef4e7b36660e9c8ac6b96d32f86d0800f2f67f7ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 8ac23d66d902393648a45d41a774c3c5712027c75e2b701e41803a59cb357107
MD5 f45359cbda1d582367b19429db717f81
BLAKE2b-256 2fc0f065f48ab84efde693e498a672b7d486261b26623cd1a2664f0338ddd96a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.2-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 154666e46810a82afd37e23fcca092cc34d9560d6474aa4819cd94244299362e
MD5 d20d4649454e2bfce848c9c11a38991e
BLAKE2b-256 69eccbcd91d69f642a4d0551ba5b026d1cda568d0d10d8444a211b56e0eeef17

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