Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 622 Bytes

File metadata and controls

34 lines (25 loc) · 622 Bytes

Bootstrapping asfquart

Constructing the base quart app

import asfquart

def main():
    app = asfquart.construct("name_of_app")
    return app

if __name__ == "__main__":
    app = main()
    # run a development server on port 8080
    app.runx(port=8080)

Other modules in the app will use:

import asfquart
APP = asfquart.APP

@APP.some_decorator
async def some_endpoint():
    return do_something()

See also (WIP):