No project description provided
Project description
Bottle-Tools
A set of tools to make things easier to work with when using Bottle. Full Documentation
Autofill APIs with typed information
import bottle_tools as bt bt.common_kwargs.update({"User": UserTable}) @app.post('/calculate') @bt.fill_args(coerce_types=True) def login(usrname: str, pwd: str, User): user = User.get_or_404(usrname=usrname) if not user.password_is_correct(pwd): raise HttpNotFound() return 'ok'
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.