Skip to main content

A tiny WSGI web framework

Project description

Join the chat at https://gitter.im/mozillazg/bustard

Build Coverage PyPI version

A tiny WSGI web framework.

features

  • router

  • orm

  • request and response

  • cookies and session

  • template engine

  • wsgi server

install

pip install bustard
pip install psycopg2      # if you need orm feature

Getting Started

from bustard.app import Bustard

app = Bustard()


@app.route('/')
def helloword(request):
    return 'hello world'

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

Just save it as hello.py and run it

$ python hello.py
WSGIServer: Serving HTTP on ('127.0.0.1', 5000) ...

Now visit http://localhost:5000, and you should see hello world.

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

bustard-0.1.6.tar.gz (21.3 kB view hashes)

Uploaded Source

Built Distribution

bustard-0.1.6-py3-none-any.whl (26.9 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