Skip to main content

PCRE2.py: Python bindings for the PCRE2 regular expression library

This project contains Python bindings for PCRE2. PCRE2 is the revised API for the Perl-compatible regular expressions (PCRE) library created by Philip Hazel. For original source code, see the official PCRE2 repository.

Installation

From PyPI:

pip install pcre2

If a wheel is not available for your platform, the module will be built from source. Building requires:

  • cmake
  • C compiler toolchain, such as gcc and make
  • libtool
  • Python headers

Usage

This library aims to be compatible with Python's built-in re module. In many cases, this means that pcre2 can drop-in replace re to gain some performance (see benchmarks below). However, PCRE2 and Python implement different regex specifications, so patterns and behavior will not always be translatable (e.g., the syntax for group replacement differs).

Regular expressions are compiled with pcre2.compile() which accepts both unicode strings and bytes-like objects. This returns a Pattern object. Expressions can be compiled with a number of options (combined with the bitwise-or operator) and can be JIT compiled,

>>> import pcre2
>>> expr = r'(?<head>\w+)\s+(?<tail>\w+)'
>>> patn = pcre2.compile(expr, flags=pcre2.I, jit=True)
>>> # Patterns can also be JIT compiled after initialization.
>>> patn.jit_compile()

Inspection of Pattern objects is done as follows,

>>> patn.jit
True
>>> patn.groupindex
{'head': 1, 'tail': 2}
>>> patn.flags
<CompileOption.IGNORECASE: 8>

Once compiled, Pattern objects can be used to match against strings. Matching return a Match object, which has several functions to view results,

>>> subj = 'foo bar buzz bazz'
>>> match = patn.match(subj)
>>> match[0]
'foo bar'
>>> match.span()
(0, 7)

Substitution is also supported, both from Pattern and Match objects,

>>> repl = '$2 $1'
>>> patn.sub(repl, subj) # Global substitutions by default.
'bar foo bazz buzz'
>>> patn.sub(repl, subj, count=1)
'bar foo buzz bazz'
>>> match.expand(repl)
'bar foo'

Additionally, Pattern objects support scanning over subjects for all non-overlapping matches,

>>> for match in patn.finditer(subj):
...     print(match.group('head'))
...
foo
buzz

Callout functions may be provided and will be called during matching whenever a (?C<arg>) is encountered. Callouts can control whether a match continues without impact, fails and begins looking for the next match, or aborts the matching job entirely. Functions are expected to take a CalloutBlock and return a CalloutReturn, e.g.,

>>> def callout(callout_block: CalloutBlock):
...     print(callout_block.value + callout_block[0])
...     return CalloutReturn.PASS
...
>>> pcre2.search(r"\w+(?C'temp: ')(*FAIL)", "abc", flags=pcre2.O0, callout=callout)
temp: abc
temp: ab
temp: a
temp: bc
temp: b
temp: c

For a more in depth discussion on PCRE2 callouts - and on this particular use of callouts - read this post from Rex Egg.

Performance

PCRE2 provides a fast regular expression library, particularly with JIT compilation enabled. Below are the regex-redux benchmark results included in this repository,

Script Number of runs Total time Real time User time System time
baseline.py 10 3.000 0.300 0.020 0.110
re_vanilla.py 10 49.650 4.965 10.582 0.571
pcre2_vanilla.py 10 19.770 1.977 3.375 0.481
pcre2_optimized.py 10 14.960 1.496 3.546 0.590
cffi_optimized.py 10 13.350 1.335 3.930 0.381

Script descriptions are as follows,

Script Description
baseline.py Reads input file and outputs stored expected output
re_vanilla.py Pure Python version
re_vanilla.py Same as re_vanilla.py, with pcre2 drop-in replacing re
pcre2_module.py More optimized implementation using pcre2
cffi_optimized.py Manually written Python ctypes bindings for shared PCRE2 C library

Tests were performed on an M2 Macbook Air. Note that to run benchmarks locally, Git LFS must be installed to download the input dataset. Additionally, a Python virtual environment must be created, and the package built with make init and make build respectively. For more information on this benchmark, see The Computer Language Benchmarks Game. See source code of benchmark scripts for details and original sources.

