Skip to main content

A very simple web application framework.

Project description

A very simple web application framework for python3.5. This library has no dependencies other than the Python Standard Libraries.

  • Routing

  • Template

  • Development Server

Getting Started

Installation

$ pip install kobin

Usage

from kobin import Kobin

app = Kobin()

@app.route('^/$')
def index():
    return "Hello Kobin!"


@app.route('^/user/(?P<name>\w+)/$')
def hello(name):
    return "Hello {}".format(name)

if __name__ == '__main__':
    app.run()

Requirements

  • Supported python version is 3.5 only.

License

This software is licensed under the MIT License.

Resources

CHANGES

0.0.2 (2015-12-03)

  • Publish on PyPI.

0.0.0 (2015-09-14)

  • Create this project.

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

kobin-0.0.2.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

kobin-0.0.2-py3-none-any.whl (5.2 kB view hashes)

Uploaded Python 3

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