mirror of
https://github.com/vinta/awesome-python
synced 2024-11-15 00:07:24 +00:00
add: implementations of python
"Psyco" and "Unladen Swallow" not added, because seemed deprecated
This commit is contained in:
parent
6e957600cd
commit
a7869ddc2d
1 changed files with 14 additions and 0 deletions
14
README.md
14
README.md
|
@ -5,6 +5,7 @@ A curated list of awesome Python frameworks, libraries, software and resources.
|
|||
Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
|
||||
|
||||
- [Awesome Python](#awesome-python)
|
||||
- [Implementations](#implementations)
|
||||
- [Environment Management](#environment-management)
|
||||
- [Package Management](#package-management)
|
||||
- [Package Repositories](#package-repositories)
|
||||
|
@ -100,6 +101,19 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
|
|||
|
||||
- - -
|
||||
|
||||
## Implementations
|
||||
|
||||
*Implementations of Python.*
|
||||
|
||||
* [CLPython](https://github.com/metawilm/cl-python) - Implementation of the Python programming language written in Common Lisp.
|
||||
* [CPython](https://hg.python.org/cpython) - **Default, most widely used implementation of the Python programming language written in C.**
|
||||
* [IronPython](https://github.com/IronLanguages/ironpython3) - Implementation of the Python programming language written in C# targeting the .NET Framework and Mono.
|
||||
* [Jython](https://hg.python.org/jython) - Implementation of Python programming language written in Java for the Java virtual machine (JVM).
|
||||
* [MicroPython](https://github.com/micropython/micropython) - MicroPython - a lean and efficient Python programming language implementation for microcontrollers and constrained systems
|
||||
* [PyPy](https://bitbucket.org/pypy/pypy) - Implementation of the Python programming language written in RPython and translated into C. PyPy focuses on speed, efficiency and compatibility with the original CPython interpreter.
|
||||
* [PySec](https://github.com/ebranca/owasp-pysec) - Hardened version of python that makes it easier for security professionals and developers to write applications more resilient to attacks and manipulations.
|
||||
* [Stackless Python](https://bitbucket.org/stackless-dev/stackless/wiki/Home) - An enhanced version of the Python programming language which allows programmers to reap the benefits of thread-based programming without the performance and complexity problems associated with conventional threads.
|
||||
|
||||
## Environment Management
|
||||
|
||||
*Libraries for Python version and environment management.*
|
||||
|
|
Loading…
Reference in a new issue