summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2023-03-25 13:26:46 +0100
committerStefan Behnel <stefan_ml@behnel.de>2023-03-25 13:27:11 +0100
commit0ffa7e91816a00a1694d1466aa91613b6708b244 (patch)
tree0486b4092613276f9bcb3efbb150c2e60a784a5e
parent2a0d703048db48b31cc7ed84d8fe6aff46c60469 (diff)
downloadcython-0ffa7e91816a00a1694d1466aa91613b6708b244.tar.gz
readme: Cython is more a Python compiler than a new language; include download count.
-rw-r--r--README.rst17
1 files changed, 8 insertions, 9 deletions
diff --git a/README.rst b/README.rst
index 27d7d8150..e159124c0 100644
--- a/README.rst
+++ b/README.rst
@@ -1,15 +1,13 @@
Welcome to Cython!
==================
-Cython is a language that makes writing C extensions for
-Python as easy as Python itself. Cython is based on
-Pyrex, but supports more cutting edge functionality and
-optimizations.
+Cython is a Python compiler that makes writing C extensions for
+Python as easy as Python itself. Cython is based on Pyrex,
+but supports more cutting edge functionality and optimizations.
-The Cython language is very close to the Python language, but Cython
-additionally supports calling C functions and declaring C types on variables
-and class attributes. This allows the compiler to generate very efficient C
-code from Cython code.
+Cython translates Python code to C/C++ code, but additionally supports calling
+C functions and declaring 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 wrapping external C libraries, and
for fast C modules that speed up the execution of Python code.
@@ -19,7 +17,8 @@ for fast C modules that speed up the execution of Python code.
* Github repository: https://github.com/cython/cython
* Wiki: https://github.com/cython/cython/wiki
-You can **support the Cython project** via
+Cython has `about 30 million downloads <https://pypistats.org/packages/cython>`_
+per month on PyPI. You can **support the Cython project** via
`Github Sponsors <https://github.com/users/scoder/sponsorship>`_ or
`Tidelift <https://tidelift.com/subscription/pkg/pypi-cython>`_.