Skip to main content

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


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)

Uploaded Source

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

Hashes for karlooper-0.7.2.tar.gz
Algorithm Hash digest
SHA256 1028c260ee4e76074484ac41ce7323088a5384d3a80b5f6a3fa3cfc1cae9f41c
MD5 81b3dcc502486e9d37be708ce78d7158
BLAKE2b-256 711e5ad553011154e2c75025bd62ec153ed6c10b130857e4a44e4e6ec33d92be

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page