Release files for pcre2 0.7.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pcre2 0.7.1
File Size Uploaded
pcre2-0.7.1.tar.gz 4.8 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for pcre2 0.7.1
File
pcre2-0.7.1-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
pcre2-0.7.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
pcre2-0.7.1-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
pcre2-0.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
pcre2-0.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pcre2-0.7.1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
pcre2-0.7.1-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
pcre2-0.7.1-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
pcre2-0.7.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
pcre2-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
pcre2-0.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
pcre2-0.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pcre2-0.7.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
pcre2-0.7.1-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
pcre2-0.7.1-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
pcre2-0.7.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pcre2-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
pcre2-0.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
pcre2-0.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pcre2-0.7.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
pcre2-0.7.1-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
pcre2-0.7.1-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
pcre2-0.7.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pcre2-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
pcre2-0.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
pcre2-0.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pcre2-0.7.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
pcre2-0.7.1-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
pcre2-0.7.1-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
pcre2-0.7.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pcre2-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
pcre2-0.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
pcre2-0.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pcre2-0.7.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
pcre2-0.7.1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
pcre2-0.7.1-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
pcre2-0.7.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
pcre2-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
pcre2-0.7.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
pcre2-0.7.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pcre2-0.7.1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
pcre2-0.7.1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
pcre2-0.7.1-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
pcre2-0.7.1-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
pcre2-0.7.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
pcre2-0.7.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pcre2-0.7.1-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
pcre2-0.7.1-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details

Total release size: 369.2 MB

Release files / pcre2-0.7.1.tar.gz

Download URL pcre2-0.7.1.tar.gz
Size 4.8 MB
Tags Source
SHA-256 checksum
How to use checksums
69ced4288892e2571dd792e7bfb12371bb059f226204bf03300664177c508b64
BLAKE2b-256 checksum
How to use checksums
c941ba46e9906b7f1b7bfb7009e7997d1c32909bd48444945bc436b82b5949af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp314-cp314-win_arm64.whl

Download URL pcre2-0.7.1-cp314-cp314-win_arm64.whl
Size 7.5 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
c3a023279dad6fdfecb873bd3085f0e5ddcc77506cb594edf025bc1d419f1bca
BLAKE2b-256 checksum
How to use checksums
47baaf7f6bc5fd776442f8c034eede3cff6f30906529c3dcdd118764eb5cf02c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp314-cp314-win_amd64.whl

Download URL pcre2-0.7.1-cp314-cp314-win_amd64.whl
Size 7.5 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
c370e19593d06792828b29591c610e20fd9a20e2aac682689e2492b852e77e1e
BLAKE2b-256 checksum
How to use checksums
fb8734f607de3897d7da14af8cd902e1610ab8e6bad705b9dfeaa22b12d5e6ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL pcre2-0.7.1-cp314-cp314-musllinux_1_2_x86_64.whl
Size 7.7 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a862ed0203d25b129a3ceddc98986a93fe51fc62655814d2d7854765a287b560
BLAKE2b-256 checksum
How to use checksums
2bc72d84a81a8220accc5d71b0f4207a9f290fb2a2872f36c33210e35d67caf6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pcre2-0.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 7.7 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
bfaeb6e4a72e3b9054f53bacaa9fcf7510b3a840d0a8e938a20a321e639f8b30
BLAKE2b-256 checksum
How to use checksums
2a2e6c9ae222e36a49063d846cf78551e05e3657f28e750caa2b015544f8bee8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pcre2-0.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 7.6 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
79ec4d2440d2511e701dbd2f9f8c89b84c61abd2ed16fe115aaf144ddea87929
BLAKE2b-256 checksum
How to use checksums
fd242aa9c9fff47176c9804f211f8606908983b710592307f3355fa5a0c50008
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp314-cp314-macosx_11_0_arm64.whl

