Skip to main content

Simple Object Oriented layer for Flask.

Project description

Perfume aims at making Flask-apps more Object-Oriented friendly by providing a base class to create them.

It’s BSD licensed.

Usage: - inherit from Perfume - decorate your methods with route(path)

Perfume is Easy

from perfume import Perfume, route

class Hello(Perfume):

    @route('/')
    def hello(self):
        return "Hello World !"

if __name__ == "__main__":
    Hello().run()

And Easy to Setup

$ pip install Perfume
$ python hello.py
 * Running on http://localhost:5000/

Project details


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