Skip to main content

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.1.0 (2025-05-08)

Features added

3.1.0 rc 2 (2025-05-07):

  • Declarations for C++ std::stop_token were added as libcpp.stop_token to provide additional low-level synchronisation primitives also in the light of free-threading Python. (Github issue https://github.com/cython/cython/issues/6820)

  • The generation of the shared module now happens automatically from cythonize() in a setuptools build if a corresponding Extension has been configured. This avoids an additional step outside of the setup.py or pip wheel run. (Github issue https://github.com/cython/cython/issues/6842)

3.1.0 rc 1 (2025-05-01):

3.1.0 beta 1 (2025-04-03):

3.1.0 alpha 1 (2024-11-08):

Bugs fixed

3.1.0 rc 2 (2025-05-07):

3.1.0 rc 1 (2025-05-01):

3.1.0 beta 1 (2025-04-03):

3.1.0 alpha 1 (2024-11-08):

3.0.12 (2025-02-11):

3.0.11 (2024-08-05):

Other changes

3.1.0 rc 1 (2025-05-01):

  • Named cpdef enums no longer copy their item names into the global module namespace. This was considered unhelpful for named enums which already live in their own class namespace. In cases where the old behaviour was desired, users can add the following backwards compatible command after their enum class definition: globals().update(TheUserEnumClass.__members__). Anonymous enums still produce global item names, as before. (Github issue https://github.com/cython/cython/issues/4571)

3.1.0 beta 1 (2025-04-03):

3.1.0 alpha 1 (2024-11-08):

  • Support for Python 2.7 - 3.7 was removed, along with large chunks of legacy code. (Github issue https://github.com/cython/cython/issues/2800)

  • The pxd files cpython.int, cpython.cobject, cpython.oldbuffer and cpython.string were removed as they refer to C-API declarations that are only in Python 2.x. (Github issue https://github.com/cython/cython/issues/5870)

  • The generated C code now requires a C99 compatible C compiler.

  • language_level=3 is now the default. language_level=3str has become a legacy alias. (Github issue https://github.com/cython/cython/issues/5827)

  • The Py2 types unicode and basestring are now deprecated and have become aliases of the str type. (Github issue https://github.com/cython/cython/issues/6374)

  • Docstrings now strip their leading whitespace according to PEP-257. Patch by Lawrence Mitchell. (Github issue https://github.com/cython/cython/issues/6241)

  • Type checkers should have it easier to find and validate Cython types in .py files. (Github issue https://github.com/cython/cython/issues/4327)

  • The previously shipped NumPy C-API declarations (cimport numpy) were removed. NumPy has been providing version specific declarations for several versions now. (Github issue https://github.com/cython/cython/issues/5842)

  • Usages of the outdated WITH_THREAD macro guard were removed. (Github issue https://github.com/cython/cython/issues/5812)

  • The options for showing the C code line in Python exception stack traces were cleaned up. Previously, disabling the option with the CYTHON_CLINE_IN_TRACEBACK macro did not reduce the code overhead of the feature, and the c_line_in_traceback compile option was partly redundant with the C macro switches and lead to warnings about unused code. Since this is considered mostly a debug feature, the new default is that it is _disabled_ to avoid code and runtime overhead. It can be enabled by setting the C macro to 1, and a new macro CYTHON_CLINE_IN_TRACEBACK_RUNTIME was added that controls the runtime configurable setting if the feature is enabled, which was previously only available through the compile option. The compile option is now deprecated (but still available), and users should migrate to using the two C macros only. (Github issue https://github.com/cython/cython/issues/6036)

  • Includes all fixes as of Cython 3.0.11 (but generates C99 code in some places).

Release history Release notifications | RSS feed

This version

3.1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cython-3.1.0.tar.gz (3.2 MB view details)

Uploaded Source

Built Distributions

cython-3.1.0-py3-none-any.whl (1.2 MB view details)

Uploaded Python 3

cython-3.1.0-cp313-cp313-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.13 Windows x86-64

cython-3.1.0-cp313-cp313-win32.whl (2.5 MB view details)

Uploaded CPython 3.13 Windows x86

cython-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

cython-3.1.0-cp313-cp313-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

cython-3.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

cython-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

cython-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

cython-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

cython-3.1.0-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

cython-3.1.0-cp313-cp313-macosx_10_13_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

cython-3.1.0-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12 Windows x86-64

cython-3.1.0-cp312-cp312-win32.whl (2.5 MB view details)

Uploaded CPython 3.12 Windows x86

cython-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

cython-3.1.0-cp312-cp312-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

cython-3.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

cython-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

cython-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

cython-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

cython-3.1.0-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cython-3.1.0-cp312-cp312-macosx_10_13_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

cython-3.1.0-cp311-cp311-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.11 Windows x86-64

cython-3.1.0-cp311-cp311-win32.whl (2.5 MB view details)

Uploaded CPython 3.11 Windows x86

cython-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

cython-3.1.0-cp311-cp311-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

cython-3.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

cython-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

cython-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

cython-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

cython-3.1.0-cp311-cp311-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cython-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

cython-3.1.0-cp310-cp310-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.10 Windows x86-64

cython-3.1.0-cp310-cp310-win32.whl (2.5 MB view details)

Uploaded CPython 3.10 Windows x86

cython-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

cython-3.1.0-cp310-cp310-musllinux_1_2_i686.whl (3.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

cython-3.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

cython-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

cython-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

cython-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

cython-3.1.0-cp310-cp310-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

cython-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

cython-3.1.0-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9 Windows x86-64

cython-3.1.0-cp39-cp39-win32.whl (2.5 MB view details)

Uploaded CPython 3.9 Windows x86

cython-3.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

cython-3.1.0-cp39-cp39-musllinux_1_2_i686.whl (3.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

cython-3.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

cython-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

cython-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

cython-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

cython-3.1.0-cp39-cp39-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

cython-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

cython-3.1.0-cp38-cp38-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

cython-3.1.0-cp38-cp38-win32.whl (2.5 MB view details)

Uploaded CPython 3.8 Windows x86

cython-3.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

cython-3.1.0-cp38-cp38-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

cython-3.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

cython-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

cython-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

cython-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

cython-3.1.0-cp38-cp38-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

cython-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

Details for the file cython-3.1.0.tar.gz.

File metadata

  • Download URL: cython-3.1.0.tar.gz
  • Upload date:
  • Size: 3.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for cython-3.1.0.tar.gz
Algorithm Hash digest
SHA256 1097dd60d43ad0fff614a57524bfd531b35c13a907d13bee2cc2ec152e6bf4a1
MD5 715cd0754bfa6516021f9ee2a7679255
BLAKE2b-256 cff7db37a613aec5abcd51c8000a386a701ac32e94659aa03fa69c3e5c19b149

See more details on using hashes here.

File details

Details for the file cython-3.1.0-py3-none-any.whl.

File metadata

  • Download URL: cython-3.1.0-py3-none-any.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for cython-3.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4e460bdf1d8742ddf4914959842f2f23ca4934df97f864be799ddf1912acd0ab
MD5 45df2b2a8e7d4b9a8b497f6bace45d20
BLAKE2b-256 9fcc221af506254978b119a2f6769b81b16bcfe09e0fb3fc5ab66e53e536d933

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cython-3.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for cython-3.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9d6c88e8c86f2c582a2f9b460174ef86d9e01c8bfb12b8f7c44d697242285551
MD5 d98280575192393d0eafd9ea46e21f55
BLAKE2b-256 a2bf322e89d5fbf692fb1581ec2cb95f8286b45dbfe738af6459ca085e40c071

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: cython-3.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for cython-3.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d6854c89d6c1ff472861376822a9df7a0c62b2be362147d313cf7f10bf230c69
MD5 86617c46561984a65ef124296f9552d7
BLAKE2b-256 b8c410baec2a2e214cd0b74debfe6cca0adda7753dd1a3f41b2a3943227c0db4

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 856950b7c4282a713bcf4794aaae8f18d4a1ae177d3b63739604c91019ac4117
MD5 6555b364e663a990eb8d96a6f0112afc
BLAKE2b-256 9ff9f862904d1e7949b94f103d2dd97e82f56a94afecfd3d475fe4ca7a6ca063

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0605d364a2cc632c9269990777c2b266611724d1fccaa614fde335c2209b82da
MD5 fae64146f9a8b3a909799057c488fa30
BLAKE2b-256 be0c52bc291109dbedc1e054ead71d8f1f4ade060f69e0d69e0675e0e13a2238

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e03b3280c7ff99fae7b47327a4e2de7e117b069ce9183dc53774069c3e73d1c8
MD5 56c0bc50bc70ac07a7e4f8256360acfb
BLAKE2b-256 425447779d9dd2ff253b81fa2eb77a064a8290c0a74b42cf155a5527eb5bc3fc

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c088ac33f4fa04b3589c4e5cfb8a81e9d9a990405409f9c8bfab0f5a9e8b724f
MD5 c7a44db5557b7b6951568dd53a43731a
BLAKE2b-256 8f143676fcf2936c3a01538c01069f649440d3948d77ac117934896ed20f724b

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4551f9ab91019b6b63cf8b16bf1abb519db67627c31162f604e370e596b8c60c
MD5 ff91743d5563597bf5986dc03cebe027
BLAKE2b-256 8feb0870813d86e1cfdeaeecb548192ac6c1fe8d1195b5cf60401aac62b3d139

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8926651830ada313a04284e711c2cf11e4e800ca080e83012418208edd4334a2
MD5 15f7351fc86513044444dfa4b675d0b5
BLAKE2b-256 e65dac817171129ebea07dde321301a3d54740765c8600133b9b3a790d5e932a

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd0003171ad84d4812fdb1eb9a4f678ed027e75fbc2b7bef5db482621b72137a
MD5 b37c8b21f6ad51bbc1f488de98bb893f
BLAKE2b-256 f35a6eee7f38a77b7d533f59f3978af90b4a0958ff63a6191f9ae34e94bee982

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 539828d14fbd95eff135e8dc9e93012f5b018657868f15a69cb475b8784efb9a
MD5 92b7550dcf2cd7c60660a1f77f4de943
BLAKE2b-256 2a8f47cdebf325a026963fe0e4f1a6e0b02304e1797863186c552e242be78861

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cython-3.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for cython-3.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 61eb67401bd6c977084fc789812bd40f96be500049adb2bab99921d696ae0c87
MD5 77c932caa8d5b040b4d88b5e1b43ff49
BLAKE2b-256 4aa174009b116dbec7d6c721ac268a4aa2c0c0069c99c138586f27c8fb77cae3

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: cython-3.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for cython-3.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d41d17d7cfcfbddf3b7dc0ceddb6361b8e749b0b3c5f8efa40c31c249127fa15
MD5 cbd8b7efc017388b4c2ca1b8ddc86c7e
BLAKE2b-256 be6105b58fc96248b2d6e487f1f8d20217d3ce6d4ba5b621fb315b23c87d077c

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe3320d13cde70fa8b1936e633b9e0fa68720cc61f97aa371d56d0f84fba3e02
MD5 e4c5fe91d0a71c0ef49d340ee34a799f
BLAKE2b-256 fa67b707c2548cc2f790c60bb634b996f93e748ad081681c28fe7a22591e663e

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cdde5f25fdb8a5d50dbe5d418fe5bfb2260b1acdbd45b788e77b247e9adf2f56
MD5 63467364206ac84a8f66f7fe33a4218b
BLAKE2b-256 6322ecb9301ee1efbb0b3a6be371fd01be87d45113ed2fe804897d399da8af6f

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c96908b302e87e99915b3b66481a976e32b864e95bf054dcd2cb859dffd8cb10
MD5 b8f85a6a271de6d7846f0265fb5fdebc
BLAKE2b-256 fb9877c50a153f4acdf7b48d055c5387edbcd3de1e0d17affca5181cb009f702

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8818446612461aca3978ebe8e3def817a120d91f85022540843ebe4f24818cd6
MD5 a2df7eeaf551857ebce59e3a55268c69
BLAKE2b-256 c97a5d5507f1fafd3215ea7d01e1c78809ca71dddd88b4ce75dba3ca53ab2b3b

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a46b34defa672268474fbb5541f6297f45df9e4ecc4def6edd6fe1c44bfdb795
MD5 baef78429245ec4ed836bdde24f0496f
BLAKE2b-256 6aebaeb62d32049ab55555e679b7d0cdb2f8c16f6a9d1189a56a96a0c1e86083

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fe401e825b0fbeec75f8cc758c8cf32345c673bdb0edaf9585cd43b9d2798824
MD5 d85151e0216cee8fd4df8104bedefd99
BLAKE2b-256 f89734dd0112d042ec85736273acb2caced7e576681fbf003bcefd007bbd36d2

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db8e15c8eeee529468eab08528c9bf714a94354b34375be6c0c110f6012a4768
MD5 365cc899a251004a016f6ee7f8bac470
BLAKE2b-256 cce6c8fe5e71b4272a1b5683a006bfe4bfeb5e2691c6603b44d18eb57772f626

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8f8c4753f6b926046c0cdf6037ba8560f6677730bf0ab9c1db4e0163b4bb30f9
MD5 ade5e6ada1818b046c62065ee1842e51
BLAKE2b-256 e964ae1d8848550ec3975634fcf189ccc85e73c3b9f76369dd85c484f2f8f1c3

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cython-3.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for cython-3.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dde3726aa5acbe879f849a09606b886491f950cfa993b435e50e9561fdf731c6
MD5 e91632dc8fa3b99c0f19e621682f3214
BLAKE2b-256 536e3ea341450bc40f3c0c3da9ae05c22eeb59930531accba78a4b3eebaf342c

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: cython-3.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for cython-3.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5f6417d378bd11ca55f16e3c1c7c3bf6d7f0a0cc326c46e309fcba46c54ba4f1
MD5 0d10b7232abdd85c1685527fc1bdd4bd
BLAKE2b-256 62520670d10b563b2f345477a158bd133399ddb9e7f6ff16e397e77932c07026

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe8c1db9ec03d9ef83e33c842c108e892577ade4c5f530c9435beced048e4698
MD5 01a51fcdb7122f91ead1b013e0b13889
BLAKE2b-256 61ab2966d2786f4e6a7903d23b019a810675334960e8d88686a985286bd8f53d

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bea0b6bfde7493acb0529fc603abd4b3b13c3bb2fff7a889ae5a8d3ea7dc5a84
MD5 24e723abcc6a4c41a09238c0dc8b7691
BLAKE2b-256 0e52297ce50c21647ae3741856e57f04ba69b1819e5658756823a3a1efd05e8e

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37d62b8b8919126c75769e5470b288d76c83a1645e73c7aca4b7d7aecb3c1234
MD5 c9d09b5ef517cb70b4e2a61fc1fe78d3
BLAKE2b-256 914999148b55ad1c036fb1cb69bf3729d2beecc4246f7c5f487006f16ec1f394

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 462ad6142057e81715ada74e2d24b9a07bf36ae3da72bf973478b5c3e809c26d
MD5 daf4ac5d9c24c5acb9097325c70430ee
BLAKE2b-256 58e74fe8304d1caccff52a4c042274b42bf23574a380e64a86daaf4c695be510

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 522d4dae1fea71eee5c944fb7a8530de8bdd6df0ccb2bd001d0f75be228eac6c
MD5 bf9a1cb6212bb57f559845e2b5b99425
BLAKE2b-256 6eb39778e21b317c10e9a1028270eb87eda91202cd37ee1e0c09630a600629ef

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a8f00cdeb14f004ebeacf946e06bad2e3ed5776af96f5af95f92d822c4ba275f
MD5 eb7893b0f3c441506ee614710077f186
BLAKE2b-256 0a889d3d7a1cb8ce3e93acbabac6f2275cfaa1021c2ddf93d2c0999bb2ee4d43

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1215d3adb4e8691d03e712aed31206d21f387a8003d8de6a574ee75fe6d2e07c
MD5 e80984fd3ebb5c8f05ac53a3bf292f35
BLAKE2b-256 596f2f4e1382e365006055ec7b803372283065c4cef6f5bab88f8ed2ab350452

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c736405078dc376502617eb41c39e223ae176ebd1a4ddc18179d2517bc8c8658
MD5 aa077c288af4825a2626cbb610b2501f
BLAKE2b-256 1bbdeb20821704e0bac5051ae552db574cf5022ba658006a0c187d85d50cfd69

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cython-3.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for cython-3.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8dbefee67f3c9219cc9d2311e4ebf9f7b930e1db4b6eec2863df0c436e3c78d0
MD5 864fc609d186d2dc6fe26c4b019f0dc1
BLAKE2b-256 dc68f7a75c7b1b1c355e7fcca44bc0578c67106c486e9b735bfa2cb1388b1a7b

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: cython-3.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for cython-3.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8029dffafa9ec5e83b6cc28f8b061f158132f2b1e800673716f7b9d9f85f2335
MD5 9801d2bf3570576b5d588fd709214493
BLAKE2b-256 e8ddab671996ea70e89f6757d25ee8566435105f4bdb46f3be8f6ed15e44e3b7

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 678e204230ece3205c17285383727b9e99097e7a80330fabb75cdd80d1f4c2ee
MD5 906fc1996a7d6c9715168155381ffb22
BLAKE2b-256 a172454497a5fd7f47e9fcf72e06eebfd0736d64cc8c09faac794ce9507e490a

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d78774a25c221fbda3855acbccb249989a04d334fb4ac8112ab5ffe4f1bcc65e
MD5 6c283f27cef6006dc5b64ee2171d5927
BLAKE2b-256 d5ef6b44c99713b440bcf024824ec7871a1ef7c7f0d420ef9b03a3a26bfecebb

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c063146c711751701ad662eefbdf5b396098d646f1239a2f5a6caea2d6707c5d
MD5 c26bf73db441f2ea9613420bffe39216
BLAKE2b-256 fa9644dc42407a5b60c59dbafea4d42aafed7a6e2ea664f9d12b63b9fde40fc0

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d722d311fee9f0dc80b17b8f9d1f46311be63b631b7aeed8530bf5f5e8849507
MD5 32ec80c4ce267dee5569aa61f7affc5d
BLAKE2b-256 43ca57723154d0a28bd75419f58479629a08b3a2dd5ed5dd21259a7c4c1e4d9f

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 136c938f3c0fe91bea3eab32751b860ab7587285c5225436b76a98fe933c599a
MD5 6c05143a6cce7c7fd0aa627f13e7edba
BLAKE2b-256 061322a7228dbd58ea265a5ca060e9b5b6efb6cc578e2cce4873e6d32911da22

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95eb189635a4542f1f8471bcf9756bffdac5294c41d4a4de935c77852d54e992
MD5 b6f9701a14b18aa99146154d29ffff19
BLAKE2b-256 dc9bb8fdd4c390363a5e3e37f4ce704c1b010d1f7de9f7440a37eb90f24ad782

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9389b7941e333a1cc11074556adbf6a9f97ed3de141c1b45cc9f957cd7f7fa2
MD5 6041ceae01c684f7004c15af2cd186ef
BLAKE2b-256 a1db1eaf36412f5fc0a8fe3b0f50f82f3ca73ffc4aa86c4dfe9bcb324e5b1dde

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 335982ac0b71a75720b99b980570b9a8416fafd1989ccf4292c0f2e0e1902eac
MD5 ca6862528f0679675e85fb18aa83f6b8
BLAKE2b-256 2cd00fa0e74e575951be0b13719331bcb7aa9c3ced53da085a7cdad195fa781e

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: cython-3.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for cython-3.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 286371835ca5f51e84d450243d5e341ca00513a04b2dc22333da34c0cdd375e5
MD5 49a0716603c2d21d518480f8c8145d72
BLAKE2b-256 8982a720443585c10a7a9e214ee073510d53efa75731c51b0b75600b17935394

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: cython-3.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for cython-3.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d9851900eace8794d5225b7910d7929a25817f078b0e4dba064313f8a1ed2326
MD5 5dd81f492593fe02914d2e3b02c6cf4e
BLAKE2b-256 9aaecff41ecf1ea28670284f19b033a79cff714388bdd945a49c34ecc3f76572

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 752b34334a75a8f8bb10e23cac8d397bf3cc8dcb3bd95b40156b914299c5e25f
MD5 cb06ab80cba599130d3f2fa6b2acabc3
BLAKE2b-256 cb603c2d4c872820a81cf90aa2f6a0d5b3ee74f66215d527591eb2e18fa7d1c7

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e162a2bd810ae9c9bb548beec8abe00ef80494b7705867363d92988696a09b9c
MD5 f62c2d0d96beed44c78d0a69f65417a9
BLAKE2b-256 65818ad9d6a573a40519fd3fdde9edc54c23b74c00905120ba069a4365d5adeb

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88020b0a427fcdbea0fd1ffd51877f06dec8d810ff123e301fe0ceca62562714
MD5 673a100cf4933acc5aa7c463edfaecff
BLAKE2b-256 3f4030c65d40c61e560c055e586f368a75d4b244f882bb6b7a6aa949c8a9de1f

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab3b461f4b18ccc2b692b512c8c35c92a2d2a1bcaed41cb0864108109782cc4a
MD5 0a49cfc1edee7d2e331ae3ae2f48cf7c
BLAKE2b-256 de3a42d15d96473d47fd25acf843f5f99b6fb003f2a2516f898a3b6ebbd26ea5

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5903c4c474548c66865dd616254d09f7db1ea4c43c1d0bcf927166de5ea9b0c9
MD5 8146a26a467a8b303d32a3294600c1fd
BLAKE2b-256 a1cc2386c755f0505ddf8705b62f94265b47442c13d67490224810b704d29623

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9511b32f2a77b5ead0690c9a051038e0d30c25334bd6915c3fe657d5852399c1
MD5 fd7054d101ea9e6614ffca65ccb45056
BLAKE2b-256 7fd070fb8cc0ed1544e44cb4f3f8df70db17621f635d9886b2bd91e9e748c9b2

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 012d424d313c28c5ef63cce23e23e39dc8ea2825c8697de145549b99125c8966
MD5 44a70f4b9b5d89d7c3ad2a4b98a6e07e
BLAKE2b-256 c3fdb627e09a6dc3d0723de37451c6ef7517c5cab3e1808cd4f65d320d90b9ea

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0bf339b064b0e67807937a2d6cb370c41b8b0d5f7fbcbdc3b97550536261b6cf
MD5 656e1b81d0431fd527a7a630f0d69127
BLAKE2b-256 c0f1ec06f1a3e6926ba903dbe5cd4940c599f2a32cf6dc8b1690da433b0f24f7

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: cython-3.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for cython-3.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7f0469e82b70b7a9e74dda3c96ea56a04bcd545b9213ccbdb8bdaf7ca8b43989
MD5 9ba762d1ed5895fc8e147e4537882bd5
BLAKE2b-256 105708c3bf52ae98f690d8b85c7a1f123f24b34b1f31c69791d429a7473f7734

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: cython-3.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for cython-3.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a5d3d11a2c8679f49a237993138b253d7a4ee1363d1d557d6e637d593adf14fb
MD5 21d6f131b0a6a3d07b94ff0f51793a5e
BLAKE2b-256 50083758a8028d4f5f14c4825da787e4dd58d87234b7a1fae9e50f06c7f4acdf

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 588634346814b91ab8e119980337118b83916dccd49d2eea7ce326a754fd7d5c
MD5 07f14a7bb8d5579dc31f2809b3abf39e
BLAKE2b-256 9cc70f5386ebdd518e4dc390864a1deef624ced124e3b39a09f84a3ae19f4025

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f2d60a9055db796e488656732d2b1d9c73869c720c97d996bcada3c0a8ecff6
MD5 85d2ab4c893c6e7cf5fb154680226d0f
BLAKE2b-256 4f4de11c6012a596f8a3da1956a70b0b13023a42b1c2c81fe62259785f913ab5

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83c43fc0bac24942da6c3cc9c30e8664319c1758c2197a7649f5849257fa3e75
MD5 a08c2c14c288a1b3bb0d22b25b119d31
BLAKE2b-256 5ffad429c2c596fe851add29d8ca50c0f12f85db5e2bb502bcb3644337439b90

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4893a9eca2d60e1e38d82e43db10546734f512f7934a0872fb49f6b79b33fe2
MD5 eddc75ffd72e4628edd696ce32a0c793
BLAKE2b-256 730894828f7e4f29f370fbb6f91427e95ef4e9f54a4457b2e3992b896c875f67

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73c64f40d52a7c1d1e0bc37ed71298a1446f2a21297a9b45e6e423b7d9e835bd
MD5 7897a021c353bdfa992edb275801c9f7
BLAKE2b-256 560ba6564167c0dce8bd396cc299b057beabab5dae47572dc9c567f15419ec2f

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1fad170f110fdf574e90f5595fc5e4f32e1b3a098845f5de46cf3fd40bdb91e4
MD5 5943ffc8125a68ce6d1a5596802e7abb
BLAKE2b-256 18e9b9dcdf5421a1373306891685efd508bdb3aa3e5604f52885d43742856b5e

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d82c904e2cb0406dc5b77a7f2715fd352ad55d276e12a9955b8ecd39ca703b9
MD5 8a9cb1a79dac7c9adecaf5698ca3c6d9
BLAKE2b-256 3fbb41853beb842bd428f0ac3eefefda32a0d36e1fc3cefdf62bf63c2cfc45f4

See more details on using hashes here.

File details

Details for the file cython-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cython-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8513e706300acd6b2b0eab6c33fcca87127b43aea2ad838060a17c2fc5e2784a
MD5 8cc08be174eb59ebb47eec9813a71b86
BLAKE2b-256 a63bccfb5daddcbc69ba59bd058d6aa05eb6fc8dff9d56a5ef33c8419796be55

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page