nephics /
tornado-couchdb
A Python module providing blocking and non-blocking (asynchronous) clients to access CouchDB using Tornado's httpclient. The source code is released as free software under the MIT license.
Loading repository data…
tornadoweb / repository
Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.
.. image:: docs/tornado.png?raw=true :alt: Tornado Web :align: center
Tornado <http://www.tornadoweb.org>_ is a Python web framework and
asynchronous networking library, originally developed at FriendFeed <http://friendfeed.com>. By using non-blocking network I/O, Tornado
can scale to tens of thousands of open connections, making it ideal for
long polling <http://en.wikipedia.org/wiki/Push_technology#Long_Polling>,
WebSockets <http://en.wikipedia.org/wiki/WebSocket>_, and other
applications that require a long-lived connection to each user.
Here is a simple "Hello, world" example web app for Tornado:
.. code-block:: python
import asyncio
import tornado
class MainHandler(tornado.web.RequestHandler):
def get(self):
self.write("Hello, world")
def make_app():
return tornado.web.Application([
(r"/", MainHandler),
])
async def main():
app = make_app()
app.listen(8888)
await asyncio.Event().wait()
if __name__ == "__main__":
asyncio.run(main())
This example does not use any of Tornado's asynchronous features; for
that see this simple chat room <https://github.com/tornadoweb/tornado/tree/stable/demos/chat>_.
Documentation and links to additional resources are available at https://www.tornadoweb.org
Selected from shared topics, language and repository description—not editorial ratings.
nephics /
A Python module providing blocking and non-blocking (asynchronous) clients to access CouchDB using Tornado's httpclient. The source code is released as free software under the MIT license.
junneyang /
[ !deprecated ]a general benchmark test tool depends on tornado's feature of high-performance framework based on epoll module,asynchronous httpclient,multi-process,and the python plotting package matplotlib,numpy for matlab 2D graphics.http protocol of get and post is supported current version,the project is still in development for the extend of gernal protocol,please pay attention to continuous update follwed-up.
lukyuxuan0928 /
Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.