The Cython compiler for writing C extensions in the Python language.
Project description
The Cython language makes writing C extensions for the Python language as easy as Python itself. Cython is a source code translator based on Pyrex, but supports more cutting edge functionality and optimizations.
The Cython language is a superset of the Python language (almost all Python code is also valid Cython code), but Cython additionally supports optional static typing to natively call C functions, operate with C++ classes and declare fast C types on variables and class attributes. This allows the compiler to generate very efficient C code from Cython code.
This makes Cython the ideal language for writing glue code for external C/C++ libraries, and for fast C modules that speed up the execution of Python code.
The newest Cython release can always be downloaded from https://cython.org/. Unpack the tarball or zip file, enter the directory, and then run:
pip install .
Note that for one-time builds, e.g. for CI/testing, on platforms that are not covered by one of the wheel packages provided on PyPI and the pure Python wheel that we provide is not used, it is substantially faster than a full source build to install an uncompiled (slower) version of Cython with:
NO_CYTHON_COMPILE=true pip install .
3.3.0a1 (2026-06-24)
Features added
Changes were made to adapt to Python 3.15 and its Limited API. (Github issues https://github.com/cython/cython/issues/6405, https://github.com/cython/cython/issues/7190, https://github.com/cython/cython/issues/7347, https://github.com/cython/cython/issues/7348, https://github.com/cython/cython/issues/7358)
PEP-634 Pattern Matching is implemented. (Github issue https://github.com/cython/cython/issues/4029)
Declared container item types (e.g. list[float]) are now used by the type system. (Github issue https://github.com/cython/cython/issues/7288)
Type inference was improved for builtin Python types. (Github issues https://github.com/cython/cython/issues/7536, https://github.com/cython/cython/issues/7644)
Extension types can declare themselves explicitly as sequence or mapping with @cython.collection_type("sequence") or @cython.collection_type("mapping"). This has an effect on their behaviour in pattern matching and subscripting. (Github issue https://github.com/cython/cython/issues/5027)
Sequence types that have their Py_TPFLAGS_SEQUENCE type flag set can benefit from faster subscripting via the sequence protocol as Cython now bypasses the mapping protocol for them if both protocols are implemented. (Github issue https://github.com/cython/cython/issues/7432)
Sequence types marked as @cython.collection_type("sequence") that use C integers in the subscript special methods now implement only the sequence and not the mapping protocol. This allows subscripting code to avoid creating Python index objects when the index is already available as C integer. (Github issue https://github.com/cython/cython/issues/7435)
The Py3.15 frozendict builtin type is supported and has been backported as an alias for dict in older Python versions. Patches to adapt existing dict optimisations were contributed by Omkar Kabde. (Github issues https://github.com/cython/cython/issues/7545, https://github.com/cython/cython/issues/7647)
The Py3.15 sentinel builtin is supported and its C-API declarations are available in cpython.sentinel.
The builtin Python types int, float, str, bytes and bytearray are special cased in comparisons to speed them up. (Github issues https://github.com/cython/cython/issues/7452, https://github.com/cython/cython/issues/7474)
The builtin Python types int and float are special cased in +, - and * operations with (compile-time) unknown Python types in order to speed them up. The bit operations ^, | and & are additionally special cased for int. (Github issues https://github.com/cython/cython/issues/7485, https://github.com/cython/cython/issues/7541)
<bool> casts can be used to convert C values to Python True / False. (Github issue https://github.com/cython/cython/issues/7513)
cdef property methods support setters. (Github issue https://github.com/cython/cython/issues/7505)
The C restrict modifier can be used in declarations. (Github issue https://github.com/cython/cython/issues/7617)
C arrays may now be declared with (extern or internal) enum values as their size. (Github issues https://github.com/cython/cython/issues/7401, https://github.com/cython/cython/issues/7406)
prange(num_threads=0) automatically selects the maximum number of OpenMP threads. (Github issue https://github.com/cython/cython/issues/7586)
prange() and parallel() sections can be used without releasing the GIL, which helps in freethreading builds. When releasing the GIL as part of the section declaration, re-acquiring it immediately inside is now faster, e.g. to do per-thread Python initialisations. (Github issue https://github.com/cython/cython/issues/6562)
cython.pymutex and cython.pythread_type_lock now support a .locked() method to check if the lock is currently held without blocking. The method works on all Python versions using atomic reads on Python 3.13+ and a try-acquire approach on older versions. (Github issue https://github.com/cython/cython/issues/7275)
A simpler mechanism was added for implementing C++ exception handlers in Cython code. (Github issues https://github.com/cython/cython/issues/7388, https://github.com/cython/cython/issues/7390)
Repeated memoryview slicing inside of loops now avoids redundant reference counting, making it substantially faster. (Github issue https://github.com/cython/cython/issues/5507)
Indexing into Cython memoryview objects from Python is faster. (Github issue https://github.com/cython/cython/issues/7529)
Some internal call overhead in the memoryview code was removed. (Github issue https://github.com/cython/cython/issues/7609)
Extension types use the vectorcall interface for their instantiation in many cases. This can be configured with a new C feature macro CYTHON_VECTORCALL_TPNEW. (Github issue https://github.com/cython/cython/issues/7698)
Coroutine methods use the faster vectorcall interface. (Github issue https://github.com/cython/cython/issues/7678)
Vectorcalls with literal keyword arguments use cached constant keyword name tuples. (Github issue https://github.com/cython/cython/issues/7713)
List comprehensions that generate new objects avoid refcounting overhead for appending. (Github issue https://github.com/cython/cython/issues/7748)
Method calls in older Limited API versions are slightly faster. (Github issue https://github.com/cython/cython/issues/7707)
C arrays are substituted for sequence iteration in more cases, also inside of generators. Ad-hoc C array storage on the stack and in closures was reworked along the way. (Github issues https://github.com/cython/cython/issues/7323, https://github.com/cython/cython/issues/7339)
Unicode string comparisons to single character literals are faster. (Github issue https://github.com/cython/cython/issues/7418)
F-strings are a little faster in some cases. (Github issues https://github.com/cython/cython/issues/7495, https://github.com/cython/cython/issues/7526)
PyPy and GraalPython use the vectorcall protocol to enable faster Python calls in future releases. (Github issue https://github.com/cython/cython/issues/7614)
The runtime conversion from a Python mapping to a C struct/union uses less code. (Github issue https://github.com/cython/cython/issues/7343)
The error handling of memoryviews uses less code. (Github issue https://github.com/cython/cython/issues/7525)
The runtime dispatch code of fused types uses less code. (Github issue https://github.com/cython/cython/issues/7501)
More code is extracted to the shared utility code module. (Github issues https://github.com/cython/cython/issues/7556, https://github.com/cython/cython/issues/7570)
Cython compiled functions have a more efficient memory layout in the Limited API. (Github issue https://github.com/cython/cython/issues/7519)
Module string content is now compressed with LZSS by default, which reduces the footprint of the decompressor code compared to the 3.2.x default zlib. This also avoids a runtime dependency on the zlib module since the tiny LZSS decompressor can be embedded in the module. (Github issue https://github.com/cython/cython/issues/7577)
The Py2 print statement is now implemented in Cython instead of C to make it thread-safe and uses a vectorcall into Python. (Github issue https://github.com/cython/cython/issues/7642)
Several C++ exception declarations were added to libcpp.exceptions. (Github issue https://github.com/cython/cython/issues/7389)
Missing Python type flag declarations were added to cpython.object. (Github issue https://github.com/cython/cython/issues/7441)
Declarations for PyType_GetSlot() and the corresponding type slot IDs were added to cpython.type.
Declarations for specialised byte-conversion functions were added to cpython.long and cpython.float. Patch by Valentin Valls. (Github issue https://github.com/cython/cython/issues/7738)
Error detection when assigning to const variables was improved. (Github issue https://github.com/cython/cython/issues/7359)
Some cases of likely misuse of critical_section now generate warnings. (Github issue https://github.com/cython/cython/issues/6766)
Programmatic use of Cython has become easier by avoiding the need to manually set up the error reporting. (Github issue https://github.com/cython/cython/issues/7235)
Autoscaling in cymeit is a little faster.
Unicode 17.0.0 is used to parse identifiers.
Bugs fixed
Generated Cython language features like properties, auto-pickle or dataclasses now use a critical section (on the object itself) as guard for concurrent access. (Github issue https://github.com/cython/cython/issues/6621)
The star-import implementation needlessly rejected several names in internal use. They are now allowed and become regular Python module attributes. (Github issue https://github.com/cython/cython/issues/4931)
Mixing function signature declarations in Python modules and their .pxd modules could fail. (Github issues https://github.com/cython/cython/issues/5970, https://github.com/cython/cython/issues/4388)
C array declarations with type and size could fail with an exception in pure Python code. (Github issue https://github.com/cython/cython/issues/7372)
A const modifier in C++ template type arguments could be mapped incorrectly. (Github issue https://github.com/cython/cython/issues/6294)
C++ typeid() failed to compile on more complex expressions. (Github issue https://github.com/cython/cython/issues/7069)
Optimised Python int and float operations did not remember their result type, leading to less optimised code in longer expressions. (Github issues https://github.com/cython/cython/issues/7363, https://github.com/cython/cython/issues/7502)
Slices as dictionary keys confused the type inference of item access. (Github issue https://github.com/cython/cython/issues/7702)
A race condition when return``ing from a ``cython.parallel.parallel section was fixed. (Github issue https://github.com/cython/cython/issues/6521)
Cython still used (type, exc, traceback) for saving and restoring exception state, even though modern CPython versions only store the exception object itself internally. This is now modernised in many places to reduce overhead. (Github issue https://github.com/cython/cython/issues/7481)
Exceptions originating from the Py_UNICODE_IS*() character classification macros and the corresponding str.is*() methods, which they alias, were not handled but ignored in the Limited API. (Github issue https://github.com/cython/cython/issues/7602)
In the Limited API, import time failures to create code objects for compiled functions, e.g. due to future Python API changes, are no longer fatal but generate a warning. (Github issue https://github.com/cython/cython/issues/5718)
Several internal cases where exceptions are caught and discarded now propagate the BaseException errors and only discard the expected exceptions. (Github issue https://github.com/cython/cython/issues/7600)
Error handling was improved when setting up the table of cdef methods for extension types and unexpected errors are propagated. (Github issue https://github.com/cython/cython/issues/7613)
Exceptions while setting up the automatic pickle support are now propagated. (Github issue https://github.com/cython/cython/issues/7613)
Exceptions thrown into async generators could leave the generator in an unclosed state. (Github issue https://github.com/cython/cython/issues/7618)
In the Limited API, failures while formatting type names in exceptions are now uniformly handled. (Github issue https://github.com/cython/cython/issues/7680)
The global module state struct now lives in an anonymous namespace in C++ mode to allow linking multiple modules together in one shared library file. (Github issue https://github.com/cython/cython/issues/7159)
Dict iteration generates safer code in PyPy/GraalPy/free-threading. (Github issue https://github.com/cython/cython/issues/7637)
The floating point parsing code relied on C implementation specific “pointer compare after free” behaviour. Patch by stratakis. (Github issue https://github.com/cython/cython/issues/7463)
When non-heap types were used as base classes of extension heap types, the heap types were not correctly reference counted by their instances. (Github issue https://github.com/cython/cython/issues/7483)
The .__signatures__ dict of fused functions is no longer writable. (Github issue https://github.com/cython/cython/issues/7386)
A minimal implementation of .__annotate__ was added to Cython compiled functions to make @functools.wraps work in Python 3.14+. (Github issue https://github.com/cython/cython/issues/7675)
The --embed-positions option no longer includes absolute file paths in the C code. (Github issue https://github.com/cython/cython/issues/6755)
Error reporting on missing braces in f-strings was misleading. (Github issue https://github.com/cython/cython/issues/7436)
None default values for function arguments declared as not None are now rejected at compile time rather than leading to errors at runtime. Patch by Vyas Ramasubramani. (Github issue https://github.com/cython/cython/issues/7762)
Cython did not reject code with multiple contradicting type annotations on the same variable. (Github issue https://github.com/cython/cython/issues/7246)
Cython no longer warns if @profile or @linetrace is applied to a function without changing the global/outer setting. This avoids annoyance when users leave such redundant decorators in the code for occasional use.
Cached methods of builtin types were not GC-traversed and cleaned up as part of the module state. Patch by Maxwell Bernstein. (Github issue https://github.com/cython/cython/issues/7468)
Modules with non-ASCII names could end up with UTF-8 characters in their C code. (Github issue https://github.com/cython/cython/issues/7588)
Several C compiler warnings related to mixed signed/unsigned C integer usage were resolved.
Includes all fixes as of Cython 3.2.6.
3.2.6 (2026-06-24):
@functools.wraps() was broken in Py3.14+ for Cython compiled functions. (Github issue https://github.com/cython/cython/issues/7675)
A double-free in the t-string code was fixed. (Github issue https://github.com/cython/cython/issues/7712)
The - operator declarations for iterators in libcpp.vector we corrected. Patch by Vadim Markovtsev. (Github issue https://github.com/cython/cython/issues/7717)
The shared utility code module no longer uses a temporary file path that changed the C code on each generation. (Github issue https://github.com/cython/cython/issues/7723)
On 32 bit platforms, cached constants are no longer made immortal during module import. (Github issue https://github.com/cython/cython/issues/7744)
Other changes
Support for Python 3.8 has been removed. As a side-effekt, support for StacklessPython and Pyston (last release was 3.8) was also removed. Python 3.9 is planned to remain supported for several years due to its use in LTS Linux distributions. (Github issue https://github.com/cython/cython/issues/7271)
The vectorcall feature macros were unified to make CYTHON_VECTORCALL the only way to disable this feature (if need arises). Previously the option macros CYTHON_METH_FASTCALL, CYTHON_FAST_PYCALL and CYTHON_VECTORCALL all controlled different aspects of the implementation. (Github issue https://github.com/cython/cython/issues/7616)
Coroutines no longer provide the legacy _is_coroutine property. (Github issue https://github.com/cython/cython/issues/7709)
Cython/Shadow.pyi has been merged into Cython/Shadow.py. (Github issue https://github.com/cython/cython/issues/7376)
The documentation now uses the “Clarity” Sphinx theme. Patch by Libor Jelínek. (Github issue https://github.com/cython/cython/issues/7564)
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cython-3.3.0a1.tar.gz.
File metadata
- Download URL: cython-3.3.0a1.tar.gz
- Upload date:
- Size: 3.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79787148701b5fd7c718b1ea5f1b8481be3e4ea938de78a1a5c3b04bf36b0c87
|
|
| MD5 |
2b9ee2926b7677724f4461a50f8d0710
|
|
| BLAKE2b-256 |
4fba1a7664865831be6d6c6454a2d39354a44ab665dd05eddee82a72c8683ec4
|
File details
Details for the file cython-3.3.0a1-py3-none-any.whl.
File metadata
- Download URL: cython-3.3.0a1-py3-none-any.whl
- Upload date:
- Size: 1.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcd6d1d6a1ae6b9abdedb83f113999eed4381878be6deb99e03281af9d74b7a6
|
|
| MD5 |
398b38082e720be7f2fa7b52dc036c45
|
|
| BLAKE2b-256 |
afb5d9c9015fb086d4136d9340468fea3b592fe966c0259ae8b0458ac7b92764
|
File details
Details for the file cython-3.3.0a1-cp315-cp315-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp315-cp315-win_amd64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.15, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a432def9890d8665548796ce0a9f0ecefcb23bbccf0480bafc172187b15a4aa1
|
|
| MD5 |
90542076b5dfeaf5a1ca7260493b5761
|
|
| BLAKE2b-256 |
8b3b2774deab7b8ee8bb32ed31f2c44a45c517194dc110601a6364a4d6ca7917
|
File details
Details for the file cython-3.3.0a1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04d01e0f0ed7730dd9fa4a67e01a13024cc6f6b5c1373270bc1e8bc918f28585
|
|
| MD5 |
363d128be1ae817850a6d3f9bb889aa6
|
|
| BLAKE2b-256 |
4042e17a396cd5f0011b421e1395089fdfac49c317cef3971fee15dcdca13592
|
File details
Details for the file cython-3.3.0a1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.15, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ddaeab518c529d4d2f79b00a78305335310c458a8a1bca2f2e45b0e9c117174d
|
|
| MD5 |
abe14fb9df8085eede437d95e5220ecf
|
|
| BLAKE2b-256 |
4f1714029cb85e437e28d5f7bd6cebd3e4495684294415007ae85287d45ffd1b
|
File details
Details for the file cython-3.3.0a1-cp315-cp315-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp315-cp315-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.15, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afd335fba0a85f6c5e64ed4bc722c6333591c6630bfb9fd99eb125cac8bbcc10
|
|
| MD5 |
0ae0a4b461aa7fd15ebb5a2fe1010ec6
|
|
| BLAKE2b-256 |
f6bedd6ea2c12e1bfe9f8e77332a8c4ba9b3576ca436af9198a43f93a9e0614d
|
File details
Details for the file cython-3.3.0a1-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1df82a5050bd5061a6f42a12ff852db5c26749466c10c0cdc7ac5fbf4e936bcb
|
|
| MD5 |
e9b432398dfe8b89ce81a31419b20d0c
|
|
| BLAKE2b-256 |
9664c473621ff3665c64a028a04103a8e5f1a6baf2f4f3f6b6970c2557d05b63
|
File details
Details for the file cython-3.3.0a1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3387f9d348f1712c5f64e4db218bb16fd967e1965a59a3af3f8a13c2bf918c2
|
|
| MD5 |
d4cc8940ca81cafd5bcc66c9af12f9b8
|
|
| BLAKE2b-256 |
e7d7c78ea7f597bd3618496053da18d03d0c2f852260f50de8bdc9cb9534c44d
|
File details
Details for the file cython-3.3.0a1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c91f5c005c9f708e71ba94eb836b3112e265481856f03319707ac7db66522c2e
|
|
| MD5 |
26a7836111164137c886bc371abddf1e
|
|
| BLAKE2b-256 |
b7dd803a38d156a840f875e917e1a5961f0fabf4abea7814c6933a3913d95722
|
File details
Details for the file cython-3.3.0a1-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f029aad4bb747793f3062a100cabd5f9373b48726044975665ae496257ae5a0
|
|
| MD5 |
18a612f44d8e5178721a694ecfcfe7ea
|
|
| BLAKE2b-256 |
cabfe045c5825642353a255ae5de10f7298b27342b42d969cd1fbe00ec1674d5
|
File details
Details for the file cython-3.3.0a1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fafcc877d11fffe8ead94144ddb81435c3f6c7407629faf6524325613e945fb9
|
|
| MD5 |
af65df95da5ff17995868187957e2fb5
|
|
| BLAKE2b-256 |
3c1adfd1b0d3f86ffd9b06fdfd9dff88fe95f6576e0632de3055e7a21c58c0e8
|
File details
Details for the file cython-3.3.0a1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d3cd7d62d12b19224c43d5610ad3bc158ac1a152a73ba9969ad23a5f698460e
|
|
| MD5 |
f47262ed77c8cf736a08ca7eea115fc4
|
|
| BLAKE2b-256 |
e04bbb68b4d6dba1d914e00516a8f4086c4594248c2eec47301683f43e2613fd
|
File details
Details for the file cython-3.3.0a1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3468370135449e8b1bc28d4787471aa6fb096c791d153da8a01be2bdea402f14
|
|
| MD5 |
5585dc2fa6771f9ac1f33147867dcfa5
|
|
| BLAKE2b-256 |
476b7147cf40894a9ae005f353815a1bc51ca2e6e785083cac2a1635cc1538ba
|
File details
Details for the file cython-3.3.0a1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
629c958a4d1a08b9f4efd48cde0768b77e37e8ac758bc11841fdd386bd3173e4
|
|
| MD5 |
674b8f3482e54aa95eb71e2bbad035c6
|
|
| BLAKE2b-256 |
95494a1218458ffc5c9ce6dbd7dd2ad9cb215d59f8ac7fc9f41703d1899bf5ea
|
File details
Details for the file cython-3.3.0a1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b7b25515f62bd97498ed316a81156871f2109dfd2e6c0bd657cac61aae76bc8
|
|
| MD5 |
318a5e90f1485f16662797861131c204
|
|
| BLAKE2b-256 |
cd74c2ab2e45b78c12b72716e1b2610fa2d1062facc12b066a5b2193c08ca544
|
File details
Details for the file cython-3.3.0a1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b55ad42ec575ad7ff315952b08460d36c9c2b1c748095a24cc1796a576697849
|
|
| MD5 |
26f6827b82bc43fd2f196f3b04225ea4
|
|
| BLAKE2b-256 |
126d7e3818d248908cf3ccbd5a5e5aaf07c6298bf52ba6a910be279745dffadf
|
File details
Details for the file cython-3.3.0a1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d46d3ef7fa05f2fa5438bb45bb7d938f87a0382fb26acd071e5bf22ef3932212
|
|
| MD5 |
7e93f73a8f0c0843b7434927b71fd1c8
|
|
| BLAKE2b-256 |
cfb58fedbddd7a44e0f7e084ec25001c8f3308848f1ac6169ec1f2f3a20ffdfa
|
File details
Details for the file cython-3.3.0a1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2980374116c177d371511e52d25c913bd02f3bb03dab8484183913e74f4f7b0f
|
|
| MD5 |
e552908b4966e53a9eb3fe8b2468ec67
|
|
| BLAKE2b-256 |
cc86eb1c32e29f2039b0cc2cf4a93535f7d4f92ce3578ac413f26c92f678f1b5
|
File details
Details for the file cython-3.3.0a1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8592db9ea90d49ef6e19eb2bcac40adb38b297a0747eda99d78b8d85d04f668a
|
|
| MD5 |
2677a3ac8ed5e212bbae5d4d4ed8eab0
|
|
| BLAKE2b-256 |
71c9e6929a46a262624e927848c1ae9700053953dca3ca3e84d4388f57630c11
|
File details
Details for the file cython-3.3.0a1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
787b6917c1293985181973d24bb8766187897066966f51deb3b6ff2ccd6dcbea
|
|
| MD5 |
7d1a56f805b7db352b50d8b9af071be4
|
|
| BLAKE2b-256 |
36caececd1758ff3fa1213fa4dc6aa80a03b389007d0009acc7af00d60c898a4
|
File details
Details for the file cython-3.3.0a1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88beb9bd984bb1783062ce63b99a695a41ebd9f321bfb8222501bdc0f44d4519
|
|
| MD5 |
c4dc3401532af942c918972602a1b5b5
|
|
| BLAKE2b-256 |
486d9fabe101be019026b2ef41815ba61caa5180a09e2882041691901dd60113
|
File details
Details for the file cython-3.3.0a1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4be905d5094e488f1bf7f8713a0e6bff80096e23654916f3d5c75458caf8680f
|
|
| MD5 |
147acbcca2e416670ddc9741516c4c7e
|
|
| BLAKE2b-256 |
5788a8163afabec73f4d48ee64baab434956c7c84a64ac84dc74996f37e2dd57
|
File details
Details for the file cython-3.3.0a1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
196ebcab5a83cc9ace64af4f1712787f2f671d1e88d8ce75605a4924f1c04e2f
|
|
| MD5 |
c64feca4c999ad72d88725b7578378d5
|
|
| BLAKE2b-256 |
62c76005f795724a53d6d4960ddcfb5df99e4f08656bd37041037585e10a982f
|
File details
Details for the file cython-3.3.0a1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bae906683bb285945e23509f0a195d695495467e98dc9c219a9c510df8a20719
|
|
| MD5 |
5418b1eeba7a303f04536bed39663997
|
|
| BLAKE2b-256 |
6bf3537c0048145049e497e50ecbb46fccacab10cd58da2412ec0fb3fdae954f
|
File details
Details for the file cython-3.3.0a1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e1a44f85b9f3ac8cc47b01482bcff2860a0e5e876ea64240dc81dfb10cbb8ac
|
|
| MD5 |
a6272c18f1b4715472c07149f89ef96e
|
|
| BLAKE2b-256 |
603214a1448bb22cb9a67de45264df25889450b563896ece8ccb893a5205b2df
|
File details
Details for the file cython-3.3.0a1-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32077ec32a8f103c7483cbb9a7b3d3a12a5e9b8198922462f2db96e8b1247f26
|
|
| MD5 |
5f4313e8513ec7d017038ec52fbb893d
|
|
| BLAKE2b-256 |
068d47e9838b71fe9360c56bd11a4a6c383bc9389bf3610ec0e7138fcb784e2f
|
File details
Details for the file cython-3.3.0a1-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d4f416c02562d5814b0e7b58de9b35c25ae545a470e26d59592c747e164ce70
|
|
| MD5 |
3729d9dd95087b2b99dbe02393902495
|
|
| BLAKE2b-256 |
e2137d833e2498cd4cd7cee239b24a7ade875ba00fb9accd12485551e789bb20
|
File details
Details for the file cython-3.3.0a1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec98224579bf8bc79df799e6d67a196f880e81534fc537b02a05b510e5d1e5d0
|
|
| MD5 |
d6603e9086500d6a42cf7ac511f6d3bd
|
|
| BLAKE2b-256 |
b4fdda0791117be25bf8606a42229644eb30fe89677ef85e745e22167e452fbc
|
File details
Details for the file cython-3.3.0a1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76d426d963751069437ee0891bc278ba479e00261dcb8200d3ac93486b8d1d61
|
|
| MD5 |
7c22ac3204680b500fe490f7b747966d
|
|
| BLAKE2b-256 |
675412bb8af71246338c7810e30d9452aa656941cf56fc798a83e20af5dc61ca
|
File details
Details for the file cython-3.3.0a1-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc3ba8296d2a6c79f4c59300c9cb3cdd713f44bea2ef50b59873c159a668c0a8
|
|
| MD5 |
781a4059b0343f289968d632214c345e
|
|
| BLAKE2b-256 |
41fac9bd3ce4c699149534eca96faa40fd07926361ce0d5bd7ad9803f5d4e6ef
|
File details
Details for the file cython-3.3.0a1-cp39-abi3-win_arm64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp39-abi3-win_arm64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9+, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28291db0db4b7bc7276a52a887ec2dbaa3433a6ba9ff4e9095855c46cfcc057d
|
|
| MD5 |
381d1bd0c02a0f4c5b55d69287d4689a
|
|
| BLAKE2b-256 |
047db666ee9fb89e5aab3d267f982f74a12e1f120cc9789a13ec88bbc873c8ee
|
File details
Details for the file cython-3.3.0a1-cp39-abi3-win32.whl.
File metadata
- Download URL: cython-3.3.0a1-cp39-abi3-win32.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9+, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e729d352299735cd7d9cc4a020fc6501d2c58104f11d2c12aaf686ac647083c
|
|
| MD5 |
3b6624799bcf1038b6695f303d11acd7
|
|
| BLAKE2b-256 |
d3b2b036d9d90422d024abab3a512f99a112e2f7b064d28da305079def160997
|
File details
Details for the file cython-3.3.0a1-cp39-abi3-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp39-abi3-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.9+, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1bebc116679c4d22cb6c0aaaec6b0bf6b85a5fa8eed2bd6baa7811435c64a8b8
|
|
| MD5 |
6a629bcd0c9048d1ffcdb39aff62774c
|
|
| BLAKE2b-256 |
ac52e3b323ede816d441f5dbeb61f5faaf7be7c911b9886d647971fbdb778f8e
|
File details
Details for the file cython-3.3.0a1-cp39-abi3-musllinux_1_2_i686.whl.
File metadata
- Download URL: cython-3.3.0a1-cp39-abi3-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.9+, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
070a0c260225f25612714e54d796bffa0ccb2f6b3f9d641f11d5613053392bbf
|
|
| MD5 |
421823746fad7be445474e5f23012ae1
|
|
| BLAKE2b-256 |
f5166aac2ef5ead5c41976272379877a87f7a7845236c6e49f2edb6b322695bf
|
File details
Details for the file cython-3.3.0a1-cp39-abi3-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cython-3.3.0a1-cp39-abi3-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.9+, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e52f3a0d9889abeaedb566a348ee9c1063e8dac6ba3cea1d31b9c90463e82b9
|
|
| MD5 |
1e90bd7c54cc84f29d2bd1fb856de097
|
|
| BLAKE2b-256 |
7614602a9004fec9f7e9d2b88159af0157b7b4483fa161dbaabbd99f9c446f5e
|
File details
Details for the file cython-3.3.0a1-cp39-abi3-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp39-abi3-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.9+, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0266a8ea9f25a492f1bf87215c7ce3da72787c2673e502689eee6328d13c832c
|
|
| MD5 |
8b8bbed3785f7d2eca7ec9eb61495a59
|
|
| BLAKE2b-256 |
ca41c1a14b520aba5629f0020e9e7b18deb050daa2c8a41ff6a002b433af0565
|
File details
Details for the file cython-3.3.0a1-cp39-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.
File metadata
- Download URL: cython-3.3.0a1-cp39-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.9+, manylinux: glibc 2.17+ ARMv7l, manylinux: glibc 2.31+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd31ee94015222e10d2a35eeb76c2e1e25e76659a12590f26c485d8f20e047a8
|
|
| MD5 |
9dd5ed5c865003e4a2525816cadbc795
|
|
| BLAKE2b-256 |
5bde505ef0df21fde8bbfa37ca328a8b5b61c15abddc01c35eefc8f982cd5553
|
File details
Details for the file cython-3.3.0a1-cp39-abi3-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: cython-3.3.0a1-cp39-abi3-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.9+, manylinux: glibc 2.28+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80474f308502429bf8a4d4954543162afbb1f8c6b2a88b5fd73482d7c7009710
|
|
| MD5 |
5102857db09086263f03dba816c68282
|
|
| BLAKE2b-256 |
5c28e8197f51dea6f965f678d326c31cb1ef0569e21526e5b8ae5bf7dce99803
|
File details
Details for the file cython-3.3.0a1-cp39-abi3-macosx_10_9_x86_64.whl.
File metadata
- Download URL: cython-3.3.0a1-cp39-abi3-macosx_10_9_x86_64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.9+, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0126f335599a58ce24ce5fe6cd6e9df2e697d9ecbfe57c8356a719ef1d1a3786
|
|
| MD5 |
4766ac101c6da79b26d05686eb4263c2
|
|
| BLAKE2b-256 |
fa5a4479c1510f0c4d65267e94b549712fcddac9b9c3e934913cb9abe8c6dc35
|