Beautiful, robust CLI for Odoo
Project description
click-odoo helps you create and run beautiful and robust command line scripts for Odoo. It is based on the excellent Click library.
Useful community-managed scripts can be found in click-odoo-contrib.
Quick start
Install it in a (preferably virtual) environment where Odoo is installed:
pip install click-odoo
Assuming the following script named list-users.py.
#!/usr/bin/env click-odoo
from __future__ import print_function
for u in env['res.users'].search([]):
print(u.login, u.name)
It can be run with:
click-odoo -d dbname --log-level=error list-users.py
or:
./list-users.py -d dbname --log-level=error
The third technique to create scripts looks like this. Assuming the following script named list-users2.py.
#!/usr/bin/env python
from __future__ import print_function
import click
import click_odoo
@click.command()
@click_odoo.env_options(default_log_level='error')
@click.option('--say-hello', is_flag=True)
def main(env, say_hello):
if say_hello:
click.echo("Hello!")
for u in env['res.users'].search([]):
print(u.login, u.name)
if __name__ == '__main__':
main()
It can be run like this:
$ ./list-users2.py --help Usage: list-users2.py [OPTIONS] Options: -c, --config PATH Specify the Odoo configuration file. Other ways to provide it are with the ODOO_RC or OPENERP_SERVER environment variables, or ~/.odoorc (Odoo >= 10) or ~/.openerp_serverrc. -d, --database TEXT Specify the database name. --log-level TEXT Specify the logging level. Accepted values depend on the Odoo version, and include debug, info, warn, error. [default: error] --logfile PATH Specify the log file. --rollback Rollback the transaction even if the script does not raise an exception. Note that if the script itself commits, this option has no effect, this is why it is not named dry run. This option is implied when an interactive console is started. --say-hello --help Show this message and exit. $ ./list-users2.py --say-hello -d dbname Hello! admin Administrator ...
Supported Odoo versions
Odoo version 8, 9, 10 and 11 are supported.
An important design goal is to provide a consistent behaviour across Odoo versions.
Database transactions
By default click-odoo commits the transaction for you, unless your script raises an exception. This is so that you don’t need to put explicit commits in your scripts, which are therefore easier to compose in larger transactions.
There is a --rollback option to force a rollback.
A rollback is always performed after an interactive session. If you need to commit changes made before or during an interactive session, use env.cr.commit().
Logging
In version 8, Odoo logs to stdout by default. On other versions it is stderr. click-odoo attempts to use stderr for Odoo 8 too.
Logging is controlled by the usual Odoo logging options (--log-level, --logfile) or the Odoo configuration file.
Command line interface (click-odoo)
Usage: click-odoo [OPTIONS] [SCRIPT] [SCRIPT_ARGS]...
Execute a python script in an initialized Odoo environment. The script has
access to a 'env' global variable which is an odoo.api.Environment
initialized for the given database. If no script is provided, the script
is read from stdin or an interactive console is started if stdin appears
to be a terminal.
Options:
-c, --config PATH Specify the Odoo configuration file. Other
ways to provide it are with the ODOO_RC or
OPENERP_SERVER environment variables, or
~/.odoorc (Odoo >= 10) or
~/.openerp_serverrc.
-d, --database TEXT Specify the database name.
--log-level TEXT Specify the logging level. Accepted values
depend on the Odoo version, and include
debug, info, warn, error. [default: info]
--logfile PATH Specify the log file.
--rollback Rollback the transaction even if the script
does not raise an exception. Note that if
the script itself commits this option has no
effect. This is why it is not named dry run.
This option is implied when an interactive
console is started.
-i, --interactive / --no-interactive
Inspect interactively after running the
script.
--shell-interface TEXT Preferred shell interface for interactive
mode. Accepted values are ipython, ptpython,
bpython, python. If not provided they are
tried in this order.
--help Show this message and exit.
Most options above are the same as odoo options and behave identically. Additional Odoo options can be set in the the configuration file. Note however that most server-related options (workers, http interface etc) are ignored because no server is actually started when running a script.
An important feature of click-odoo compared to, say, odoo shell is the capability to pass arguments to scripts.
In order to avoid confusion between click-odoo options and your script options and arguments, it is recommended to separate them with --:
click-odoo -d dbname -- list-users.py -d a b ./list-users.py -d dbname -- -d a b
In both examples above, sys.argv[1:] will contain ['-d', 'a', 'b'] in the script.
API
click_odoo.env_options decorator
@click_odoo.env_options() is a decorator that is used very much like @click.option() and inserts the list of predefined click-odoo options. Instead of passing down these options to the command, it prepares an odoo Environment and passes it as a env parameter.
It is configurable with the following parameters:
- default_log_level
The default value for the -log-level option (default: ‘info’).
- with_rollback
Controls the presence of the --rollback option (default: True). This is useful for creating commands that commit and leave no possibility for rollback.
- with_database
Controls the presence of the --database option (default: True). This is useful to create scripts that have access to a pre-loaded Odoo configuration, without any database. In such case, the environment is not set (env is None).
- database_required
Controls if --database is a required option (default: True). If no database is provided, no environment is initialized (env is None).
click_odoo.odoo namespace
As a convenience click_odoo exports the odoo namespace, so from click_odoo import odoo is an alias for import odoo (>9) or import openerp as odoo (<=9).
OdooEnvironment context manager (experimental)
This package also provides an experimental OdooEnvironment context manager.
Example:
from click_odoo import OdooEnvironment
with OdooEnvironment(database='dbname') as env:
env['res.users'].search([])
Useful links
code repository: https://github.com/acsone/click-odoo
report issues at: https://github.com/acsone/click-odoo/issues
Credits
Author:
Stéphane Bidoul (ACSONE)
Inspiration has been drawn from:
odoo’s own shell command
Maintainer
This project is maintained by ACSONE SA/NV.
Changes
1.0.0b4 (2018-05-17)
minor documentation improvements
add the possibility to run script without --database (ie without env, but with a properly initialized Odoo library such as addons path)
be more resilient in case we can’t obtain a context for the user
1.0.0b3 (2018-03-22)
click_odoo now exports the odoo namespace: from click_odoo import odoo is an alias for import odoo (>9) or import openerp as odoo (<=9)
add a with_rollback option to the env_options decorator, to control the presence of the rollback option
document the env_options decorator
1.0.0b2 (2018-03-21)
commit in case of success, so users do not need to commit in their scripts, therefore making scripts easier to compose in larger transactions
add a –rollback option
interactive mode forces –rollback
1.0.0b1 (2018-03-20)
clear cache when starting environment (mostly useful for tests)
simplify and test transaction and exception handling
when leaving the env, log the exception to be sure it is visible when using --logfile
1.0.0a2 (2018-03-19)
improve transaction management: avoid some rare deadlock
avoid masking original exception in case of error during rollback
make sure scripts launched by click-odoo have __name__ == '__main__'
add --logfile option
1.0.0a1 (2018-03-19)
first alpha
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.
Source Distribution
Built Distribution
File details
Details for the file click-odoo-1.0.0b4.tar.gz
.
File metadata
- Download URL: click-odoo-1.0.0b4.tar.gz
- Upload date:
- Size: 17.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5787c1aac0f2c619e5e6b8dc63d663f226c00a1f6f7318654ead1e12cc0168e |
|
MD5 | b9329cafe3833b604f1452c4314eac2d |
|
BLAKE2b-256 | 2c4f9bc5b7f2883e4c37a12b41aba2e53c7504e537b3a9b70bf129ad44dfb0e4 |
File details
Details for the file click_odoo-1.0.0b4-py2.py3-none-any.whl
.
File metadata
- Download URL: click_odoo-1.0.0b4-py2.py3-none-any.whl
- Upload date:
- Size: 9.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5ef05e283f7d9686a6ceec5d0d3e814b5b949a07088550b6803e6c554afd6a6 |
|
MD5 | b96c797b86bab5d729caadd8da74055e |
|
BLAKE2b-256 | a4b4ceefe49c5ab7326e00f3af3a11c3dd2d3d7f57db93c288645b6e907c40e9 |