Skip to content
This repository has been archived by the owner on Dec 28, 2021. It is now read-only.

dahlia/plastic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Plastic

Build Status

Plastic is a Python web framework built on top of Werkzeug.

from plastic.app import BaseApp

App = BaseApp.clone()

@App.route('/')
def hello(request):
    return 'Hello, world!'

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

Run:

$ python hello.py
 * Running on http://127.0.0.1:5555/
 * Restarting with reloader

About

Plastic is a Python web framework built on top of Werkzeug.

Resources

License

Stars

Watchers

Forks

Languages