Rename the "doc" folder to "docs" to be consistent with the tox env name. RTD also seems to expect "docs" as its first choice, even though it will discover "doc" as well.
22 lines
303 B
ReStructuredText
22 lines
303 B
ReStructuredText
.. _api:
|
|
|
|
API Class
|
|
=========
|
|
|
|
Falcon's API class is a WSGI "application" that you can host with any
|
|
standard-compliant WSGI server.
|
|
|
|
.. code:: python
|
|
|
|
import falcon
|
|
|
|
api = application = falcon.API()
|
|
|
|
.. autoclass:: falcon.API
|
|
:members:
|
|
|
|
.. autoclass:: falcon.RequestOptions
|
|
:members:
|
|
|
|
|