Appier on Steroids
Appier Extras is a set of extra elements for Appier Framework. Amongst other features, it brings an admin interface that is automatically generated by inspecting the application models, allowing the developer to easily have a way to manage the data and processes for an instance.
Here's how to launch a minimal app with Appier Extras:
import appier
import appier_extras
class HelloApp(appier.WebApp):
def __init__(self):
appier.WebApp.__init__(self, parts=(appier_extras.AdminPart,))
HelloApp().serve()
Running it is just as simple:
pip install appier appier_extras
python hello.py
You can now go to http://localhost:8080/admin and login with root/root.
Appier Extras is currently licensed under the Apache License, Version 2.0.