__init__.py 965 B

1234567891011121314151617181920212223242526272829303132333435
  1. r"""
  2. The ``platform`` module provides support for different web frameworks.
  3. See also: :ref:`Integration with Web Framework <integration_web_framework>` section of user manual.
  4. Tornado support
  5. -----------------
  6. .. autofunction:: pywebio.platform.tornado.start_server
  7. .. autofunction:: pywebio.platform.tornado.webio_handler
  8. Flask support
  9. -----------------
  10. .. autofunction:: pywebio.platform.flask.webio_view
  11. .. autofunction:: pywebio.platform.flask.start_server
  12. Django support
  13. -----------------
  14. .. autofunction:: pywebio.platform.django.webio_view
  15. .. autofunction:: pywebio.platform.django.start_server
  16. aiohttp support
  17. -----------------
  18. .. autofunction:: pywebio.platform.aiohttp.webio_handler
  19. .. autofunction:: pywebio.platform.aiohttp.start_server
  20. Other
  21. --------------
  22. .. autofunction:: pywebio.platform.seo
  23. .. autofunction:: pywebio.platform.run_event_loop
  24. """
  25. from .httpbased import run_event_loop
  26. from .tornado import start_server
  27. from .utils import seo