Download URL pcre2-0.7.1-cp314-cp314-macosx_11_0_arm64.whl
Size 7.6 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
39b43d39ca7017d049b2685141aa184345ff6a117fbe8e15f54dcd891f33f408
BLAKE2b-256 checksum
How to use checksums
a97e3997ae2312865fd8f902d0d7246e46ed0f4a3d7cfaba88fbac4e9e43d0f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp314-cp314-macosx_10_15_x86_64.whl

Download URL pcre2-0.7.1-cp314-cp314-macosx_10_15_x86_64.whl
Size 7.6 MB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
de092fa33c8aeafa53670e9654abbc8d256bc86cb9ff7a1a2d54c17e9afb0a16
BLAKE2b-256 checksum
How to use checksums
c70e8457c28510b0c2c611af5cdcf0eae10a9ef5fe8532958ff164d916ea7135
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp313-cp313-win_arm64.whl

Download URL pcre2-0.7.1-cp313-cp313-win_arm64.whl
Size 7.4 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
8956c8e5431b0c69ec9d311ba41b0c3ed6b3dce176dc5a1af60c8d3ef0cf7bd7
BLAKE2b-256 checksum
How to use checksums
900a17cab9c9a2dc18522b6a9cc7b67d461cfd9ec3812b41e0332b3a69313796
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp313-cp313-win_amd64.whl

Download URL pcre2-0.7.1-cp313-cp313-win_amd64.whl
Size 7.5 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
f96c3f337acb7f26f480b71f2fec6a73aa9038efec115e3b7b047d3e17e3ff99
BLAKE2b-256 checksum
How to use checksums
3dcb0b118141d7e2f73d8f35dce17bcc3ede392b13b90c6d3b8e08555994fc37
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL pcre2-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl
Size 7.7 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
253cbdcf5112b4174e6a1a79c9b48f428bc7c6c9ec661470fb8f93935df6b8b7
BLAKE2b-256 checksum
How to use checksums
1fb4a6bdabf4ac0af82b732ed8dc522053908618dca67757945573ad09c7ea19
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pcre2-0.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 7.7 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
141a89a4842e64c1a387cea972ddd47618e8768b8f1a62ae0023e8dae5670ef4
BLAKE2b-256 checksum
How to use checksums
3a0655397d7f78dcd46163fea28ffdcaaac834a2bae57b9a3a27e92457dd71a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pcre2-0.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 7.6 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
6c2df12aa38c8b7c3c161c7ac35bd98c5e8261e26299d4326c2f3289309e803b
BLAKE2b-256 checksum
How to use checksums
ad2f0db549257f29970e889d3ad989014c2380b0a08ba1ded07c298f47b16231
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp313-cp313-macosx_11_0_arm64.whl

Download URL pcre2-0.7.1-cp313-cp313-macosx_11_0_arm64.whl
Size 7.6 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
583b2c6adcf5e54a8dc42e19cfcf9932fe8e25e539a29d99d5ede494ad3b41f1
BLAKE2b-256 checksum
How to use checksums
5ac8e1bd78c2be546620e23845f4b1d242e8c923fbeb9a58db5cdc59e9e196cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp313-cp313-macosx_10_13_x86_64.whl

Download URL pcre2-0.7.1-cp313-cp313-macosx_10_13_x86_64.whl
Size 7.6 MB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
e2d947aabc4c93034f2bad824719dc830fe194e0a848593091b1f43d58976ba7
BLAKE2b-256 checksum
How to use checksums
86aca32065723650c37e3f11ea8d5e7b3cb256f4593328a9ea0a2d3ec848153d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp312-cp312-win_arm64.whl

Download URL pcre2-0.7.1-cp312-cp312-win_arm64.whl
Size 7.4 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
9b9b2ad7b941992d5769428624878e5f11643323a2961386789db5bf89da74c7
BLAKE2b-256 checksum
How to use checksums
c7f2e719b749d0dad98f8627d9acf43af7d89c9132375a01d22d7569aaf0ce7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp312-cp312-win_amd64.whl

