karloop plus micro-framework
Project description
Karlooper is a Python web micro-framework and asynchronous networking library, originally developed at Coders. By using non-blocking network I/O, Karlooper can scale to tens of thousands of open connections, for more click
Hello, World!
Here is a simple “Hello, World!” example web app for Karlooper:
# -*-coding:utf-8-*-
from karlooper.web.application import Application
from karlooper.web.request import Request
__author__ = 'karlvorndoenitz@gmail.com'
class HelloHandler(Request):
def get(self):
return self.http_response("Hello, World!")
handlers = {
"/hello": HelloHandler
}
if __name__ == '__main__':
application = Application(handlers, port=8000)
application.run()
Documentation
Documentation and links to additional resources are available at https://github.com/karldoenitz/karlooper
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
karlooper-0.5.3.tar.gz
(17.3 kB
view hashes)