From a7869ddc2da66cfc550f0407cb963cf93fe3c5da Mon Sep 17 00:00:00 2001 From: "thinwybk (there is no way back)" Date: Fri, 21 Oct 2016 17:17:33 +0200 Subject: [PATCH] add: implementations of python "Psyco" and "Unladen Swallow" not added, because seemed deprecated --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 93be1b4b..b5742867 100644 --- a/README.md +++ b/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.*