Download URL pcre2-0.7.1-cp312-cp312-win_amd64.whl
Size 7.5 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
8e385c9957bdc5da7bba68204f2c768fa1911bcf373b3f1fe62c9fabc9072926
BLAKE2b-256 checksum
How to use checksums
949f5696ad37282abc680d30a44babd8718b29e6219984cb599623ca48894b83
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL pcre2-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl
Size 7.7 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1f326b06748dd8f06c5cb15047613f230401c4c36687d91bcff4bfffc287fa86
BLAKE2b-256 checksum
How to use checksums
7bcddb6c72613b266c7a0cce41fd48d6b4a4832213e7d86e38552f6c39101b0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pcre2-0.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 7.7 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
adcb81cf438e9ee73ce46ccd3cd976ce500ffd8fe49d29c704fabbca2628cdbe
BLAKE2b-256 checksum
How to use checksums
550db342ddd0edd6660c07bbb37eedb3c799b1f704fdc108552e4e4d9875fd1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pcre2-0.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 7.6 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e8a732f9398c84d0e07193883623635f4cfb4132533867844873455841920943
BLAKE2b-256 checksum
How to use checksums
bece1f3886aff8074522a58beaa940c3abbbd01dd0dd3dc3e2a62986b5acf319
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL pcre2-0.7.1-cp312-cp312-macosx_11_0_arm64.whl
Size 7.6 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
22f2119d5af908be1450bb2daacd2eada6abfba297edf806975d5d8b836c8d6d
BLAKE2b-256 checksum
How to use checksums
9758244bd0dda6e3a6ddd163084cfa3ea9cb21ccb3ca11d02a70027ccf3b7204
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp312-cp312-macosx_10_13_x86_64.whl

Download URL pcre2-0.7.1-cp312-cp312-macosx_10_13_x86_64.whl
Size 7.6 MB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
c679a3bcc671c7795676d8bb11c56423622d17cf6a302fe31d161854e388a1ac
BLAKE2b-256 checksum
How to use checksums
050320ff673705be19500883c4b275feabc852ab5c49c120f5713bf943ebe9f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp311-cp311-win_arm64.whl

Download URL pcre2-0.7.1-cp311-cp311-win_arm64.whl
Size 7.4 MB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
abf5d5adce9c91db953b09f90d384df6cded1d3109f1a53905c6cda7138eafb4
BLAKE2b-256 checksum
How to use checksums
cc56ac5c3fc35b6957decd278095e71f2199df32ee4f83716a216a28d2c3878d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp311-cp311-win_amd64.whl

Download URL pcre2-0.7.1-cp311-cp311-win_amd64.whl
Size 7.5 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
82d1c72811757c7a6db0387e44e13d31a7f61b5442456cd2e3a6e0a244a36d75
BLAKE2b-256 checksum
How to use checksums
4f7198c43d827a86205debd53e2447f27f22726056899d920b97f4b5b22376f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL pcre2-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl
Size 7.7 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3c5c1e83ca9b4bb913a7cc5d08787414b753d3f0cf64d16530f34728f4a3a56d
BLAKE2b-256 checksum
How to use checksums
2e55f7951d519ba23d7e902f3c3e4c1e31c00ab1bffde195da2b96e263aecb8e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pcre2-0.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 7.7 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1fed1058da146aaa00d2feb27cbff853d6c6e909456f3ca2e4f8b9ca5ab8aa64
BLAKE2b-256 checksum
How to use checksums
8c7a560211df86adffb9dd11d505240e737358f70524086ab02b20ff1caa628c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pcre2-0.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 7.6 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
6da57b7510fd3f0f4758b0788dc3188eb50db963a81a9451cad33db4f93de1ab
BLAKE2b-256 checksum
How to use checksums
6d6e50f4f5e909cb5a78f074a17e141cf5058ae8b872d59a603b9865719816de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL pcre2-0.7.1-cp311-cp311-macosx_11_0_arm64.whl
Size 7.6 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1c91ab57cfe6e2f2f9afbb7f995b8f63c1317019481953bd7dfb33f2aec6b2ab
BLAKE2b-256 checksum
How to use checksums
ddccbb82131a41971e30e72030ec0dfb3b1f58f8b4defb920964d474c998af92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp311-cp311-macosx_10_9_x86_64.whl

