Skip to main content

A light-weight python web framework, shameless copy from bottle.

Project description

https://img.shields.io/pypi/v/lweb.svg

Lweb is a light-weight python wsgi framework, shameless copy from bottle. No builtin template engine. No builtin server, need thirdpart wsgi driver.

Installation

The last stable release is available on PyPI and can be installed with pip:

$ pip install lweb

Example

import lweb

def r_index():
    return "hello!"

urls = [
    ('/', r_index),
]

app = lweb.Application()
app.add_urls(urls)

if __name__ == '__main__':
    import bjoern
    print 'Wsgi server start!'
    bjoern.run(app, '0.0.0.0', 7000)

For more examples, see example.py and example_project

Features

  • Only pure WSGI app is provided

  • Django style url router

  • Concurrent safe

  • Gevent friendly

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

lweb-0.1.10.tar.gz (21.9 kB view hashes)

Uploaded Source

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