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.7.2.tar.gz
(22.3 kB
view details)
File details
Details for the file karlooper-0.7.2.tar.gz
.
File metadata
- Download URL: karlooper-0.7.2.tar.gz
- Upload date:
- Size: 22.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1028c260ee4e76074484ac41ce7323088a5384d3a80b5f6a3fa3cfc1cae9f41c |
|
MD5 | 81b3dcc502486e9d37be708ce78d7158 |
|
BLAKE2b-256 | 711e5ad553011154e2c75025bd62ec153ed6c10b130857e4a44e4e6ec33d92be |