Download URL pcre2-0.7.1-cp311-cp311-macosx_10_9_x86_64.whl
Size 7.6 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
844c7a499f64714d732468904e12c5d71ba4432b586bdb70a73a72bfc5b1fe7f
BLAKE2b-256 checksum
How to use checksums
e0286a61ffff08fc4cb557f306a5965ff6e74d96b70ace5b18281e1ea849ed28
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp310-cp310-win_arm64.whl

Download URL pcre2-0.7.1-cp310-cp310-win_arm64.whl
Size 7.4 MB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
60e1737a8b9932a366005f1f44b8f27abc80d8948df720fd75c83b86d7935581
BLAKE2b-256 checksum
How to use checksums
8c2092accd3608f0af26cea5fcc1923084117fc6828d9868189436817dcf2336
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp310-cp310-win_amd64.whl

Download URL pcre2-0.7.1-cp310-cp310-win_amd64.whl
Size 7.5 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
8788f115871cd803b15b84f2e9852b4b6a598b13d99a20126267c4b2c294946f
BLAKE2b-256 checksum
How to use checksums
3551ee15b7189660bac6da04293bea8aa56237d1091e7705712ed5c6b31bc402
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL pcre2-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl
Size 7.7 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d4b783530d6309c8ec10939347828195990bb2c6599ca8bec3bbb86cfccc3b39
BLAKE2b-256 checksum
How to use checksums
560159c444aef0cb0e8a074861f28b7706dcbcf771d7aa356d087e4732cfe8ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pcre2-0.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 7.7 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
863b12cf0d708d6686abc03d7d1bdae2985e8709ad61d461341c0b11566befe2
BLAKE2b-256 checksum
How to use checksums
f714596af84533154b4f509257cfc95588c06d852685ea18751bc15e860e76ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pcre2-0.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 7.6 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
ec5ac1ee5ea78903a1cb9504371a33e8706f80a700e88ddd8491f46664bfedef
BLAKE2b-256 checksum
How to use checksums
2fec35bb3ada9eefcd9afe1a1c2693feb52e2c53d7ab98d0973b90cf06bbcdc1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL pcre2-0.7.1-cp310-cp310-macosx_11_0_arm64.whl
Size 7.6 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
403674fb754b976956e3a5b48f2333ae49f1d908a2888c2e362212f1d75c3347
BLAKE2b-256 checksum
How to use checksums
bfb196ef1a9cb594821dec745bc67bb6f71f1a66fb1808a28e23c5650a27fdae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp310-cp310-macosx_10_9_x86_64.whl

Download URL pcre2-0.7.1-cp310-cp310-macosx_10_9_x86_64.whl
Size 7.6 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
4208c02832523304161d99b7bb847db2cf8efd2bc853e2aef32b721ff2aae454
BLAKE2b-256 checksum
How to use checksums
3d0b70ab8984ca95accb6fab68c1bcc2459fe8da618904fd8571be92f2af5573
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp39-cp39-win_arm64.whl

Download URL pcre2-0.7.1-cp39-cp39-win_arm64.whl
Size 7.4 MB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
9658026ab4d72222e5edd36f54dabca5e13cf65df14b894c5037868a517927da
BLAKE2b-256 checksum
How to use checksums
f17d5c4aafc29265b06b94dca4f8034e67dcdd20f61ccae6f2d4857ad8f25e03
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp39-cp39-win_amd64.whl

Download URL pcre2-0.7.1-cp39-cp39-win_amd64.whl
Size 7.5 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
90d57c34735b363f14556825b00ad1c6679cd5ee8aeb28312860199d3b543934
BLAKE2b-256 checksum
How to use checksums
b26f2a0f0da6ce742a9cb97ad3350101a0b78facf1761951432c1e352a1bcf2b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL pcre2-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl
Size 7.7 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
01636469c049d28abd2058481b055388c6d1100670ced1eadee5e2e346c2913f
BLAKE2b-256 checksum
How to use checksums
fe014d7e635645d7e5ff04c0b3d3cea87c63edeed38178914de33aa9270de31d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pcre2-0.7.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 7.7 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d3df1fa73a5d0afeb411f87ecfbc5f128dd0a3b09f33d55203835d6988aed82f
BLAKE2b-256 checksum
How to use checksums
6be4c323c69d8869456a5e9f1482b35956a521d317ac7db4b089d5c37779f960
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pcre2-0.7.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 7.6 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b263b3fed4b848dfc3fa501390d4a25665c6433850e3d4a490b82d69b0589936
BLAKE2b-256 checksum
How to use checksums
82d36b0dded5ce2c99e89db5152fc785d621065767a1bdaf13249587ef285362
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp39-cp39-macosx_11_0_arm64.whl

