{ "info": { "author": "ACSONE SA/NV", "author_email": "info@acsone.eu", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: Odoo", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "click-odoo\n==========\n\n.. image:: https://img.shields.io/badge/license-LGPL--3-blue.svg\n :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html\n :alt: License: LGPL-3\n.. image:: https://badge.fury.io/py/click-odoo.svg\n :target: http://badge.fury.io/py/click-odoo\n.. image:: https://travis-ci.org/acsone/click-odoo.svg?branch=master\n :target: https://travis-ci.org/acsone/click-odoo\n.. image:: https://codecov.io/gh/acsone/click-odoo/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/acsone/click-odoo\n\n``click-odoo`` helps you create and run beautiful and robust command line scripts\nfor Odoo. It is based on the excellent Click_ library.\n\nUseful community-managed scripts can be found in click-odoo-contrib_.\n\n.. contents::\n\nQuick start\n~~~~~~~~~~~\n\nCheck Odoo is correctly installed: ``python -c \"import odoo\"`` (for Odoo 10\nand later) or ``python -c \"import openerp\"`` (for Odoo 8 and 9) must\nwork when run from another directory than the Odoo root directory.\n\nInstall ``click-odoo``::\n\n pip install click-odoo\n\nAssuming the following script named ``list-users.py``.\n\n.. code:: python\n\n #!/usr/bin/env click-odoo\n from __future__ import print_function\n\n for u in env['res.users'].search([]):\n print(u.login, u.name)\n\nIt can be run with::\n\n python -m click_odoo -d dbname --log-level=error ./list-users.py\n\nor::\n\n click-odoo -d dbname --log-level=error ./list-users.py\n\nor::\n\n ./list-users.py -d dbname --log-level=error\n\nThe other technique to create scripts looks like this. Assuming\nthe following script named ``list-users2.py``.\n\n.. code:: python\n\n #!/usr/bin/env python\n from __future__ import print_function\n import click\n\n import click_odoo\n\n\n @click.command()\n @click_odoo.env_options(default_log_level='error')\n @click.option('--say-hello', is_flag=True)\n def main(env, say_hello):\n if say_hello:\n click.echo(\"Hello!\")\n for u in env['res.users'].search([]):\n print(u.login, u.name)\n\n\n if __name__ == '__main__':\n main()\n\nIt can be run like this::\n\n $ ./list-users2.py --help\n Usage: list-users2.py [OPTIONS]\n\n Options:\n -c, --config PATH Specify the Odoo configuration file. Other ways to\n provide it are with the ODOO_RC or OPENERP_SERVER\n environment variables, or ~/.odoorc (Odoo >= 10) or\n ~/.openerp_serverrc.\n -d, --database TEXT Specify the database name. If present, this\n parameter takes precedence over the database\n provided in the Odoo configuration file.\n --log-level TEXT Specify the logging level. Accepted values depend on\n the Odoo version, and include debug, info, warn,\n error, critical. [default: error]\n --logfile PATH Specify the log file.\n --rollback Rollback the transaction even if the script\n does not raise an exception. Note that if\n the script itself commits, this option has no\n effect, this is why it is not named dry run.\n This option is implied when an interactive\n console is started.\n --say-hello\n --help Show this message and exit.\n\n $ ./list-users2.py --say-hello -d dbname\n Hello!\n admin Administrator\n ...\n\nFinally, you can start an interactive shell by simply typing\n``python -m click_odoo -d dbname`` or ``click-odoo -d dbname``.\nThis will launch the python REPL with an Odoo ``env`` available\nas a global variable.\n\nSupported Odoo versions\n~~~~~~~~~~~~~~~~~~~~~~~\n\nOdoo version 8, 9, 10, 11 and 12 are supported.\n\nAn important design goal is to provide a consistent behaviour\nacross Odoo versions.\n\n.. note::\n\n ``click-odoo`` does not mandate any particular method of installing odoo.\n The only prerequisiste is that ``import odoo`` (>= 10) or ``import openerp``\n (< 10) must work when run from another directory than the Odoo root\n directory.\n\n You may also rely on the fact that python adds the current directory to\n ``sys.path``, so ``import odoo`` works from the Odoo root directory.\n In such case, the only working invocation method may be\n ``python -m click_odoo``.\n\nDatabase transactions\n~~~~~~~~~~~~~~~~~~~~~\n\nBy default ``click-odoo`` commits the transaction for you, unless your script\nraises an exception. This is so that you don't need to put explicit commits\nin your scripts, which are therefore easier to compose in larger transactions\n(provided they pass around the same env).\n\nThere is a ``--rollback`` option to force a rollback.\n\nA rollback is always performed after an interactive session. If you need to\ncommit changes made before or during an interactive session, use ``env.cr.commit()``.\n\nLogging\n~~~~~~~\n\nIn version 8, Odoo logs to stdout by default. On other versions\nit is stderr. ``click-odoo`` attempts to use stderr for Odoo 8 too.\n\nLogging is controlled by the usual Odoo logging options (``--log-level``,\n``--logfile``) or the Odoo configuration file.\n\nNote the ``--log-level`` option applies to the ``odoo`` package only.\n\nCommand line interface (click-odoo)\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n.. code::\n\n Usage: click-odoo [OPTIONS] [SCRIPT] [SCRIPT_ARGS]...\n\n Execute a python script in an initialized Odoo environment. The script has\n access to a 'env' global variable which is an odoo.api.Environment\n initialized for the given database. If no script is provided, the script\n is read from stdin or an interactive console is started if stdin appears\n to be a terminal.\n\n Options:\n -c, --config FILE Specify the Odoo configuration file. Other\n ways to provide it are with the ODOO_RC or\n OPENERP_SERVER environment variables, or\n ~/.odoorc (Odoo >= 10) or\n ~/.openerp_serverrc.\n --addons-path TEXT Specify the addons path. If present, this\n parameter takes precedence over the addons\n path provided in the Odoo configuration\n file.\n -d, --database TEXT Specify the database name. If present, this\n parameter takes precedence over the database\n provided in the Odoo configuration file.\n --log-level TEXT Specify the logging level. Accepted values\n depend on the Odoo version, and include\n debug, info, warn, error. [default: info]\n --logfile FILE Specify the log file.\n --rollback Rollback the transaction even if the script\n does not raise an exception. Note that if\n the script itself commits, this option has\n no effect. This is why it is not named dry\n run. This option is implied when an\n interactive console is started.\n -i, --interactive / --no-interactive\n Inspect interactively after running the\n script.\n --shell-interface TEXT Preferred shell interface for interactive\n mode. Accepted values are ipython, ptpython,\n bpython, python. If not provided they are\n tried in this order.\n --help Show this message and exit.\n\nMost options above are the same as ``odoo`` options and behave identically.\nAdditional Odoo options can be set in the the configuration file.\nNote however that most server-related options (workers, http interface etc)\nare ignored because no server is actually started when running a script.\n\nAn important feature of ``click-odoo`` compared to, say, ``odoo shell`` is\nthe capability to pass arguments to scripts.\n\nIn order to avoid confusion between ``click-odoo`` options and your script\noptions and arguments, it is recommended to separate them with ``--``::\n\n click-odoo -d dbname -- list-users.py -d a b\n ./list-users.py -d dbname -- -d a b\n\nIn both examples above, ``sys.argv[1:]`` will contain ``['-d', 'a', 'b']``\nin the script.\n\nAPI\n~~~\n\nclick_odoo.env_options decorator\n--------------------------------\n\n``@click_odoo.env_options()`` is a decorator that is used very much like\n``@click.option()`` and inserts the list of predefined ``click-odoo``\noptions. Instead of passing down these options to the command, it prepares\nan odoo ``Environment`` and passes it as a ``env`` parameter.\n\nIt is configurable with the following keyword arguments:\n\ndefault_log_level\n The default value for the ``--log-level`` option (default: 'info').\n\nwith_rollback\n Controls the presence of the ``--rollback`` option (default: True).\n This is useful for creating commands that commit and leave no possibility\n for rollback.\n\nwith_database\n Controls the presence of the ``--database`` option (default: True).\n This is useful to create scripts that have access to a pre-loaded Odoo\n configuration, without any database. In such case, the environment\n is not set (env is None). If ``with_database`` is False,\n ``database_required`` is implied to be False too.\n\ndatabase_required\n Controls if a database must be provided through the ``--database``\n option or the Odoo configuration file (default: True).\n\ndatabase_must_exist\n If this flag is False and the selected database does not exist\n do not fail and pass env=None instead (default: True).\n\nwith_addons_path\n Controls the presence of the ``--addons-path`` option (default: False).\n\nenvironment_manager\n **experimental feature** A context manager that yields an intialized\n ``odoo.api.Environment``.\n It is invoked after Odoo configuration parsing and initialization.\n It must have the following signature (identical to ``OdooEnvironment``\n below, plus the click ``ctx`` as well as ``**kwargs`` for future proofing):\n\n .. code:: python\n\n environment_manager(database, rollback, ctx, **kwargs)\n\nCustomizing click_odoo.env_options (experimental)\n-------------------------------------------------\n\n``click_odoo.env_options`` is a class that can be extended for customization\npurposes.\n\nIt currently has one method that is intended to be overridden, with the\nfollowing signature:\n\n.. code:: python\n\n def get_odoo_args(self, ctx: click.Context) -> List[str]:\n ...\n\nIt must return a list of Odoo command line arguments computed\nfrom the Click context. It will be called after parsing all parameters\nof the command, and before initializing Odoo and invoking the command function.\n\nclick_odoo.odoo namespace\n-------------------------\n\nAs a convenience ``click_odoo`` exports the ``odoo`` namespace, so\n``from click_odoo import odoo`` is an alias for ``import odoo`` (>= 10)\nor ``import openerp as odoo`` (< 10).\n\nOdooEnvironment context manager (experimental)\n----------------------------------------------\n\nThis package also provides an experimental ``OdooEnvironment`` context manager.\nIt is meant to be used in after properly intializing Odoo (ie parsing the\nconfiguration file etc).\n\n.. warning::\n\n This API is considered experimental, contrarily to the scripting mechanism\n (ie passing ``env`` to scripts) and ``env_options`` decorator which are\n stable features. Should you have a specific usage for this API and would\n like it to become stable, get it touch to discuss your requirements.\n\nExample:\n\n.. code:: python\n\n from click_odoo import OdooEnvironment\n\n\n with OdooEnvironment(database='dbname') as env:\n env['res.users'].search([])\n\nDevelopement\n~~~~~~~~~~~~\n\nTo run tests, type ``tox``. Tests are made using pytest. To run tests matching\na specific keyword for, say, Odoo 12 and python 3.6, use\n``tox -e py36-12.0 -- -k keyword``.\n\nThis project uses `black `_\nas code formatting convention, as well as isort and flake8.\nTo make sure local coding convention are respected before\nyou commit, install\n`pre-commit `_ and\nrun ``pre-commit install`` after cloning the repository.\n\nUseful links\n~~~~~~~~~~~~\n\n- pypi page: https://pypi.org/project/click-odoo\n- code repository: https://github.com/acsone/click-odoo\n- report issues at: https://github.com/acsone/click-odoo/issues\n\n.. _Click: http://click.pocoo.org\n.. _click-odoo-contrib: https://pypi.python.org/pypi/click-odoo-contrib\n\nCredits\n~~~~~~~\n\nAuthor:\n\n- St\u00e9phane Bidoul (`ACSONE `__)\n\nContributors:\n\n- Thomas Binsfeld (`ACSONE `__)\n- David Arnold (`XOE `__)\n- Jairo Llopis (`Tecnativa `__)\n\nInspiration has been drawn from:\n\n- `anybox.recipe.odoo `_\n- `anthem by Camptocamp `_\n- odoo's own shell command\n\nMaintainer\n~~~~~~~~~~\n\n.. image:: https://www.acsone.eu/logo.png\n :alt: ACSONE SA/NV\n :target: https://www.acsone.eu\n\nThis project is maintained by ACSONE SA/NV.\n\nChanges\n~~~~~~~\n\n.. Future (?)\n.. ----------\n.. - ...\n\n1.4.2 (2019-10-01)\n------------------\n- Odoo 8 unconditionally registers wsgi handlers, which has the surprising\n side effect to start a server in some circumstances, for instance when\n calling ``env[\"ir.module.module\"].update_list()`` in ``click-odoo-initdb``.\n Disable them in click-odoo initialization, since they are useless and\n other Odoo version do not install them.\n- Support Odoo saas versions.\n\n1.4.1 (2019-01-24)\n------------------\n- revert change to logging made in 1.4.0\n\n1.4.0 (pulled)\n--------------\n- add support for launching with ``python -m click_odoo``. Fixes #20.\n- apply ``--log-level`` to the root logger, so it works more\n intuitively by applying to the script too, and not only to the ``odoo``\n namespace. *This may change the log output of some scripts*.\n In particular, ``--log-level=debug`` will now apply debug logging\n to every python library used, and not only to Odoo.\n Fine tuning is available through the ``log_handler`` configuration item.\n- support Odoo config files with multiple comma separate databases names\n in db_name config entry.\n\n1.3.0 (2018-11-21)\n------------------\n- pass click ctx to environment_manager\n\n1.2.0 (2018-11-18)\n------------------\n- refactor ``@click_odoo.env_options`` to allow propagating ``env``\n to subcommands through the click context. Fixes #16.\n- do not log click Exit exception, which may be raised by subcommands as\n a result of --help.\n\nUpgrading:\n- click-odoo now requires click>=7\n\n1.1.1 (2018-11-01)\n------------------\n- add ``with_addons_path`` option to ``@click_odoo.env_options``\n to control the presence of the ``--addons-path`` option. Defaults to False.\n Enabled for the ``click-odoo`` CLI.\n\n1.1.0 (2018-10-31)\n------------------\n- add ``environment_manager`` to ``@click_odoo.env_options``, providing\n a hook on ``odoo.api.Environment`` creation.\n- add ``--addons-path`` option to the CLI.\n- add ``database_must_exist`` option to ``@click_odoo.env_options``\n so scripts can behave how they please in case the database is absent.\n\n1.0.4 (2018-10-07)\n------------------\n- silence deprecation warning\n- adapt tests for Odoo 12\n\n1.0.3 (2018-06-05)\n------------------\n- clarify the behaviour of ``@env_option`` ``with_database`` and ``database_required``\n parameters; in particular, when ``with_database`` and ``database_required``\n are both set (the default), the ``--database`` option can be omitted\n as long as a database is declared in the Odoo configuration file.\n\n1.0.2 (2018-06-01)\n------------------\n- refactor the OdooEnvironment class: it is much cleaner when\n it leaves the global Odoo config alone, so we completely move\n responsibility to initialize the Odoo config to the CLI part.\n\n1.0.1 (2018-05-27)\n------------------\n- better error logging and handling: all exceptions occuring\n in scripts under click_odoo.env_options are logged and converted\n to ClickException so we are sure they are both in the log file\n and on the console (handled by click) for the user to see.\n The OdooEnvironment context manager does not do additional logging,\n leaving that responsibility to the caller.\n\n1.0.0 (2018-05-20)\n------------------\n- close db connections when releasing OdooEnvironment\n- expose click_odoo.odoo_bin (odoo or openerp-server depending on Odoo series).\n not documented yet, because it should ideally be a full path corresponding\n to the installed click_odoo.odoo, and I'm not sure how best to detect it yet.\n\n1.0.0b4 (2018-05-17)\n--------------------\n- minor documentation improvements\n- add the possibility to run script without ``--database`` (ie without env,\n but with a properly initialized Odoo library such as addons path)\n- be more resilient in case we can't obtain a context for the user\n\n1.0.0b3 (2018-03-22)\n--------------------\n- click_odoo now exports the odoo namespace: ``from click_odoo import odoo``\n is an alias for ``import odoo`` (>9) or ``import openerp as odoo`` (<=9)\n- add a ``with_rollback`` option to the ``env_options`` decorator, to control\n the presence of the rollback option\n- document the ``env_options`` decorator\n\n1.0.0b2 (2018-03-21)\n--------------------\n- commit in case of success, so users do not need to commit in their\n scripts, therefore making scripts easier to compose in larger transactions\n- add a --rollback option\n- interactive mode forces --rollback\n\n1.0.0b1 (2018-03-20)\n--------------------\n- clear cache when starting environment (mostly useful for tests)\n- simplify and test transaction and exception handling\n- when leaving the env, log the exception to be sure it is visible\n when using ``--logfile``\n\n1.0.0a2 (2018-03-19)\n--------------------\n- improve transaction management: avoid some rare deadlock\n- avoid masking original exception in case of error during rollback\n- make sure scripts launched by click-odoo have ``__name__ == '__main__'``\n- add ``--logfile option``\n\n1.0.0a1 (2018-03-19)\n--------------------\n- first alpha\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/acsone/click-odoo", "keywords": "", "license": "LGPLv3+", "maintainer": "", "maintainer_email": "", "name": "click-odoo", "package_url": "https://pypi.org/project/click-odoo/", "platform": "", "project_url": "https://pypi.org/project/click-odoo/", "project_urls": { "Homepage": "http://github.com/acsone/click-odoo" }, "release_url": "https://pypi.org/project/click-odoo/1.4.2/", "requires_dist": [ "click (>=7)" ], "requires_python": "", "summary": "Beautiful, robust CLI for Odoo", "version": "1.4.2" }, "last_serial": 5923074, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "ebb52c5249bf985bc69c6ad68fb55200", "sha256": "49531e0b6724b11cf384a17f62041f82aff72a1812d93fe22a6ea3592e481543" }, "downloads": -1, "filename": "click_odoo-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ebb52c5249bf985bc69c6ad68fb55200", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9647, "upload_time": "2018-05-20T12:09:35", "url": "https://files.pythonhosted.org/packages/16/80/fe78ad7e38937353c221f1daaef9f6ef3c58a6861c59dd2172a695accde3/click_odoo-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "31ef8601b27bc2b336c97ce4f9e18c25", "sha256": "0d3f067d0a514d4575c6e1eab2b47afed6427659ffc6b3412fc3f9070e231abb" }, "downloads": -1, "filename": "click-odoo-1.0.0.tar.gz", "has_sig": false, "md5_digest": "31ef8601b27bc2b336c97ce4f9e18c25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18015, "upload_time": "2018-05-20T12:09:36", "url": "https://files.pythonhosted.org/packages/c2/69/c2641a1a40dc14144af45d35f309b714035a789f51ee87d5acaf1221cc06/click-odoo-1.0.0.tar.gz" } ], "1.0.0a1": [ { "comment_text": "", "digests": { "md5": "3f7b8f43c18f2a6ce8833ef14d2cb0a1", "sha256": "c68dc0b817fe40e243b8cc61a5f70a0d7dc532d60c8b0f2a1a5dc72dd108f636" }, "downloads": -1, "filename": "click_odoo-1.0.0a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3f7b8f43c18f2a6ce8833ef14d2cb0a1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12020, "upload_time": "2018-03-19T09:23:50", "url": "https://files.pythonhosted.org/packages/51/fc/777685f73e2ec97e3e14ef63372f39f04b368afc9f824018457c1e5227e9/click_odoo-1.0.0a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "29dfc4b16097be9ffa4df4eda4305002", "sha256": "a3a24e364a8a2201f05d5b34fe8aee63b6f2ad246ef2a51d330358d3b0b13251" }, "downloads": -1, "filename": "click-odoo-1.0.0a1.tar.gz", "has_sig": false, "md5_digest": "29dfc4b16097be9ffa4df4eda4305002", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14371, "upload_time": "2018-03-19T09:23:51", "url": "https://files.pythonhosted.org/packages/cd/28/e832510a1fbdfc0fd618835f38f507f43be90ba6211869ac4db35b77b0e1/click-odoo-1.0.0a1.tar.gz" } ], "1.0.0a2": [ { "comment_text": "", "digests": { "md5": "435bf3df0ff412166fc0ac22da06e515", "sha256": "af4b4b01fe3354f0605861d236b0090cba27ea2b8cf76dac7059e8eec3fb56a9" }, "downloads": -1, "filename": "click_odoo-1.0.0a2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "435bf3df0ff412166fc0ac22da06e515", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12807, "upload_time": "2018-03-19T18:36:34", "url": "https://files.pythonhosted.org/packages/64/c1/a75c5cbde1da29fd91f4926b3d70cbdf0f83bec86f1eff0c6e1831ea249b/click_odoo-1.0.0a2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8ac54c2ca683b341ccc512506d64ff67", "sha256": "ad6160f99a96a912284dc1483080d61b69a6c6e64e420c4e8399bfd571c8b6a2" }, "downloads": -1, "filename": "click-odoo-1.0.0a2.tar.gz", "has_sig": false, "md5_digest": "8ac54c2ca683b341ccc512506d64ff67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8367, "upload_time": "2018-03-19T18:36:35", "url": "https://files.pythonhosted.org/packages/17/72/3904044d21c48bcaae7034d422ef051e82da1bffedce626f14cb3ba61ca6/click-odoo-1.0.0a2.tar.gz" } ], "1.0.0b1": [ { "comment_text": "", "digests": { "md5": "ea51489fec4f8923fcd20c8b52c0b59f", "sha256": "c935d1b2b2d811b76450d92a495edbc1eb56317906b6eddd729e77a00b5dca79" }, "downloads": -1, "filename": "click_odoo-1.0.0b1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ea51489fec4f8923fcd20c8b52c0b59f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17724, "upload_time": "2018-03-20T17:18:51", "url": "https://files.pythonhosted.org/packages/c1/41/287f096a5e4d6c396cab715845160eafb0351ec76651882d38d5fcef6fdd/click_odoo-1.0.0b1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dd98915af88bdbbd1a995a140b2b29de", "sha256": "54a9f133cf669835c5a26e4630f705ba1e13d1e406913a1b68d3cb2a713789c4" }, "downloads": -1, "filename": "click-odoo-1.0.0b1.tar.gz", "has_sig": false, "md5_digest": "dd98915af88bdbbd1a995a140b2b29de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16012, "upload_time": "2018-03-20T17:19:01", "url": "https://files.pythonhosted.org/packages/11/7f/82cf551a8c59c7c852f2792924e8c21e5f131c3678cab52417bd44916e9a/click-odoo-1.0.0b1.tar.gz" } ], "1.0.0b2": [ { "comment_text": "", "digests": { "md5": "7d65fc8c2f80f269dd614fdf11ec4239", "sha256": "4c9da2e3efda3b1573ccb22b49ef709c486868543c9048623bd369355dc0e19a" }, "downloads": -1, "filename": "click_odoo-1.0.0b2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7d65fc8c2f80f269dd614fdf11ec4239", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14423, "upload_time": "2018-03-21T11:52:20", "url": "https://files.pythonhosted.org/packages/70/70/883e80194b7ee2d924895b47fd12ea814e7ebe57a4a8646f76b71070ed7b/click_odoo-1.0.0b2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5b67687e78fcfb49258b6a677f75c7c1", "sha256": "9d087d7f18d79915df3cdcde53233d0813f95fe54af1d92bf8d0a6be9d633e9a" }, "downloads": -1, "filename": "click-odoo-1.0.0b2.tar.gz", "has_sig": false, "md5_digest": "5b67687e78fcfb49258b6a677f75c7c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16904, "upload_time": "2018-03-21T11:52:22", "url": "https://files.pythonhosted.org/packages/52/3f/1ab047b01a9943f5099f6e14439a63abfb9d37e8e373adf63695226e905a/click-odoo-1.0.0b2.tar.gz" } ], "1.0.0b3": [ { "comment_text": "", "digests": { "md5": "80d8c09d9e33c16e4864f21f4b67e2bb", "sha256": "148e25739df19647fcc641f66f1ff8f6f9e3d128e1a4e4f77bcdebdf9c6573e7" }, "downloads": -1, "filename": "click_odoo-1.0.0b3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "80d8c09d9e33c16e4864f21f4b67e2bb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15346, "upload_time": "2018-03-22T18:26:34", "url": "https://files.pythonhosted.org/packages/95/77/52cf82699d1aedecf1d82b1e25b2c3f3d9d5419b596b0e2d839d3ed7fb2e/click_odoo-1.0.0b3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "14b8507c43edf7e7e9fda16e2645aca5", "sha256": "99c47097e194125ab5ea719a049ea0f2bd8ee75f3b5c2d950d90544e6bdf6f60" }, "downloads": -1, "filename": "click-odoo-1.0.0b3.tar.gz", "has_sig": false, "md5_digest": "14b8507c43edf7e7e9fda16e2645aca5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17967, "upload_time": "2018-03-22T18:26:36", "url": "https://files.pythonhosted.org/packages/05/02/aee767e068394340f80291eed0f9bbe91dbbfe6e133784067b099892e529/click-odoo-1.0.0b3.tar.gz" } ], "1.0.0b4": [ { "comment_text": "", "digests": { "md5": "b96c797b86bab5d729caadd8da74055e", "sha256": "c5ef05e283f7d9686a6ceec5d0d3e814b5b949a07088550b6803e6c554afd6a6" }, "downloads": -1, "filename": "click_odoo-1.0.0b4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b96c797b86bab5d729caadd8da74055e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9388, "upload_time": "2018-05-17T16:51:24", "url": "https://files.pythonhosted.org/packages/a4/b4/ceefe49c5ab7326e00f3af3a11c3dd2d3d7f57db93c288645b6e907c40e9/click_odoo-1.0.0b4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b9329cafe3833b604f1452c4314eac2d", "sha256": "d5787c1aac0f2c619e5e6b8dc63d663f226c00a1f6f7318654ead1e12cc0168e" }, "downloads": -1, "filename": "click-odoo-1.0.0b4.tar.gz", "has_sig": false, "md5_digest": "b9329cafe3833b604f1452c4314eac2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17483, "upload_time": "2018-05-17T16:51:26", "url": "https://files.pythonhosted.org/packages/2c/4f/9bc5b7f2883e4c37a12b41aba2e53c7504e537b3a9b70bf129ad44dfb0e4/click-odoo-1.0.0b4.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "b1f527aa28fa9cd8b7704aa32ef7065e", "sha256": "a1e43f4c1c82c8e795804e2dff2e75e2cf28c133b1990a79aedb3c0845e0b817" }, "downloads": -1, "filename": "click_odoo-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b1f527aa28fa9cd8b7704aa32ef7065e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9808, "upload_time": "2018-05-27T15:54:47", "url": "https://files.pythonhosted.org/packages/c9/30/4e2ebdfc24d1c5e4812f8e74620dc503f5d6a8924083d604115367ceff06/click_odoo-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f376ba7c6a9ce84f7a0db59a501d2ebf", "sha256": "826db973f77560e4c318b87995637057aba21ececc0603a272e24690de51cb04" }, "downloads": -1, "filename": "click-odoo-1.0.1.tar.gz", "has_sig": false, "md5_digest": "f376ba7c6a9ce84f7a0db59a501d2ebf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18304, "upload_time": "2018-05-27T15:54:48", "url": "https://files.pythonhosted.org/packages/f9/8a/2a84065399d19510b60feb950e8f6dd82271e172abce9d2b1937c4faedeb/click-odoo-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "d43efc3b12ac448e6230fe81955c325d", "sha256": "7ed24d80f7aea407a96f1820b0fae454b7a1338efe78e611a54521474ea9a363" }, "downloads": -1, "filename": "click_odoo-1.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d43efc3b12ac448e6230fe81955c325d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9826, "upload_time": "2018-06-01T17:05:32", "url": "https://files.pythonhosted.org/packages/b1/83/3d7dd94bf4df7cb5870fa549550269baed5b05d692e207b6256b5eece197/click_odoo-1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "803e62fcfd52c499202a7eb8007922dd", "sha256": "6e5fe022d7823b4314de9a9fdf9721d5f41f7741a6092b1e84f5940e787290b5" }, "downloads": -1, "filename": "click-odoo-1.0.2.tar.gz", "has_sig": false, "md5_digest": "803e62fcfd52c499202a7eb8007922dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18507, "upload_time": "2018-06-01T17:05:33", "url": "https://files.pythonhosted.org/packages/44/18/6f226073850b4402f804cea9de06ab19338031ed2539d4724be1c6498e59/click-odoo-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "a49d275918faa8360477052d49925bf4", "sha256": "5aae7244d01e887af6b6211e7ac27367382bb483b133f1905cc36212a6698afd" }, "downloads": -1, "filename": "click_odoo-1.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a49d275918faa8360477052d49925bf4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10174, "upload_time": "2018-06-05T10:59:43", "url": "https://files.pythonhosted.org/packages/f0/1a/8eeb10d941f183cc2741fded1d9d18d177add1fd31163ae0ecda71433d22/click_odoo-1.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8790fc97e2597e1d5213b57005df950f", "sha256": "c0f9b0181a88ba9f1ebbe4899f503a28ee368a2762a65bcc77fbb5127f0cf212" }, "downloads": -1, "filename": "click-odoo-1.0.3.tar.gz", "has_sig": false, "md5_digest": "8790fc97e2597e1d5213b57005df950f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19421, "upload_time": "2018-06-05T10:59:44", "url": "https://files.pythonhosted.org/packages/9f/02/40f3f1e42a3717ab91fa8694570a06ea2fd868795dd09a985afbc2b4f8d7/click-odoo-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "aa52376b784f29653086213d1484b1fe", "sha256": "ad9602fa1855e2b28212fa6eb8346aac529c204142f248af7d8fd41aad7069c0" }, "downloads": -1, "filename": "click_odoo-1.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aa52376b784f29653086213d1484b1fe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13013, "upload_time": "2018-10-07T11:20:06", "url": "https://files.pythonhosted.org/packages/83/80/33bbc1cace327a419cafb5a5f7c893439d8d6a6b3af1d02d43c4f5308527/click_odoo-1.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e4952efb05f39b315e2386fecb0e1855", "sha256": "8072e94520927eeca4cdae2686a81356388ac6a693cb868f8d6bc2f6e743d600" }, "downloads": -1, "filename": "click-odoo-1.0.4.tar.gz", "has_sig": false, "md5_digest": "e4952efb05f39b315e2386fecb0e1855", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19690, "upload_time": "2018-10-07T11:20:07", "url": "https://files.pythonhosted.org/packages/b2/46/5c14e08fead93ebabbbe3b7e75684b35b7e5fa7ecd494cec15e203357eac/click-odoo-1.0.4.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "2437e889b1f97364b5fe09e5dc614012", "sha256": "2d05eb775911aa587e872288fa264343d92bfb4068b99e8b50ef1546c7411f4f" }, "downloads": -1, "filename": "click_odoo-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2437e889b1f97364b5fe09e5dc614012", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13879, "upload_time": "2018-10-31T21:40:59", "url": "https://files.pythonhosted.org/packages/f5/0d/560a40279914ee49d06fae6143e33520c022492855ff2ea5689f7a6c053f/click_odoo-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d58470e87e17dcbdb043417a0624b44", "sha256": "928f55d2ad5b5dd2e52b32b623f57b928333e5a8a39b2fa3c5decf3329deb529" }, "downloads": -1, "filename": "click-odoo-1.1.0.tar.gz", "has_sig": false, "md5_digest": "1d58470e87e17dcbdb043417a0624b44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22221, "upload_time": "2018-10-31T21:41:00", "url": "https://files.pythonhosted.org/packages/32/79/5c068f3f838caf481a75ee8f95f10dca4cc1b9b4dff3be9ad9a631d5adff/click-odoo-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "dcfe7ab52ee56e40385ef58137817c8e", "sha256": "ecdd46c58b537644823b2ba08e81a60c630b88f24c0ddf0b9ae2bfad49fcae61" }, "downloads": -1, "filename": "click_odoo-1.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dcfe7ab52ee56e40385ef58137817c8e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13954, "upload_time": "2018-11-01T09:48:23", "url": "https://files.pythonhosted.org/packages/86/4d/29445bb4f64b7bd8174d36a8211dc7713a81e057934f38cf69365fa4988a/click_odoo-1.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "19a5ee5f4da1d328514b3ab01164954e", "sha256": "af337545053d72ec15476b12dbf1ec8996b0e1c6cb513ac441b84a19a144c4be" }, "downloads": -1, "filename": "click-odoo-1.1.1.tar.gz", "has_sig": false, "md5_digest": "19a5ee5f4da1d328514b3ab01164954e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22457, "upload_time": "2018-11-01T09:48:25", "url": "https://files.pythonhosted.org/packages/ca/17/b7c1e0885ef0eef7e278397e0ce6814d49d123f020845b53f1703c3f391a/click-odoo-1.1.1.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "1b2ed403ebd687870b163a2dd8c9ae45", "sha256": "2448f807bf0cb8eed0638dff3b4385497226bfb0c21bf4d329d52b410fff5b11" }, "downloads": -1, "filename": "click_odoo-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1b2ed403ebd687870b163a2dd8c9ae45", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15083, "upload_time": "2018-11-18T11:08:43", "url": "https://files.pythonhosted.org/packages/68/98/4a25feeaa1ed9d3d04318308174eec171aec494e59400f1e4c95b00240d5/click_odoo-1.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b54f917ad4a28d325d400557f88520f3", "sha256": "994260ba3657d6b785af8a017a717dad6580621f4cd6cdd83fb78c5dabcab089" }, "downloads": -1, "filename": "click-odoo-1.2.0.tar.gz", "has_sig": false, "md5_digest": "b54f917ad4a28d325d400557f88520f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23603, "upload_time": "2018-11-18T11:08:45", "url": "https://files.pythonhosted.org/packages/cd/ec/f93cee4f3d8fabaf983cd3f8554ab416fea1badc94026e4082e23aeb118a/click-odoo-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "dcd4833fb0e2a223439357d1d7767c69", "sha256": "03e16a4f8d3e1043a19290ade6ba2f1c1004a134add34e492a0b6e6ccda288ec" }, "downloads": -1, "filename": "click_odoo-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dcd4833fb0e2a223439357d1d7767c69", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15126, "upload_time": "2018-11-21T17:36:30", "url": "https://files.pythonhosted.org/packages/67/90/efed9ddf3d6707eb97bdb4336d8a4cb3a049ead1a8ef452238a1f5a0d623/click_odoo-1.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1b9e59aa2a8ebdda0286e927345d32e0", "sha256": "048029f517df55083287e1fbea14b72b89bf0fe97d722849d5b4151320eeded7" }, "downloads": -1, "filename": "click-odoo-1.3.0.tar.gz", "has_sig": false, "md5_digest": "1b9e59aa2a8ebdda0286e927345d32e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23675, "upload_time": "2018-11-21T17:36:31", "url": "https://files.pythonhosted.org/packages/c0/ff/ab681d3cd1055b49b4655719b52e9f5fa94df7f1e0236593d560236e2e05/click-odoo-1.3.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "0a2cb158c8eb6085b0118210739643a9", "sha256": "aa107a84223b9467507d5fe1ac78cecb3e0892bec821c226628748941be0a2f1" }, "downloads": -1, "filename": "click_odoo-1.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0a2cb158c8eb6085b0118210739643a9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15930, "upload_time": "2019-01-24T23:01:16", "url": "https://files.pythonhosted.org/packages/41/1c/99a4efcdb5b6aba2fb959b85337720d5412eeba14b13bee6de58bdb93c1d/click_odoo-1.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ea3b531272a8eeb2f40c0dfac6835238", "sha256": "393226df6cfc4f842de820ca767f44dd4bd7c0e120be8d9fa5ed7f79ede99ed3" }, "downloads": -1, "filename": "click-odoo-1.4.1.tar.gz", "has_sig": false, "md5_digest": "ea3b531272a8eeb2f40c0dfac6835238", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25174, "upload_time": "2019-01-24T23:01:17", "url": "https://files.pythonhosted.org/packages/2b/5a/33fcbae5f645d919b436f47cdcc3abfcd78bddd3b75178adf827e7250879/click-odoo-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "a6fc5eda1b71b7140a09f2de51818c3d", "sha256": "6a4366c8daee284a6aaf2a93c5fa8dbdee6ac093664c485a4bb7246a41f108bf" }, "downloads": -1, "filename": "click_odoo-1.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a6fc5eda1b71b7140a09f2de51818c3d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16214, "upload_time": "2019-10-03T11:54:09", "url": "https://files.pythonhosted.org/packages/dc/f1/3675fb1e8a701080e8216447d4e294a3e14f58a1dab31f13a81142a7650a/click_odoo-1.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d939b305208d5ec3325bc1d7468e4461", "sha256": "74a525686e4934b07794020b97816ffe306ea774ae250c7055a4e867345552bf" }, "downloads": -1, "filename": "click-odoo-1.4.2.tar.gz", "has_sig": false, "md5_digest": "d939b305208d5ec3325bc1d7468e4461", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22742, "upload_time": "2019-10-03T11:54:12", "url": "https://files.pythonhosted.org/packages/2c/1c/309a0f857c67496bba4ec08a0446800048ff757b0ad32201192a9a788e3b/click-odoo-1.4.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a6fc5eda1b71b7140a09f2de51818c3d", "sha256": "6a4366c8daee284a6aaf2a93c5fa8dbdee6ac093664c485a4bb7246a41f108bf" }, "downloads": -1, "filename": "click_odoo-1.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a6fc5eda1b71b7140a09f2de51818c3d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16214, "upload_time": "2019-10-03T11:54:09", "url": "https://files.pythonhosted.org/packages/dc/f1/3675fb1e8a701080e8216447d4e294a3e14f58a1dab31f13a81142a7650a/click_odoo-1.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d939b305208d5ec3325bc1d7468e4461", "sha256": "74a525686e4934b07794020b97816ffe306ea774ae250c7055a4e867345552bf" }, "downloads": -1, "filename": "click-odoo-1.4.2.tar.gz", "has_sig": false, "md5_digest": "d939b305208d5ec3325bc1d7468e4461", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22742, "upload_time": "2019-10-03T11:54:12", "url": "https://files.pythonhosted.org/packages/2c/1c/309a0f857c67496bba4ec08a0446800048ff757b0ad32201192a9a788e3b/click-odoo-1.4.2.tar.gz" } ] }