Falcon
The no-magic web API and microservices framework for Python developers, with a focus on reliability and performance at scale.
Install / Use
/learn @falconry/FalconREADME
.. image:: https://raw.githubusercontent.com/falconry/falcon/master/logo/banner.jpg :align: center :alt: Falcon logo :target: https://falconframework.org/ :width: 100 %
|Build status| |Docs| |codecov.io| |PyPI package| |Python versions|
The Falcon Web Framework
Falcon <https://falconframework.org>__ is a minimalist ASGI/WSGI framework for
building mission-critical REST APIs and microservices, with a focus on
reliability, correctness, and performance at scale.
When it comes to building HTTP APIs, other frameworks weigh you down with tons of dependencies and unnecessary abstractions. Falcon cuts to the chase with a clean design that embraces HTTP and the REST architectural style.
Falcon apps work with any WSGI <https://www.python.org/dev/peps/pep-3333/>_
or ASGI <https://asgi.readthedocs.io/en/latest/>_ server, and run like a
champ under CPython 3.9+ and PyPy 3.9+.
Quick Links
Read the docs <https://falcon.readthedocs.io/en/stable>_ (FAQ <https://falcon.readthedocs.io/en/stable/user/faq.html>_ -getting help <https://falcon.readthedocs.io/en/stable/community/help.html>_ -reference <https://falcon.readthedocs.io/en/stable/api/index.html>_)Falcon add-ons and complementary packages <https://github.com/falconry/falcon/wiki>_Falcon articles, talks and podcasts <https://github.com/falconry/falcon/wiki/Articles,-Talks-and-Podcasts>_falconry/user for Falcon users <https://gitter.im/falconry/user>_ @ Gitterfalconry/dev for Falcon contributors <https://gitter.im/falconry/dev>_ @ Gitter
What People are Saying
"Falcon is rock solid and it's fast."
"We have been using Falcon as a replacement for [another framework] and we simply love the performance (three times faster) and code base size (easily half of our [original] code)."
"I'm loving #falconframework! Super clean and simple, I finally have the speed and flexibility I need!"
"Falcon looks great so far. I hacked together a quick test for a tiny server of mine and was ~40% faster with only 20 minutes of work."
"I feel like I'm just talking HTTP at last, with nothing in the middle. Falcon seems like the requests of backend."
"The source code for Falcon is so good, I almost prefer it to documentation. It basically can't be wrong."
"What other framework has integrated support for 786 TRY IT NOW ?"
Features
Falcon tries to do as little as possible while remaining highly effective.
- ASGI, WSGI, and WebSocket support
- Native
asynciosupport - No reliance on magic globals for routing and state management
- Stable interfaces with an emphasis on backwards-compatibility
- Simple API modeling through centralized RESTful routing
- Highly-optimized, extensible code base
- Easy access to headers and bodies through request and response classes
- DRY request processing via middleware components and hooks
- Strict adherence to RFCs
- Idiomatic HTTP error responses
- Straightforward exception handling
- Snappy testing with WSGI/ASGI helpers and mocks
- CPython 3.9+ and PyPy 3.9+ support
.. Patron list starts here. For Python package, we substitute this section with: Support Falcon Development
A Big Thank You to Our Patrons!
|Backer:TestMuAI| |Backer:GovCert| |Backer:Sentry|
Has Falcon helped you make an awesome app? Show your support today with a one-time donation or by becoming a patron. Supporters get cool gear, an opportunity to promote their brand to Python developers, and prioritized support.
Learn how to support Falcon development <https://falconframework.org/#sectionSupportFalconDevelopment>_
Thanks!
How is Falcon Different?
Perfection is finally attained not when there is no longer anything
to add, but when there is no longer anything to take away.
*- Antoine de Saint-Exupéry*
We designed Falcon to support the demanding needs of large-scale microservices and responsive app backends. Falcon complements more general Python web frameworks by providing bare-metal performance, reliability, and flexibility wherever you need it.
Reliable. We go to great lengths to avoid introducing breaking changes, and
when we do they are fully documented and only introduced (in the spirit of
SemVer <http://semver.org/>_) with a major version increment. The code is
rigorously tested with numerous inputs and we require 100% coverage at all
times. Falcon has no dependencies outside the standard library, helping
minimize your app's attack surface while avoiding transitive bugs and breaking
changes.
Debuggable. Falcon eschews magic. It's easy to tell which inputs lead to which outputs. Unhandled exceptions are never encapsulated or masked. Potentially surprising behaviors, such as automatic request body parsing, are well-documented and disabled by default. Finally, when it comes to the framework itself, we take care to keep logic paths simple and understandable. All this makes it easier to reason about the code and to debug edge cases in large-scale deployments.
Fast. Same hardware, more requests. Falcon turns around requests
significantly faster than other popular Python frameworks like Django and
Flask. For an extra speed boost, Falcon compiles itself with Cython when
available, and also works well with PyPy <https://pypy.org>_. Considering a
move to another programming language? Benchmark with Falcon+PyPy first!
Flexible. Falcon leaves a lot of decisions and implementation details to
you, the API developer. This gives you a lot of freedom to customize and tune
your implementation. It also helps you understand your apps at a deeper level,
making them easier to tune, debug, and refactor over the long run. Falcon's
minimalist design provides space for Python community members to independently
innovate on Falcon add-ons and complementary packages <https://github.com/falconry/falcon/wiki>_.
Who's Using Falcon?
Falcon is used around the world by a growing number of organizations, including:
- 7ideas
- Cronitor
- EMC
- Hurricane Electric
- Leadpages
- OpenStack
- Rackspace
- Shiftgig
- tempfil.es
- Opera Software
If you are using the Falcon framework for a community or commercial
project, please consider adding your information to our wiki under
Who's Using Falcon? <https://github.com/falconry/falcon/wiki/Who's-using-Falcon%3F>_
Community
A number of Falcon add-ons, templates, and complementary packages are
available for use in your projects. We've listed several of these on the
Falcon wiki <https://github.com/falconry/falcon/wiki>_ as a starting
point, but you may also wish to search PyPI for additional resources.
The Falconry community on Gitter is a great place to ask questions and
share your ideas. You can find us in falconry/user <https://gitter.im/falconry/user>. We also have a
falconry/dev <https://gitter.im/falconry/dev> room for discussing
the design and development of the framework itself.
Per our
Code of Conduct <https://github.com/falconry/falcon/blob/master/CODEOFCONDUCT.md>_,
we expect everyone who participates in community discussions to act
professionally, and lead by example in encouraging constructive
discussions. Each individual in the community is responsible for
creating a positive, constructive, and productive culture.
Installation
PyPy ^^^^
PyPy <http://pypy.org/>__ is the fastest way to run your Falcon app.
PyPy3.9+ is supported as of PyPy v7.3.10+.
.. code:: bash
$ pip install falcon
Or, to install the latest beta or release candidate, if any:
.. code:: bash
$ pip install --pre falcon
CPython ^^^^^^^
Falcon also fully supports
CPython <https://www.python.org/downloads/>__ 3.9+.
The latest stable version of Falcon can be installed directly from PyPI:
.. code:: bash
$ pip install falcon
Or, to install the latest beta or release candidate, if any:
.. code:: bash
$ pip install --pre falcon
In order to provide an extra speed boost, Falcon automatically compiles itself
with Cython <https://cython.org/>__ under any
PEP 517 <https://peps.python.org/pep-0517/>__-compliant installer.
For your convenience, wheels containing pre-compiled binaries are available
from PyPI for the majority of common platforms. Even if a binary build for your
platform of choice is not available, pip will pick a pure-Python wheel.
You can also cythonize Falcon for your environment; see our
Installation docs <https://falcon.readthedocs.io/en/stable/user/install.html>__
for more information on this and other advanced options.
Dependencies ^^^^^^^^^^^^
Falcon does not require the installation of any other packages.
WSGI Server
Falcon speaks WSGI <https://www.python.org/dev/peps/pep-3333/>_ (or
ASGI <https://asgi.readthedocs.io/en/latest/>_; see also below). In order to
serve a Falcon app, you will need a WSGI server. Gunicorn and uWSGI are some of
the more popular ones out there, but anything that can load a WSGI app will do.
.. code:: bash
$ pip install [gunicorn|uwsgi]
ASGI Server
In order to serve a Falcon ASGI app, you will need an ASGI server. Uvicorn is a popular choice:
.. code:: bash
$ pip install uvicorn
Source Code
Falcon lives on GitHub <https://github.com/falconry/falcon>_, making the
code easy to browse, download, fork, etc. Pull requests are always welcome! Also,
please remember to star the project if it makes you happy. :)
Once you have cloned the repo or downloaded a tarball from GitHub, you can install Falcon like this:
.. code:: bash
$ cd falcon
$ pip install .
Or, if you want to edit the code, first fork the main repo, clone the fork to your desktop, and then run the following to install it using symbolic linking, so that when you change your code, the changes will be automagically available to your app without having to reinstall the p
Related Skills
bluebubbles
335.4kUse when you need to send or manage iMessages via BlueBubbles (recommended iMessage integration). Calls go through the generic message tool with channel="bluebubbles".
gh-issues
335.4kFetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments. Usage: /gh-issues [owner/repo] [--label bug] [--limit 5] [--milestone v1.0] [--assignee @me] [--fork user/repo] [--watch] [--interval 5] [--reviews-only] [--cron] [--dry-run] [--model glm-5] [--notify-channel -1002381931352]
healthcheck
335.4kHost security hardening and risk-tolerance configuration for OpenClaw deployments
node-connect
335.4kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