Download URL pcre2-0.7.1-cp39-cp39-macosx_11_0_arm64.whl
Size 7.6 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6654c29d267ebb73defdb66605fc937670a8453a2f222616a33376992a4bfdc8
BLAKE2b-256 checksum
How to use checksums
b19e8bfcdc41ed03d0920795e96dd17f810ed378406636271679965c25ec7736
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp39-cp39-macosx_10_9_x86_64.whl

Download URL pcre2-0.7.1-cp39-cp39-macosx_10_9_x86_64.whl
Size 7.6 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
4cb58d89f1bad65481d96a0fc51ee44e592e6b976c4f3216abce108c597c8ccd
BLAKE2b-256 checksum
How to use checksums
681704ed43e8b47cb838f1287ab41f8af7b73c08537af3e2dc9302c99e4f6730
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp38-cp38-win_amd64.whl

Download URL pcre2-0.7.1-cp38-cp38-win_amd64.whl
Size 7.5 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
ab2b30593e3ffe938c5b67e89cecddc1cf7a7cb5ca7b18f580f9bb5eba7ffcd9
BLAKE2b-256 checksum
How to use checksums
cf2f1abd0a939e0e03b2fa2fe268b69ab1c844c4395fbf7270f4603d46b72cf6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL pcre2-0.7.1-cp38-cp38-musllinux_1_2_x86_64.whl
Size 7.8 MB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
6c92d96925be718b8a8b796bdf53b6833c3ab8f6d19032839edf30aefe1331bc
BLAKE2b-256 checksum
How to use checksums
c9759880ac8c5a53e491dd807122da6d15bc05f1c9e86bc75dc782102d67c374
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pcre2-0.7.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 7.7 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b67edf9a3423d27d0089cf3a80ec31a2cbb14a0ec36743e652ea7aff3a4afc22
BLAKE2b-256 checksum
How to use checksums
6d123d08e4ad35dba9406e0bf599c6123928e417c7f175fc7598f51a3b4d0b00
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pcre2-0.7.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 7.6 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
ed1abb4b882868cd6e190e199cb166f074a72a4957643e94b95e450c460ead8d
BLAKE2b-256 checksum
How to use checksums
67abcd9b5126f45c9ca668b359b5292f35ddffd25fa6768ffe329375626bfdb0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp38-cp38-macosx_11_0_arm64.whl

Download URL pcre2-0.7.1-cp38-cp38-macosx_11_0_arm64.whl
Size 7.6 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f7b7ac3d56702dd676994e2dc6a7bcc4185c1404ca431cb2baeccdb40164ad78
BLAKE2b-256 checksum
How to use checksums
ae3ddd0100c69dacb6763ef99d2a8f38dc5ad4db3fafb00f04b710845b10922a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / pcre2-0.7.1-cp38-cp38-macosx_10_9_x86_64.whl

Download URL pcre2-0.7.1-cp38-cp38-macosx_10_9_x86_64.whl
Size 7.6 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
81f2076c4db1451a505fa8785cf6787d7ca3542e592529bfd9935cf81c11931e
BLAKE2b-256 checksum
How to use checksums
5b204c964b404debfdade79b7c92ad4d0385d99bce5c87cd056f45dabc69b066
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release history Release notifications | RSS feed

This release

0.7.1 This release

49 release files

0.7.0

49 release files

0.6.0

49 release files

0.5.2

47 release files

0.5.1

47 release files

0.5.0

35 release files

0.4.0

35 release files

0.3.0

35 release files

0.2.0

35 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page