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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 12.0+ x86-64

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

Uploaded CPython 3.14tmacOS 12.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 12.0+ x86-64

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

Uploaded CPython 3.14macOS 12.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 12.0+ x86-64

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

Uploaded CPython 3.13macOS 12.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 12.0+ x86-64

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

Uploaded CPython 3.12macOS 12.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 12.0+ x86-64

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

Uploaded CPython 3.11macOS 12.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 12.0+ x86-64

resiliparse-1.0.8-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.8.tar.gz.

File metadata

  • Download URL: resiliparse-1.0.8.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.8.tar.gz
Algorithm Hash digest
SHA256 7b677bbe6b58ba1ec064211d638f19e0d789f069a11e74570a00dfc50d1ba001
MD5 d7d517316a3a7d54d2c52baf0a3230a3
BLAKE2b-256 4dedc9bf53f1226593c2e3cdca4017d47a608cdfbf9b921d5c08ff0cd610fd0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8779f52d5c27c2302efbd7db900685e0d99c5bedee73191098e88b3a42fd402c
MD5 dc44cb72108bee41544a68f3665212f7
BLAKE2b-256 7e0d6503a5e86c356cdd53cffcfd5fb081b18355eb669ba72f95c7d0c1f699c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b6385b607459ef78194645a840f49199f2f45d8616156944f8afcd52a7e2ed23
MD5 a7aac91a6d70e68282d78cd9bd4cfdcf
BLAKE2b-256 79cbce03cdc08badf483fcf30a59b85ff5c9d133551e12dca3fcee50ef5546e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 192fc4fb311bc15bd9c8b58a3f74db59e6f46a59403f072e33f5cfe1334fa881
MD5 8155132a34808cec50822d3920f22c24
BLAKE2b-256 ce24c6a9fca6efa3b82f9a231dac17ff44079d866fcf847d0f7ba080eb5b927e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp314-cp314t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 ef8807af3bff4e4e72eb102a30682d55b3336274ae4256fa74c05ebe8c4d9261
MD5 57307856f71791133aed34c387763639
BLAKE2b-256 233b4b857ebd0d7be5e0f800672bfc6d45ae3d242417d8a895aa0357e299e34f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp314-cp314t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 2eeada9d8b23b12298653f2ee242225be00117c8cd564c72858c6a449310dbd0
MD5 d6df15887422f624b8a68eb847445aa0
BLAKE2b-256 0e3cb1bc05204026ea9b3ec589ae5e4c4f18e4ebaf5c1a3d7e86486b39700597

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 df7508ab512da38dfc8bb57f774a3415048cfd2141a2ed366ff2fd7bcb798a60
MD5 d1e5b3b4234be535e366501693a185c8
BLAKE2b-256 5af95c45dd7929f296cd7bcd0e07bb66c64109274d032b06612bcd41d80b0605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ec5091f86672429c7defb5e9c87813642488a7f68b29c70536646260d2f7694
MD5 53df18bcab3a63f4cf39d715356c2efd
BLAKE2b-256 c782bc818d46f58148c76f57fb0209b921da0b444a164f4318bdec32ccb77839

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de95771fff4e702e19aca1118b0b65f6f64522539b8d46d0c8d99344d4cb3573
MD5 00aa4bace995abb1f63f07531566bd3c
BLAKE2b-256 f391f3e54365f8f9fa5eb3350afd6ec74445c28422b84a16ecde48aba3a962bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp314-cp314-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 e8859e5c3842a8ab172b88c58baa9ff7d8d3fbf13e1fa67b39d51258ef44908a
MD5 89ec1f5d76d8671ff05e67da05d56d73
BLAKE2b-256 18810ed97e379079c04f266fac3188c77af0ebb41ce8e794be68117675d2aa29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 4fd5678ff6c2f3b707c61f8bda8bb4c28a8a31bce358ae3ad9d678e75b56fca1
MD5 4ca090826059bc0e7d54e4200441b567
BLAKE2b-256 92c3849cdde8166c2758a80a6be745f8d36b86fe4265b57ab39437e0772e9826

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4cd59eee8eeced56e325c8aa342171673f3789416a34ad4c98be3a98ccd930dc
MD5 1113aff492c8ef48708b072bb9294c93
BLAKE2b-256 c01dd12e1c42d91fbf4af72f484468ecfd244dc27a792c2f4b336e7750114f96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b8e7cb12e907faf8079017d76743986c55e701bf11baee3aa8961d72b537ea8
MD5 cf2bfb2c80f983a08beb38a2fffa83b0
BLAKE2b-256 ee5be711eb3e68424bfb06ba9ff1cfc0fae7770659ab379435ea78144344267f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0779e11e8434278f1e26e438b4b93b9f46512128d0d6be59e2ab1244317d834e
MD5 556d15a54d604713f412c252b81bcbe8
BLAKE2b-256 41396e3d8d823226e1f5df9e20fdae9e330434c61c5cb58139b9478977a88777

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 72c2c41e82b88d6bb4efe3bcd10108b78b00a4bcd1852d9acfbe77a41ea96b16
MD5 64dd3272534ca87702418c5837580680
BLAKE2b-256 67f307bd7a5582e791bd03808fce4638ccaef41587309f632db20d306fd519b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 2f60f092c048c70f5a5e17413a00bb8898e37f9005ecabdd72b9a3ae8495c5c6
MD5 117ddbdf5310aa06bb7dad64ebe616e8
BLAKE2b-256 907a1d1f39f8f3bc70786d44463990ba15ad3fa929c709adc374bdd14c16489c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 954c2ac4cddcfa7c389f95fb1075f021d5db710c91ee8fa717d9528343ff98d4
MD5 70f691a789e1ba49ffe294572abd74ad
BLAKE2b-256 061c75c80dd953bbc677fe6327a6ce697aa8432cca04a75a02cf66fac0511f49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 84af5145440cac15ea2bd8b8b53b624341bedcef0a5f31ee819dd9f997bfd687
MD5 64b3ff2862e23778c4174440a6d8c4b9
BLAKE2b-256 e62cb626e94748f792e3c63c596eb1181b38cba2fc531acfff45eedd882289e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e13d5ee0a2e48b856f13ece607a0d6d8e632c59949a96aa3efb3cbe026c17981
MD5 5706b13f4d89c684ae3ed816dc319493
BLAKE2b-256 6e4bd1d7ed6486e952857bd8d420c01db21f5541bd0112318914558bd7a0db2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 e4adca82c98f1490495af12c55e11e6df87325048caf411a9fd9c816ba0bcbff
MD5 f0e8c9de55e314dbdf9ff35065757582
BLAKE2b-256 69789abe32513d3bce85a2ac11a3ad9d4a50898e6f89334240caf1ef28c60d07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 f7af720b463d258473f1e8b91e194843e0e8c131d3dabd8df4f038992d77a2d0
MD5 74145093d1a72db5ffd57b81df4785a9
BLAKE2b-256 1a04640f3fb1114c99cff48da354d014dc28545935ceaedb4f2be89527d3a295

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8ee8e6d9bdba2539471767f23ec6c62f3d50b469098ca0cf4d9b2741cc28aae3
MD5 8f9fa1f556df373c461c1355375ea177
BLAKE2b-256 aca7a9a51580b72548e0407031edf591d555002815e4f0cc49b79773d43c5f43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f2e01c592052c7e442780456ca98500ff79eb4dae121858396fa1b99dee24986
MD5 2f97629d2155966a757867c7e91ae9b0
BLAKE2b-256 99fb2f5bd764b6aab43c8de5ce5e7eb6f73fbd49c11f8d7a027a0dccc845a106

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d9533c627192c4655ba2ca8976e2ca8476f3acbb6eafe51ac658e1ae39b304a9
MD5 bc22d163c5c7dcbfe8a493d15f39582e
BLAKE2b-256 7730684761a2daaa5c8522e6dbc2efe3566f7328c57450b214dce7749d844c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 db0dcca10a7aec15af900d33c1c4c08e9f6c8a3e6777a81cbd2a60619883db67
MD5 0afc97f993e6937e07522f900a665452
BLAKE2b-256 7673a24dc070041cf7cfbb7acd1eda8d3da691f24fa74e0bbe8eb248f8cb465a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 233128f94c53574c81fe452b59b470842d3cb813541217735a7f113146e2da88
MD5 f353c1d2c2a7278d037066cd13968fba
BLAKE2b-256 fb785ec90fcb63c7b458c935a5308bf77260248b79235f9064debffc82f93d16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5cdca4b5c807838a87368152369e4ef3e544603ab8d26d4969ab91b11b1711ce
MD5 5db988eac01baf841558e2f9eeedfdd6
BLAKE2b-256 17f2931078f0f9648eab9c1687b113ccadf0a59818f384d6ce1c9dc928fd64a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3608431d40377c91450da30910f227b77af72ae7015ae01915c5bc7daa7cec2f
MD5 554a3d378117c934628c908634fbe25d
BLAKE2b-256 87c691f7dbbe05c89dd1c4d57a9c7b55e6a2cc901cb1c89384f7faea30e38d4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f4498b0b31dc6d499f54168b1c2bd37952e813aed0a50de2975e96ebfd1449d0
MD5 97250847c6d7e0f5dbdc19b7285e019a
BLAKE2b-256 d860c867816b7d0636b2c0f22c5c08063e0e5a91cd34079b9f2f8b4b748614f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 0a3b814aa02032f1013f0f3a19e7081e6c867b98e18c8066c8dffc92bd11381c
MD5 bfcc1840bb229a7c81014e722e3be46a
BLAKE2b-256 052f4122195a7274e4b1063484b1f681fb33c1dcad900aced6a25b57afa93785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resiliparse-1.0.8-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 1848338b2a304ba2db38eebb028ed36758ea127f5db63bcdd2b69fd7fdb57e4f
MD5 7d78eacead93fea740777224c8088ffb
BLAKE2b-256 10d34908f3320655879c55a3036935a2d7377d0339e0953daa7309d7b18c6a61

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