Adds Tryton support to Flask application
Project Description
Adds Tryton support to Flask application.
By default transactions are readonly except for PUT, POST, DELETE and PATCH
request methods.
It provides also 2 routing converters record
and records
.
Nutshell
>>> from flask import Flask >>> from flask_tryton import Tryton >>> app = Flask(__name__) >>> app.config['TRYTON_DATABASE'] = 'test' >>> tryton = Tryton(app) >>> User = tryton.pool.get('res.user') >>> @tryton.default_context ... def default_context(): ... return User.get_preferences(context_only=True) >>> @app.route('/') ... @tryton.transaction() ... def hello(): ... user, = User.search([('login', '=', 'admin')]) ... return '%s, Hello World!' % user.name >>> @app.route('/user/<record("res.user"):user>') ... @tryton.transaction() ... def user(user): ... return user.name >>> @app.route('/users/<records("res.user"):users>') ... @tryton.transaction() ... def users(users): ... return ', '.join(u.name for u in users) >>> app.run()
There are three configuration options available:
TRYTON_DATABASE
: the Tryton’s database to connect.TRYTON_USER
: the Tryton user id to use, by default0
(akaroot
).TRYTON_CONFIG
: the optional path to the Tryton’s configuration.
To report issues please visit the flask_tryton bugtracker.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size & hash SHA256 hash help | File type | Python version | Upload date |
---|---|---|---|
flask_tryton-0.7-py2-none-any.whl (5.8 kB) Copy SHA256 hash SHA256 | Wheel | 2.7 | Jan 30, 2018 |
flask_tryton-0.7-py3-none-any.whl (5.8 kB) Copy SHA256 hash SHA256 | Wheel | 3.5 | Jan 30, 2018 |
flask_tryton-0.7.tar.gz (17.4 kB) Copy SHA256 hash SHA256 | Source | None | Jan 30, 2018 |