Merge pull request #547 from kgriffs/readme

doc(README): Mention Jython 2.7 support
This commit is contained in:
John Vrbanac
2015-05-12 16:05:19 -05:00
2 changed files with 7 additions and 7 deletions

View File

@@ -20,7 +20,7 @@ Falcon is a [high-performance Python framework][home] for building cloud APIs. I
**Light.** Only the essentials are included, with *six* and *mimeparse* being the only dependencies outside the standard library. We work to keep the code lean, making Falcon easier to test, optimize, and deploy. **Light.** Only the essentials are included, with *six* and *mimeparse* being the only dependencies outside the standard library. We work to keep the code lean, making Falcon easier to test, optimize, and deploy.
**Flexible.** Falcon can be deployed in a variety of ways, depending on your needs. The framework speaks WSGI, and works great with [Python 2.6 and 2.7, PyPy, and Python 3.3/3.4][ci]. There's no tight coupling with any async framework, leaving you free to mix-and-match what you need. **Flexible.** Falcon can be deployed in a variety of ways, depending on your needs. The framework speaks WSGI, and works great with [CPython 2.6/2.7, PyPy, Jython 2.7, and CPython 3.3/3.4][ci]. There's no tight coupling with any async or database framework, leaving you free to mix-and-match what you need.
[bench]: http://falconframework.org/#Metrics [bench]: http://falconframework.org/#Metrics
[ci]: https://travis-ci.org/falconry/falcon [ci]: https://travis-ci.org/falconry/falcon
@@ -34,7 +34,7 @@ Falcon is a [high-performance Python framework][home] for building cloud APIs. I
* Idiomatic HTTP error responses via a handy exception base class * Idiomatic HTTP error responses via a handy exception base class
* DRY request processing using global, resource, and method hooks * DRY request processing using global, resource, and method hooks
* Snappy unit testing through WSGI helpers and mocks * Snappy unit testing through WSGI helpers and mocks
* Python 2.6, Python 2.7, PyPy and Python 3.3/3.4 support * CPython 2.6/2.7, PyPy, Jython 2.7, and CPython 3.3/3.4 support
* 20% speed boost when Cython is available * 20% speed boost when Cython is available
### Install ### ### Install ###

View File

@@ -33,10 +33,10 @@ being the only dependencies outside the standard library. We work to keep
the code lean, making Falcon easier to test, optimize, and deploy. the code lean, making Falcon easier to test, optimize, and deploy.
**Flexible.** Falcon can be deployed in a variety of ways, depending on **Flexible.** Falcon can be deployed in a variety of ways, depending on
your needs. The framework speaks WSGI, and works great with `Python 2.6 your needs. The framework speaks WSGI, and works great with `CPython 2.6/2.7,
and 2.7, PyPy, and Python 3.3/3.4 <https://travis-ci.org/falconry/falcon>`__. PyPy, Jython 2.7, and CPython 3.3/3.4 <https://travis-ci.org/falconry/falcon>`__.
There's no tight coupling with any async framework, leaving you free to There's no tight coupling with any async or database framework, leaving you
mix-and-match what you need. free to mix-and-match what you need.
Features Features
~~~~~~~~ ~~~~~~~~
@@ -49,7 +49,7 @@ Features
- Idiomatic HTTP error responses via a handy exception base class - Idiomatic HTTP error responses via a handy exception base class
- DRY request processing using global, resource, and method hooks - DRY request processing using global, resource, and method hooks
- Snappy unit testing through WSGI helpers and mocks - Snappy unit testing through WSGI helpers and mocks
- Python 2.6, Python 2.7, PyPy and Python 3.3/3.4 support - CPython 2.6/2.7, PyPy, Jython 2.7, and CPython 3.3/3.4 support
- 20% speed boost when Cython is available - 20% speed boost when Cython is available
Install Install