Merge pull request #364 from channelcat/fix-rtd-build
Fix readthedocs build
This commit is contained in:
commit
9d6b379999
|
@ -1,4 +1,4 @@
|
||||||
.. include:: ../README.rst
|
.. include:: sanic/index.rst
|
||||||
|
|
||||||
Guides
|
Guides
|
||||||
======
|
======
|
||||||
|
@ -22,7 +22,6 @@ Guides
|
||||||
sanic/deploying
|
sanic/deploying
|
||||||
sanic/extensions
|
sanic/extensions
|
||||||
sanic/contributing
|
sanic/contributing
|
||||||
getting_started
|
|
||||||
|
|
||||||
|
|
||||||
Module Documentation
|
Module Documentation
|
||||||
|
|
25
docs/sanic/index.rst
Normal file
25
docs/sanic/index.rst
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
Sanic
|
||||||
|
=================================
|
||||||
|
|
||||||
|
Sanic is a Flask-like Python 3.5+ web server that's written to go fast. It's based on the work done by the amazing folks at magicstack, and was inspired by `this article <https://magic.io/blog/uvloop-blazing-fast-python-networking/>`_.
|
||||||
|
|
||||||
|
On top of being Flask-like, Sanic supports async request handlers. This means you can use the new shiny async/await syntax from Python 3.5, making your code non-blocking and speedy.
|
||||||
|
|
||||||
|
Sanic is developed `on GitHub <https://github.com/channelcat/sanic/>`_. Contributions are welcome!
|
||||||
|
|
||||||
|
Sanic aspires to be simple:
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
.. code:: python
|
||||||
|
|
||||||
|
from sanic import Sanic
|
||||||
|
from sanic.response import json
|
||||||
|
|
||||||
|
app = Sanic()
|
||||||
|
|
||||||
|
@app.route("/")
|
||||||
|
async def test(request):
|
||||||
|
return json({"hello": "world"})
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
app.run(host="0.0.0.0", port=8000)
|
18
environment.yml
Normal file
18
environment.yml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
name: py35
|
||||||
|
dependencies:
|
||||||
|
- openssl=1.0.2g=0
|
||||||
|
- pip=8.1.1=py35_0
|
||||||
|
- python=3.5.1=0
|
||||||
|
- readline=6.2=2
|
||||||
|
- setuptools=20.3=py35_0
|
||||||
|
- sqlite=3.9.2=0
|
||||||
|
- tk=8.5.18=0
|
||||||
|
- wheel=0.29.0=py35_0
|
||||||
|
- xz=5.0.5=1
|
||||||
|
- zlib=1.2.8=0
|
||||||
|
- pip:
|
||||||
|
- uvloop>=0.5.3
|
||||||
|
- httptools>=0.0.9
|
||||||
|
- ujson>=1.35
|
||||||
|
- aiofiles>=0.3.0
|
||||||
|
- https://github.com/channelcat/docutils-fork/zipball/master
|
|
@ -1,2 +0,0 @@
|
||||||
sphinx
|
|
||||||
sphinx_rtd_theme
|
|
Loading…
Reference in New Issue
Block a user