1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
|
.. module:: sphinxcontrib.httpdomain
:mod:`sphinxcontrib.httpdomain` --- Sphinx domain for documenting HTTP APIs
===========================================================================
.. image:: https://badge.fury.io/py/sphinxcontrib-httpdomain.svg
:target: https://pypi.org/project/sphinxcontrib-httpdomain/
:alt: Latest PyPI version
.. image:: https://readthedocs.org/projects/sphinxcontrib-httpdomain/badge/
:target: https://sphinxcontrib-httpdomain.readthedocs.io/
:alt: Documentation Status
.. image:: https://travis-ci.org/sphinx-contrib/httpdomain.svg?branch=main
:alt: Build Status
:target: https://travis-ci.org/sphinx-contrib/httpdomain
This contrib extension, :mod:`sphinxcontrib.httpdomain`, provides a Sphinx
domain for describing HTTP APIs.
.. seealso::
We might support reflection for web framework your webapp depends on.
See the following :mod:`sphinxcontrib.autohttp` modules:
Module :mod:`sphinxcontrib.autohttp.flask`
Reflection for Flask_ webapps.
Module :mod:`sphinxcontrib.autohttp.flaskqref`
Quick reference rendering with :mod:`sphinxcontrib.autohttp.flask`
Module :mod:`sphinxcontrib.autohttp.bottle`
Reflection for Bottle_ webapps.
Module :mod:`sphinxcontrib.autohttp.tornado`
Reflection for Tornado_ webapps.
In order to use it, add :mod:`sphinxcontrib.httpdomain` into
:data:`extensions` list of your Sphinx configuration file (:file:`conf.py`)::
extensions = ['sphinxcontrib.httpdomain']
Additional Configuration
------------------------
``http_headers_ignore_prefixes``
List of HTTP header prefixes which should be ignored in strict mode::
http_headers_ignore_prefixes = ['X-']
.. versionadded:: 1.4.0
.. deprecated:: 1.5.0
strict mode no longer warns on non-standard header prefixes.
``http_index_ignore_prefixes``
Strips the leading segments from the endpoint paths by given list
of prefixes::
http_index_ignore_prefixes = ['/internal', '/_proxy']
.. versionadded:: 1.3.0
``http_index_shortname``
Short name of the index which will appear on every page::
http_index_shortname = 'api'
.. versionadded:: 1.3.0
``http_index_localname``
Full index name which is used on index page::
http_index_localname = "My Project HTTP API"
.. versionadded:: 1.3.0
``http_strict_mode``
When ``True`` (default) emits build errors when status codes, methods and
headers are looks non-standard::
http_strict_mode = True
.. versionadded:: 1.4.0
Basic usage
-----------
There are several provided :ref:`directives <directives>` that describe
HTTP resources.
.. sourcecode:: rst
.. http:get:: /users/(int:user_id)/posts/(tag)
The posts tagged with `tag` that the user (`user_id`) wrote.
**Example request**:
.. sourcecode:: http
GET /users/123/posts/web HTTP/1.1
Host: example.com
Accept: application/json, text/javascript
**Example response**:
.. sourcecode:: http
HTTP/1.1 200 OK
Vary: Accept
Content-Type: text/javascript
[
{
"post_id": 12345,
"author_id": 123,
"tags": ["server", "web"],
"subject": "I tried Nginx"
},
{
"post_id": 12346,
"author_id": 123,
"tags": ["html5", "standards", "web"],
"subject": "We go to HTML 5"
}
]
:query sort: one of ``hit``, ``created-at``
:query offset: offset number. default is 0
:query limit: limit number. default is 30
:reqheader Accept: the response content type depends on
:mailheader:`Accept` header
:reqheader Authorization: optional OAuth token to authenticate
:resheader Content-Type: this depends on :mailheader:`Accept`
header of request
:statuscode 200: no error
:statuscode 404: there's no user
will be rendered as:
.. http:get:: /users/(int:user_id)/posts/(tag)
The posts tagged with `tag` that the user (`user_id`) wrote.
**Example request**:
.. sourcecode:: http
GET /users/123/posts/web HTTP/1.1
Host: example.com
Accept: application/json, text/javascript
**Example response**:
.. sourcecode:: http
HTTP/1.1 200 OK
Vary: Accept
Content-Type: text/javascript
[
{
"post_id": 12345,
"author_id": 123,
"tags": ["server", "web"],
"subject": "I tried Nginx"
},
{
"post_id": 12346,
"author_id": 123,
"tags": ["html5", "standards", "web"],
"subject": "We go to HTML 5"
}
]
:query sort: one of ``hit``, ``created-at``
:query offset: offset number. default is 0
:query limit: limit number. default is 30
:reqheader Accept: the response content type depends on
:mailheader:`Accept` header
:reqheader Authorization: optional OAuth token to authenticate
:resheader Content-Type: this depends on :mailheader:`Accept`
header of request
:statuscode 200: no error
:statuscode 404: there's no user
Of course, :ref:`roles <roles>` that refer the directives as well.
For example:
.. sourcecode:: rst
:http:get:`/users/(int:user_id)/posts/(tag)`
will render like:
:http:get:`/users/(int:user_id)/posts/(tag)`
If you want to reference the generated routing table, you can use:
.. sourcecode:: rst
:ref:`routingtable`
.. versionadded:: 1.8.0
.. _directives:
Directives
----------
.. rst:directive:: .. http:options:: path
Describes a HTTP resource's :http:method:`OPTIONS` method.
It can also be referred by :rst:role:`http:options` role.
.. rst:directive:: .. http:head:: path
Describes a HTTP resource's :http:method:`HEAD` method.
It can also be referred by :rst:role:`http:head` role.
.. rst:directive:: .. http:post:: path
Describes a HTTP resource's :http:method:`POST` method.
It can also be referred by :rst:role:`http:post` role.
.. rst:directive:: .. http:get:: path
Describes a HTTP resource's :http:method:`GET` method.
It can also be referred by :rst:role:`http:get` role.
.. rst:directive:: .. http:put:: path
Describes a HTTP resource's :http:method:`PUT` method.
It can also be referred by :rst:role:`http:put` role.
.. rst:directive:: .. http:patch:: path
Describes a HTTP resource's :http:method:`PATCH` method.
It can also be referred by :rst:role:`http:patch` role.
.. rst:directive:: .. http:delete:: path
Describes a HTTP resource's :http:method:`DELETE` method.
It can also be referred by :rst:role:`http:delete` role.
.. rst:directive:: .. http:trace:: path
Describes a HTTP resource's :http:method:`TRACE` method.
It can also be referred by :rst:role:`http:trace` role.
.. rst:directive:: .. http:copy:: path
Describes a HTTP resource's :http:method:`COPY` method.
It can also be referred by :rst:role:`http:copy` role.
.. versionadded:: 1.3.0
.. rst:directive:: .. http:any:: path
Describes a HTTP resource's which accepts requests with
:http:method:`ANY` method. Useful for cases when requested resource
proxying the request to some other location keeping original request
context. It can also be referred by :rst:role:`http:any` role.
.. versionadded:: 1.3.0
Options
```````
.. versionadded:: 1.3.0
Additionally, you may specify custom options to the directives:
``noindex``
Excludes specific directive from HTTP routing table.
.. sourcecode:: rst
.. http:get:: /users/(int:user_id)/posts/(tag)
:noindex:
``deprecated``
Marks the method as deprecated in HTTP routing table.
.. sourcecode:: rst
.. http:get:: /users/(int:user_id)/tagged_posts
:deprecated:
``synopsis``
Adds short description for HTTP routing table.
.. sourcecode:: rst
.. http:get:: /users/(int:user_id)/posts/(tag)
:synopsis: Returns posts by the specified tag for the user
.. _resource-fields:
Resource Fields
---------------
Inside HTTP resource description directives like :rst:dir:`get`,
reStructuredText field lists with these fields are recognized and formatted
nicely:
``param``, ``parameter``, ``arg``, ``argument``
Description of URL parameter.
``queryparameter``, ``queryparam``, ``qparam``, ``query``
Description of parameter passed by request query string.
It optionally can be typed, all the query parameters will have obviously
string types though. But it's useful if there's conventions for it.
.. versionchanged:: 1.1.9
It can be typed e.g.:
.. sourcecode:: rst
:query string title: the post title
:query string body: the post body
:query boolean sticky: whether it's sticky or not
``formparameter``, ``formparam``, ``fparam``, ``form``
Description of parameter passed by request content body, encoded in
:mimetype:`application/x-www-form-urlencoded` or
:mimetype:`multipart/form-data`.
``jsonparameter``, ``jsonparam``, ``json``
Description of a parameter passed by request content body, encoded in
:mimetype:`application/json`.
.. deprecated:: 1.3.0
Use ``reqjsonobj``/``reqjson``/``<jsonobj``/``<json`` and
``reqjsonarr``/``<jsonarr`` instead.
.. versionadded:: 1.1.8
.. versionchanged:: 1.1.9
It can be typed e.g.:
.. sourcecode:: rst
:jsonparam string title: the post title
:jsonparam string body: the post body
:jsonparam boolean sticky: whether it's sticky or not
``reqjsonobj``, ``reqjson``, ``<jsonobj``, ``<json``
Description of a single field of JSON object passed by request body,
encoded in :mimetype:`application/json`. The key difference from ``json`` is
explicitly defined use-case (request/response) of the described object.
.. sourcecode:: rst
:<json string title: the post title
:<json string body: the post body
:<json boolean sticky: whether it's sticky or not
.. versionadded:: 1.3.0
``resjsonobj``, ``resjson``, ``>jsonobj``, ``>json``
Description of a single field of JSON object returned with response body,
encoded in :mimetype:`application/json`.
.. sourcecode:: rst
:>json boolean ok: Operation status
.. versionadded:: 1.3.0
``reqjsonarr``, ``<jsonarr``
``resjsonarr``, ``>jsonarr``
Similar to ``<json`` and ``>json`` respectively, but uses for describing
objects schema inside of returned array.
Let's say, the response contains the following data:
.. sourcecode:: javascript
[{"id": "foo", "ok": true}, {"id": "bar", "error": "forbidden", "reason": "sorry"}]
Then we can describe it in the following way:
.. sourcecode:: rst
:>jsonarr boolean ok: Operation status. Not present in case of error
:>jsonarr string id: Object ID
:>jsonarr string error: Error type
:>jsonarr string reason: Error reason
.. versionadded:: 1.3.0
.. sourcecode:: rst
:>json boolean status: Operation status
``requestheader``, ``reqheader``, ``>header``
Description of request header field.
.. versionadded:: 1.1.9
``responseheader``, ``resheader``, ``<header``
Description of response header field.
.. versionadded:: 1.1.9
``statuscode``, ``status``, ``code``
Description of response status code.
For example:
.. sourcecode:: rst
.. http:post:: /posts/(int:post_id)
Replies a comment to the post.
:param post_id: post's unique id
:type post_id: int
:form email: author email address
:form body: comment body
:reqheader Accept: the response content type depends on
:mailheader:`Accept` header
:reqheader Authorization: optional OAuth token to authenticate
:resheader Content-Type: this depends on :mailheader:`Accept`
header of request
:status 302: and then redirects to :http:get:`/posts/(int:post_id)`
:status 400: when form parameters are missing
.. http:get:: /posts/(int:post_id)
Fetches the post
(...)
It will render like this:
.. http:post:: /posts/(int:post_id)
Replies a comment to the post.
:param post_id: post's unique id
:type post_id: int
:form email: author email address
:form body: comment body
:reqheader Accept: the response content type depends on
:mailheader:`Accept` header
:reqheader Authorization: optional OAuth token to authenticate
:resheader Content-Type: this depends on :mailheader:`Accept`
header of request
:status 302: and then redirects to :http:get:`/posts/(int:post_id)`
:status 400: when form parameters are missing
.. http:get:: /posts/(int:post_id)
Fetches the post
(...)
.. _roles:
Roles
-----
.. rst:role:: http:options
Refers to the :rst:dir:`http:options` directive.
.. rst:role:: http:head
Refers to the :rst:dir:`http:head` directive.
.. rst:role:: http:post
Refers to the :rst:dir:`http:post` directive.
.. rst:role:: http:get
Refers to the :rst:dir:`http:get` directive.
.. rst:role:: http:put
Refers to the :rst:dir:`http:put` directive.
.. rst:role:: http:patch
Refers to the :rst:dir:`http:patch` directive.
.. rst:role:: http:delete
Refers to the :rst:dir:`http:delete` directive.
.. rst:role:: http:trace
Refers to the :rst:dir:`http:trace` directive.
.. rst:role:: http:copy
Refers to the :rst:dir:`http:copy` directive.
.. rst:role:: http:any
Refers to the :rst:dir:`http:any` directive.
.. rst:role:: http:statuscode
A reference to a HTTP status code. The text "`code` `Status Name`" is
generated; in the HTML output, this text is a hyperlink to a web reference
of the specified status code.
For example:
.. sourcecode:: rst
- :http:statuscode:`404`
- :http:statuscode:`200 OK`
will be rendered as:
- :http:statuscode:`404`
- :http:statuscode:`200 OK`
.. versionchanged:: 1.3.0
It becomes to provide references to specification sections.
.. rst:role:: http:method
A reference to a HTTP method (also known as *verb*). In the HTML output,
this text is a hyperlink to a web reference of the specified HTTP method.
For example:
.. sourcecode:: rst
It accepts :http:method:`post` only.
It will render like this:
It accepts :http:method:`post` only.
.. rst:role:: mimetype
Exactly it doesn't belong to HTTP domain, but standard domain. It refers
to the MIME type like :mimetype:`text/html`.
.. rst:role:: mailheader
.. deprecated:: 1.3.0
Use :rst:role:`http:header` instead.
.. rst:role:: http:header
Similar to :rst:role:`mimetype` role, it doesn't belong to HTTP domain,
but standard domain. It refers to the HTTP request/response header field
like :http:header:`Content-Type`.
If the HTTP header is known, the text is a hyperlink to a web reference of
the specified header.
Known HTTP headers:
- :http:header:`Accept`
- :http:header:`Accept-Charset`
- :http:header:`Accept-Encoding`
- :http:header:`Accept-Language`
- :http:header:`Accept-Ranges`
- :http:header:`Age`
- :http:header:`Allow`
- :http:header:`Authorization`
- :http:header:`Cache-Control`
- :http:header:`Connection`
- :http:header:`Content-Encoding`
- :http:header:`Content-Language`
- :http:header:`Content-Length`
- :http:header:`Content-Location`
- :http:header:`Content-MD5`
- :http:header:`Content-Range`
- :http:header:`Content-Type`
- :http:header:`Cookie`
- :http:header:`Date`
- :http:header:`Destination`
- :http:header:`ETag`
- :http:header:`Expect`
- :http:header:`Expires`
- :http:header:`From`
- :http:header:`Host`
- :http:header:`If-Match`
- :http:header:`If-Modified-Since`
- :http:header:`If-None-Match`
- :http:header:`If-Range`
- :http:header:`If-Unmodified-Since`
- :http:header:`Last-Modified`
- :http:header:`Last-Event-ID`
- :http:header:`Link`
- :http:header:`Location`
- :http:header:`Max-Forwards`
- :http:header:`Pragma`
- :http:header:`Proxy-Authenticate`
- :http:header:`Proxy-Authorization`
- :http:header:`Range`
- :http:header:`Referer`
- :http:header:`Retry-After`
- :http:header:`Server`
- :http:header:`Set-Cookie`
- :http:header:`TE`
- :http:header:`Trailer`
- :http:header:`Transfer-Encoding`
- :http:header:`Upgrade`
- :http:header:`User-Agent`
- :http:header:`Vary`
- :http:header:`Via`
- :http:header:`WWW-Authenticate`
- :http:header:`Warning`
.. versionadded:: 1.3.0
.. versionchanged:: 1.5.0
No longer emits warnings for unrecognized headers
.. module:: sphinxcontrib.autohttp.flask
:mod:`sphinxcontrib.autohttp.flask` --- Exporting API reference from Flask app
------------------------------------------------------------------------------
.. versionadded:: 1.1
It generates RESTful HTTP API reference documentation from a Flask_
application's routing table, similar to :mod:`sphinx.ext.autodoc`.
In order to use it, add :mod:`sphinxcontrib.autohttp.flask` into
:data:`extensions` list of your Sphinx configuration (:file:`conf.py`) file::
extensions = ['sphinxcontrib.autohttp.flask']
For example:
.. sourcecode:: rst
.. autoflask:: autoflask_sampleapp:app
:undoc-static:
will be rendered as:
.. autoflask:: autoflask_sampleapp:app
:undoc-static:
.. rst:directive:: .. autoflask:: module:app
.. versionadded:: 1.1
Generates HTTP API references from a Flask application. It takes an
import name, like::
your.webapplication.module:app
Colon character (``:``) separates module path and application variable.
Latter part can be more complex::
your.webapplication.module:create_app(config='default.cfg')
It's useful when a Flask application is created from the factory function
(:func:`create_app`, in the above example).
It takes several flag options as well.
``endpoints``
Endpoints to generate a reference.
.. sourcecode:: rst
.. autoflask:: yourwebapp:app
:endpoints: user, post, friends
will document :func:`user`, :func:`post`, and :func:`friends`
view functions, and
.. sourcecode:: rst
.. autoflask:: yourwebapp:app
:endpoints:
will document all endpoints in the flask app.
For compatibility, omitting this option will produce the same effect
like above.
.. versionadded:: 1.1.8
``undoc-endpoints``
Excludes specified endpoints from generated references.
For example:
.. sourcecode:: rst
.. autoflask:: yourwebapp:app
:undoc-endpoints: admin, admin_login
will exclude :func:`admin`, :func:`admin_login` view functions.
.. note::
It is worth noting that the names of endpoints that are applied to
blueprints are prefixed with the blueprint's name (e.g.
blueprint.endpoint).
.. note::
While the `undoc-members`_ flag of :mod:`sphinx.ext.autodoc` extension
includes members without docstrings, ``undoc-endpoints`` option has
nothing to do with docstrings. It just excludes specified endpoints.
.. _undoc-members: http://www.sphinx-doc.org/en/stable/ext/autodoc.html#directive-automodule
``blueprints``
Only include specified blueprints in generated references.
.. versionadded:: 1.1.9
``undoc-blueprints``
Excludes specified blueprints from generated references.
.. versionadded:: 1.1.8
``modules``
Only include specified view modules in generated references.
For example:
.. sourcecode:: rst
.. autoflask:: yourwebapp:app
:modules: yourwebapp.views.admin
will include only views in ``yourwebapp.views.admin`` module
.. versionadded:: 1.5.0
``undoc-modules``
Excludes specified view modules from generated references.
.. versionadded:: 1.5.0
``undoc-static``
Excludes a view function that serves static files, which is included
in Flask by default.
``order``
Determines the order in which endpoints are listed. Currently only
``path`` is supported.
For example:
.. sourcecode:: rst
.. autoflask:: yourwebapp:app
:endpoints:
:order: path
will document all endpoints in the flask app, ordered by their route
paths.
.. versionadded:: 1.5.0
``groupby``
Determines the strategy to group paths. Currently only ``view`` is
supported. Specified this will group paths by their view functions.
.. versionadded:: 1.6.0
``include-empty-docstring``
View functions that don't have docstring (:attr:`__doc__`) are excluded
by default. If this flag option has given, they become included also.
.. versionadded:: 1.1.2
.. _Flask: http://flask.pocoo.org/
.. module:: sphinxcontrib.autohttp.flaskqref
:mod:`sphinxcontrib.autohttp.flaskqref` --- Quick API reference for Flask app
------------------------------------------------------------------------------
.. versionadded:: 1.5.0
This generates a quick API reference table for the route documentation
produced by :mod:`sphinxcontrib.autohttp.flask`
To use it, both :mod:`sphinxcontrib.autohttp.flask` and :mod:`sphinxcontrib.autohttp.flaskqref` need to be added into the extensions
of your configuration (:file:`conf.py`) file::
extensions = ['sphinxcontrib.autohttp.flask',
'sphinxcontrib.autohttp.flaskqref']
.. rst:directive:: .. qrefflask:: module:app
.. versionadded:: 1.5.0
Generates HTTP API references from a Flask application and places these
in a list-table with quick reference links. The usage and options are identical
to that of :mod:`sphinxcontrib.autohttp.flask` with the addition of the
``autoquickref`` option.
Basic usage
```````````
You typically would place the quick reference table near the top of your docco
and use *.. autoflask::* further down.
Unless you use the ``autoquickref`` option, routes that are to be included in
the quick reference table require the following rst comment to be added to their
doc string:
.. sourcecode:: rst
.. :quickref: [<resource>;] <short description>
<resource> is optional, if used a semi-colon separates it from <short description>
The table is grouped and sorted by <resource>.
``<resource>``
This is the resource name of the operation. The name maybe the same for a number
of operations and enables grouping these together.
``<short description>``
A brief description what the operation does.
If you use the ``autoquickref`` option, all routes must be inside blueprints.
The ``<resource>`` will be set to the blueprint's name, and the ``<short
description>`` will be set to the first line of the docstring.
For example:
.. sourcecode:: python
@app.route('/<user>')
def user(user):
"""User profile page.
.. :quickref: User; Get Profile Page
my docco here
"""
return 'hi, ' + user
The quick reference table is defined as:
.. sourcecode:: rst
.. qrefflask:: autoflask_sampleapp:app
:undoc-static:
Using the autoflask_sampleapp with *.. :quickref:* annotations,
this is rendered as:
.. qrefflask:: autoflask_sampleapp:app
:undoc-static:
.. module:: sphinxcontrib.autohttp.bottle
:mod:`sphinxcontrib.autohttp.bottle` --- Exporting API reference from Bottle app
--------------------------------------------------------------------------------
It generates RESTful HTTP API reference documentation from a Bottle_
application's routing table, similar to :mod:`sphinx.ext.autodoc`.
In order to use it, add :mod:`sphinxcontrib.autohttp.bottle` into
:data:`extensions` list of your Sphinx configuration (:file:`conf.py`) file::
extensions = ['sphinxcontrib.autohttp.bottle']
For example:
.. sourcecode:: rst
.. autobottle:: autobottle_sampleapp:app
will be rendered as:
.. autobottle:: autobottle_sampleapp:app
.. rst:directive:: .. autobottle:: module:app
Generates HTTP API references from a Bottle application. It takes an
import name, like::
your.webapplication.module:app
Colon character (``:``) separates module path and application variable.
Latter part can be more complex::
your.webapplication.module:create_app(config='default.cfg')
It's useful when a Bottle application is created from the factory function
(:func:`create_app`, in the above example).
It takes several flag options as well.
``endpoints``
Endpoints to generate a reference.
.. sourcecode:: rst
.. autobottle:: yourwebapp:app
:endpoints: user, post, friends
will document :func:`user`, :func:`post`, and :func:`friends`
view functions, and
.. sourcecode:: rst
.. autobottle:: yourwebapp:app
:endpoints:
will document all endpoints in the bottle app.
For compatibility, omitting this option will produce the same effect
like above.
``undoc-endpoints``
Excludes specified endpoints from generated references.
For example:
.. sourcecode:: rst
.. autobottle:: yourwebapp:app
:undoc-endpoints: admin, admin_login
will exclude :func:`admin`, :func:`admin_login` view functions.
.. note::
While the `undoc-members`_ flag of :mod:`sphinx.ext.autodoc` extension
includes members without docstrings, ``undoc-endpoints`` option has
nothing to do with docstrings. It just excludes specified endpoints.
.. _undoc-members: http://www.sphinx-doc.org/en/stable/ext/autodoc.html#directive-automodule
``include-empty-docstring``
View functions that don't have docstring (:attr:`__doc__`) are excluded
by default. If this flag option has given, they become included also.
.. _Bottle: http://bottlepy.org/
.. module:: sphinxcontrib.autohttp.tornado
:mod:`sphinxcontrib.autohttp.tornado` --- Exporting API reference from Tornado app
----------------------------------------------------------------------------------
It generates RESTful HTTP API reference documentation from a Tornado_
application's routing table, similar to :mod:`sphinx.ext.autodoc`.
In order to use it, add :mod:`sphinxcontrib.autohttp.tornado` into
:data:`extensions` list of your Sphinx configuration (:file:`conf.py`) file::
extensions = ['sphinxcontrib.autohttp.tornado']
For example:
.. sourcecode:: rst
.. autotornado:: autotornado_sampleapp:app
will be rendered as:
.. autotornado:: autotornado_sampleapp:app
.. rst:directive:: .. autotornado:: module:app
Generates HTTP API references from a Tornado application. It takes an
import name, like::
your.webapplication.module:app
Colon character (``:``) separates module path and application variable.
It takes several flag options as well.
``endpoints``
Endpoints to generate a reference.
.. sourcecode:: rst
.. autotornado:: yourwebapp:app
:endpoints: User.get, User.post, Friends.get
will document the :func:`get` and :func:`post` methods of the
:class:`User` :class:`RequestHandler` and the :func:`get` method
of the :class:`Friend` :class:`RequestHandler`, while
.. sourcecode:: rst
.. autotornado:: yourwebapp:app
:endpoints:
will document all endpoints in the tornado app.
For compatibility, omitting this option will produce the same effect
like above.
``undoc-endpoints``
Excludes specified endpoints from generated references.
For example:
.. sourcecode:: rst
.. autotornado:: yourwebapp:app
:undoc-endpoints: admin, admin_login
will exclude :func:`admin`, :func:`admin_login` view functions.
.. note::
While the `undoc-members`_ flag of :mod:`sphinx.ext.autodoc` extension
includes members without docstrings, ``undoc-endpoints`` option has
nothing to do with docstrings. It just excludes specified endpoints.
.. _undoc-members: http://www.sphinx-doc.org/en/stable/ext/autodoc.html#directive-automodule
``include-empty-docstring``
View functions that don't have docstring (:attr:`__doc__`) are excluded
by default. If this flag option has given, they become included also.
.. _Tornado: http://www.tornadoweb.org/
Author and License
------------------
The :mod:`sphinxcontrib.httpdomain` and :mod:`sphinxcontrib.autohttp`,
parts of :mod:`sphinxcontrib`, are written by `Hong Minhee`_
and distributed under BSD license.
The source code is maintained under `the sphinx-contrib project`__
in the `httpdomain`_ repository
.. sourcecode:: console
$ git clone https://github.com/sphinx-contrib/httpdomain.git
$ cd httpdomain
.. _Hong Minhee: https://hongminhee.org/
__ https://github.com/sphinx-contrib
.. _httpdomain: https://github.com/sphinx-contrib/httpdomain
.. include:: changelog.rst
|