{ "info": { "author": "Camptocamp,ACSONE SA/NV,Odoo Community Association (OCA)", "author_email": "support@odoo-community.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 6 - Mature", "Framework :: Odoo", "License :: OSI Approved :: GNU Affero General Public License v3", "Programming Language :: Python" ], "description": "=========\nJob Queue\n=========\n\n.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n !! This file is generated by oca-gen-addon-readme !!\n !! changes will be overwritten. !!\n !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png\n :target: https://odoo-community.org/page/development-status\n :alt: Mature\n.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png\n :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html\n :alt: License: AGPL-3\n.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fqueue-lightgray.png?logo=github\n :target: https://github.com/OCA/queue/tree/12.0/queue_job\n :alt: OCA/queue\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n :target: https://translation.odoo-community.org/projects/queue-12-0/queue-12-0-queue_job\n :alt: Translate me on Weblate\n.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png\n :target: https://runbot.odoo-community.org/runbot/230/12.0\n :alt: Try me on Runbot\n\n|badge1| |badge2| |badge3| |badge4| |badge5| \n\nThis addon adds an integrated Job Queue to Odoo.\n\nIt allows to postpone method calls executed asynchronously.\n\nJobs are executed in the background by a ``Jobrunner``, in their own transaction.\n\nExample:\n\n.. code-block:: python\n\n from odoo import models, fields, api\n from odoo.addons.queue_job.job import job\n\n class MyModel(models.Model):\n _name = 'my.model'\n\n @api.multi\n @job\n def my_method(self, a, k=None):\n _logger.info('executed with a: %s and k: %s', a, k)\n\n\n class MyOtherModel(models.Model):\n _name = 'my.other.model'\n\n @api.multi\n def button_do_stuff(self):\n self.env['my.model'].with_delay().my_method('a', k=2)\n\n\nIn the snippet of code above, when we call ``button_do_stuff``, a job capturing\nthe method and arguments will be postponed. It will be executed as soon as the\nJobrunner has a free bucket, which can be instantaneous if no other job is\nrunning.\n\n\nFeatures:\n\n* Views for jobs, jobs are stored in PostgreSQL\n* Jobrunner: execute the jobs, highly efficient thanks to PostgreSQL's NOTIFY\n* Channels: give a capacity for the root channel and its sub-channels and\n segregate jobs in them. Allow for instance to restrict heavy jobs to be\n executed one at a time while little ones are executed 4 at a times.\n* Retries: Ability to retry jobs by raising a type of exception\n* Retry Pattern: the 3 first tries, retry after 10 seconds, the 5 next tries,\n retry after 1 minutes, ...\n* Job properties: priorities, estimated time of arrival (ETA), custom\n description, number of retries\n* Related Actions: link an action on the job view, such as open the record\n concerned by the job\n\n**Table of contents**\n\n.. contents::\n :local:\n\nInstallation\n============\n\nBe sure to have the ``requests`` library.\n\nConfiguration\n=============\n\n* Using environment variables and command line:\n\n * Adjust environment variables (optional):\n\n - ``ODOO_QUEUE_JOB_CHANNELS=root:4`` or any other channels configuration. \n The default is ``root:1``\n\n - if ``xmlrpc_port`` is not set: ``ODOO_QUEUE_JOB_PORT=8069``\n\n * Start Odoo with ``--load=web,queue_job``\n and ``--workers`` greater than 1. [1]_\n\n\n* Using the Odoo configuration file:\n\n.. code-block:: ini\n\n [options]\n (...)\n workers = 6\n server_wide_modules = web,queue_job\n\n (...)\n [queue_job]\n channels = root:2\n\n* Confirm the runner is starting correctly by checking the odoo log file:\n\n.. code-block::\n\n ...INFO...queue_job.jobrunner.runner: starting\n ...INFO...queue_job.jobrunner.runner: initializing database connections\n ...INFO...queue_job.jobrunner.runner: queue job runner ready for db \n ...INFO...queue_job.jobrunner.runner: database connections ready\n\n* Create jobs (eg using ``base_import_async``) and observe they\n start immediately and in parallel.\n\n* Tip: to enable debug logging for the queue job, use\n ``--log-handler=odoo.addons.queue_job:DEBUG``\n\n.. [1] It works with the threaded Odoo server too, although this way\n of running Odoo is obviously not for production purposes.\n\nUsage\n=====\n\nTo use this module, you need to:\n\n#. Go to ``Job Queue`` menu\n\nDevelopers\n~~~~~~~~~~\n\n**Bypass jobs on running Odoo**\n\nWhen you are developing (ie: connector modules) you might want\nto bypass the queue job and run your code immediately.\n\nTo do so you can set `TEST_QUEUE_JOB_NO_DELAY=1` in your enviroment.\n\n**Bypass jobs in tests**\n\nWhen writing tests on job-related methods is always tricky to deal with\ndelayed recordsets. To make your testing life easier\nyou can set `test_queue_job_no_delay=True` in the context.\n\nTip: you can do this at test case level like this\n\n.. code-block:: python\n\n @classmethod\n def setUpClass(cls):\n super().setUpClass()\n cls.env = cls.env(context=dict(\n cls.env.context,\n test_queue_job_no_delay=True, # no jobs thanks\n ))\n\nThen all your tests execute the job methods synchronously\nwithout delaying any jobs.\n\nKnown issues / Roadmap\n======================\n\n* After creating a new database or installing ``queue_job`` on an\n existing database, Odoo must be restarted for the runner to detect it.\n\n* When Odoo shuts down normally, it waits for running jobs to finish.\n However, when the Odoo server crashes or is otherwise force-stopped,\n running jobs are interrupted while the runner has no chance to know\n they have been aborted. In such situations, jobs may remain in\n ``started`` or ``enqueued`` state after the Odoo server is halted.\n Since the runner has no way to know if they are actually running or\n not, and does not know for sure if it is safe to restart the jobs,\n it does not attempt to restart them automatically. Such stale jobs\n therefore fill the running queue and prevent other jobs to start.\n You must therefore requeue them manually, either from the Jobs view,\n or by running the following SQL statement *before starting Odoo*:\n\n.. code-block:: sql\n\n update queue_job set state='pending' where state in ('started', 'enqueued')\n\nChangelog\n=========\n\n.. [ The change log. The goal of this file is to help readers\n understand changes between version. The primary audience is\n end users and integrators. Purely technical changes such as\n code refactoring must not be mentioned here.\n\n This file may contain ONE level of section titles, underlined\n with the ~ (tilde) character. Other section markers are\n forbidden and will likely break the structure of the README.rst\n or other documents where this fragment is included. ]\n\nNext\n~~~~\n\n* [IMP] Dont' start the Jobrunner if root channel's capacity\n is explicitly set to 0\n* [ADD] Ability to set several jobs to done using an multi-action\n (port of `#59 `_)\n* [REF] Extract a method handling the post of a message when a job is failed,\n allowing to modify this behavior from addons\n\n12.0.1.0.0 (2018-10-02)\n~~~~~~~~~~~~~~~~~~~~~~~\n\n* [MIGRATION] from 11.0 branched at rev. b0945be\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues `_.\nIn case of trouble, please check there if your issue has already been reported.\nIf you spotted it first, help us smashing it by providing a detailed and welcomed\n`feedback `_.\n\nDo not contact contributors directly about support or help with technical issues.\n\nCredits\n=======\n\nAuthors\n~~~~~~~\n\n* Camptocamp\n* ACSONE SA/NV\n\nContributors\n~~~~~~~~~~~~\n\n* Guewen Baconnier \n* St\u00e9phane Bidoul \n* Matthieu Dietrich \n* Jos De Graeve \n* David Lefever \n* Laurent Mignon \n* Laetitia Gangloff \n\nMaintainers\n~~~~~~~~~~~\n\nThis module is maintained by the OCA.\n\n.. image:: https://odoo-community.org/logo.png\n :alt: Odoo Community Association\n :target: https://odoo-community.org\n\nOCA, or the Odoo Community Association, is a nonprofit organization whose\nmission is to support the collaborative development of Odoo features and\npromote its widespread use.\n\n.. |maintainer-guewen| image:: https://github.com/guewen.png?size=40px\n :target: https://github.com/guewen\n :alt: guewen\n\nCurrent `maintainer `__:\n\n|maintainer-guewen| \n\nThis module is part of the `OCA/queue `_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/OCA/queue/queue_job", "keywords": "", "license": "AGPL-3", "maintainer": "", "maintainer_email": "", "name": "odoo12-addon-queue-job", "package_url": "https://pypi.org/project/odoo12-addon-queue-job/", "platform": "", "project_url": "https://pypi.org/project/odoo12-addon-queue-job/", "project_urls": { "Homepage": "https://github.com/OCA/queue/queue_job" }, "release_url": "https://pypi.org/project/odoo12-addon-queue-job/12.0.1.0.1/", "requires_dist": [ "odoo (<12.1dev,>=12.0a)", "requests" ], "requires_python": ">=3.5", "summary": "Job Queue", "version": "12.0.1.0.1" }, "last_serial": 5987708, "releases": { "12.0.1.0.0.99.dev11": [ { "comment_text": "", "digests": { "md5": "840d20faac6a5ec9358167997b3e42e2", "sha256": "907b12288449fb0f699ff036e591cbf230c35b88a66ea7d559ed04244ee84373" }, "downloads": -1, "filename": "odoo12_addon_queue_job-12.0.1.0.0.99.dev11-py3-none-any.whl", "has_sig": false, "md5_digest": "840d20faac6a5ec9358167997b3e42e2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 67949, "upload_time": "2018-12-14T05:56:19", "url": "https://files.pythonhosted.org/packages/6a/a4/a15a1289f5c993521fe922dc8e9cb48a0a784a7b92176d7d27dc1f751470/odoo12_addon_queue_job-12.0.1.0.0.99.dev11-py3-none-any.whl" } ], "12.0.1.0.0.99.dev14": [ { "comment_text": "", "digests": { "md5": "3bb4e52da29eff8a81aea99c4ce35740", "sha256": "4901d3825baa12fe2938215af5145ca14b6ec68884301705b4bfed059d70b327" }, "downloads": -1, "filename": "odoo12_addon_queue_job-12.0.1.0.0.99.dev14-py3-none-any.whl", "has_sig": false, "md5_digest": "3bb4e52da29eff8a81aea99c4ce35740", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 67950, "upload_time": "2019-03-14T05:59:02", "url": "https://files.pythonhosted.org/packages/21/41/c33d8226dcf75b86e8c8e84d4fcc0262bb6de8d58c28e3034c4599acf199/odoo12_addon_queue_job-12.0.1.0.0.99.dev14-py3-none-any.whl" } ], "12.0.1.0.0.99.dev17": [ { "comment_text": "", "digests": { "md5": "87432d542ffec21054a45d539811ff4e", "sha256": "10dabaf4d826c9b9362d567cafd70479cd8db34c4ef6a3b7e98f199e887eaaf4" }, "downloads": -1, "filename": "odoo12_addon_queue_job-12.0.1.0.0.99.dev17-py3-none-any.whl", "has_sig": false, "md5_digest": "87432d542ffec21054a45d539811ff4e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 67985, "upload_time": "2019-03-16T05:59:45", "url": "https://files.pythonhosted.org/packages/17/28/178d8390251d3de98ff5b035343570d5b96d66d0c2ff79255f404a207a6a/odoo12_addon_queue_job-12.0.1.0.0.99.dev17-py3-none-any.whl" } ], "12.0.1.0.0.99.dev22": [ { "comment_text": "", "digests": { "md5": "4c00cd312e0c2db85e997ac9ed1502b8", "sha256": "6c7ca540bb5898744270613dbd01c2676253abc0918a22052823b84bd743289c" }, "downloads": -1, "filename": "odoo12_addon_queue_job-12.0.1.0.0.99.dev22-py3-none-any.whl", "has_sig": false, "md5_digest": "4c00cd312e0c2db85e997ac9ed1502b8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 67873, "upload_time": "2019-03-30T10:51:47", "url": "https://files.pythonhosted.org/packages/78/99/c982d900031c53b7f9d994de97a118e225f42eba3dddd7dae052d14c00b0/odoo12_addon_queue_job-12.0.1.0.0.99.dev22-py3-none-any.whl" } ], "12.0.1.0.0.99.dev30": [ { "comment_text": "", "digests": { "md5": "9bf1d3f13b4eb84ebcee9a6a365384ec", "sha256": "0e405aa4528c45769e999561e9ab5a606953bc3da482e51fcebb1e0300346b78" }, "downloads": -1, "filename": "odoo12_addon_queue_job-12.0.1.0.0.99.dev30-py3-none-any.whl", "has_sig": false, "md5_digest": "9bf1d3f13b4eb84ebcee9a6a365384ec", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 68381, "upload_time": "2019-04-03T05:51:33", "url": "https://files.pythonhosted.org/packages/61/98/f1dce192c2c9da19d692c74624ad493e9d6a27eea30e5b9548eeae9f857b/odoo12_addon_queue_job-12.0.1.0.0.99.dev30-py3-none-any.whl" } ], "12.0.1.0.0.99.dev33": [ { "comment_text": "", "digests": { "md5": "1b89aa629c5ac81bde2222c576672586", "sha256": "a0f1c9b62a7758fd96512a564b26d0a35700b523b47766a6486a8f090d5748c2" }, "downloads": -1, "filename": "odoo12_addon_queue_job-12.0.1.0.0.99.dev33-py3-none-any.whl", "has_sig": false, "md5_digest": "1b89aa629c5ac81bde2222c576672586", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 72327, "upload_time": "2019-07-05T05:08:04", "url": "https://files.pythonhosted.org/packages/e2/40/d8d523d28b15afff8e509eb0fd8b3ad419cf922a7f14d482690dd67761bf/odoo12_addon_queue_job-12.0.1.0.0.99.dev33-py3-none-any.whl" } ], "12.0.1.0.0.99.dev34": [ { "comment_text": "", "digests": { "md5": "7cabb4bf35351ff838188dcc1bdd031c", "sha256": "3719a21dc7983d3708e28b533cdfe1091e4c0b675f3dd4b88862b1123bc49831" }, "downloads": -1, "filename": "odoo12_addon_queue_job-12.0.1.0.0.99.dev34-py3-none-any.whl", "has_sig": false, "md5_digest": "7cabb4bf35351ff838188dcc1bdd031c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 72418, "upload_time": "2019-07-14T05:10:19", "url": "https://files.pythonhosted.org/packages/e3/37/f1d708fbd5fc550c1eb19396c8f829effaef4d7813b3033c1b7b5d13abe0/odoo12_addon_queue_job-12.0.1.0.0.99.dev34-py3-none-any.whl" } ], "12.0.1.0.0.99.dev37": [ { "comment_text": "", "digests": { "md5": "599959b024eb9125645058173bd0316f", "sha256": "09ef52152c28e1e7c6b31a04ed1b1c43d12d60e7b00f9b9214115d01622d1b2d" }, "downloads": -1, "filename": "odoo12_addon_queue_job-12.0.1.0.0.99.dev37-py3-none-any.whl", "has_sig": false, "md5_digest": "599959b024eb9125645058173bd0316f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 79043, "upload_time": "2019-07-26T05:07:37", "url": "https://files.pythonhosted.org/packages/8c/97/eedf8e04acc012af15f96f52d13d05bb3222587653da0775ee187d6d81c0/odoo12_addon_queue_job-12.0.1.0.0.99.dev37-py3-none-any.whl" } ], "12.0.1.0.0.99.dev38": [ { "comment_text": "", "digests": { "md5": "dcf463a9ef2d9de6abc4544edcdaa52e", "sha256": "25aedb978d52e594d3ded99b263c49038cb2ad35a24531ffbeae62ce3e275dab" }, "downloads": -1, "filename": "odoo12_addon_queue_job-12.0.1.0.0.99.dev38-py3-none-any.whl", "has_sig": false, "md5_digest": "dcf463a9ef2d9de6abc4544edcdaa52e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 79042, "upload_time": "2019-07-31T05:17:31", "url": "https://files.pythonhosted.org/packages/29/2f/12dbb63d857529ca1b875371fa56d9e5fdcb1a71ca3eaad16273206fa664/odoo12_addon_queue_job-12.0.1.0.0.99.dev38-py3-none-any.whl" } ], "12.0.1.0.0.99.dev41": [ { "comment_text": "", "digests": { "md5": "f9d1d8b63048cae6ba530c4ed8742286", "sha256": "51cf6e6b5ca32f4028bec770951a3e2f0c43c7f4cb1684bc429e582a11ddb062" }, "downloads": -1, "filename": "odoo12_addon_queue_job-12.0.1.0.0.99.dev41-py3-none-any.whl", "has_sig": false, "md5_digest": "f9d1d8b63048cae6ba530c4ed8742286", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 79345, "upload_time": "2019-08-07T05:12:26", "url": "https://files.pythonhosted.org/packages/b0/c5/4d221181ee70b117f42cdedc9023774cd8b07804635757f757555f8afffe/odoo12_addon_queue_job-12.0.1.0.0.99.dev41-py3-none-any.whl" } ], "12.0.1.0.0.99.dev5": [ { "comment_text": "", "digests": { "md5": "de91b9cfba935e2af480c2d2c0ebfe8e", "sha256": "3b52ff43e810244951fca23232eba0f8b10b0ab4a8fff269eabc923de44ab818" }, "downloads": -1, "filename": "odoo12_addon_queue_job-12.0.1.0.0.99.dev5-py3-none-any.whl", "has_sig": false, "md5_digest": "de91b9cfba935e2af480c2d2c0ebfe8e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 63379, "upload_time": "2018-10-09T04:53:07", "url": "https://files.pythonhosted.org/packages/9d/84/6b085f694bc1f2e32f57ed60967a790d5a45e3ee8eea020f330e86cce168/odoo12_addon_queue_job-12.0.1.0.0.99.dev5-py3-none-any.whl" } ], "12.0.1.0.1": [ { "comment_text": "", "digests": { "md5": "8bd26561c2d8792903f9086a83dba125", "sha256": "baf83365aa3a54581119258cd690610575fdb3abcfc522002a4f324bdff16e4b" }, "downloads": -1, "filename": "odoo12_addon_queue_job-12.0.1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "8bd26561c2d8792903f9086a83dba125", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 79841, "upload_time": "2019-08-09T05:12:40", "url": "https://files.pythonhosted.org/packages/82/10/0b5a23e052f702d9977c2fe471c7699c59f0544495ecc447aed6075685ad/odoo12_addon_queue_job-12.0.1.0.1-py3-none-any.whl" } ], "12.0.1.0.1.99.dev1": [ { "comment_text": "", "digests": { "md5": "89048702849b38a983940fb1f61b7659", "sha256": "0854ef93d11f72918534eb54fedde1270d2c38033ef63995ff67b9828116b9cc" }, "downloads": -1, "filename": "odoo12_addon_queue_job-12.0.1.0.1.99.dev1-py3-none-any.whl", "has_sig": false, "md5_digest": "89048702849b38a983940fb1f61b7659", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 79922, "upload_time": "2019-08-29T05:13:47", "url": "https://files.pythonhosted.org/packages/3e/d5/c496336adff9155b7f1a82219f371e883b51c38ffad17911c034ea89e545/odoo12_addon_queue_job-12.0.1.0.1.99.dev1-py3-none-any.whl" } ], "12.0.1.0.1.99.dev3": [ { "comment_text": "", "digests": { "md5": "d3c6807d62080d5bd5994e7cc3eab3ac", "sha256": "091a858883541411d16be577de6f8519daebf801d7efd03a30749e8d5fe90422" }, "downloads": -1, "filename": "odoo12_addon_queue_job-12.0.1.0.1.99.dev3-py3-none-any.whl", "has_sig": false, "md5_digest": "d3c6807d62080d5bd5994e7cc3eab3ac", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 77310, "upload_time": "2019-08-30T05:14:27", "url": "https://files.pythonhosted.org/packages/5a/47/1a2656f5e6420a52d3b15a3985600c350fbc1a2c3fa997d133b8336403ce/odoo12_addon_queue_job-12.0.1.0.1.99.dev3-py3-none-any.whl" } ], "12.0.1.0.1.99.dev4": [ { "comment_text": "", "digests": { "md5": "7f42362d23ffae0d91eedef6427f6777", "sha256": "354e493d930b057c5796b8408cb28ca0317121b418832741966961924618d73c" }, "downloads": -1, "filename": "odoo12_addon_queue_job-12.0.1.0.1.99.dev4-py3-none-any.whl", "has_sig": false, "md5_digest": "7f42362d23ffae0d91eedef6427f6777", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 77308, "upload_time": "2019-09-01T05:14:32", "url": "https://files.pythonhosted.org/packages/b2/87/cc4e75cd0fb9ccb4f1980e9c47cba24243de2500c53ebeb5f99f57de13d3/odoo12_addon_queue_job-12.0.1.0.1.99.dev4-py3-none-any.whl" } ], "12.0.1.0.1.99.dev5": [ { "comment_text": "", "digests": { "md5": "3ad6df0ea481bae26ec59df67e0032bd", "sha256": "4aa60033083e618896b050a57cf3f9643d920986bc2d0d7552dd28112360d3f8" }, "downloads": -1, "filename": "odoo12_addon_queue_job-12.0.1.0.1.99.dev5-py3-none-any.whl", "has_sig": false, "md5_digest": "3ad6df0ea481bae26ec59df67e0032bd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 77375, "upload_time": "2019-10-02T05:15:56", "url": "https://files.pythonhosted.org/packages/3d/f4/9cb854d7243dd83943e30a696336c29ed7d8cc1d3a90afa1a9de1f279f39/odoo12_addon_queue_job-12.0.1.0.1.99.dev5-py3-none-any.whl" } ], "12.0.1.0.1.99.dev6": [ { "comment_text": "", "digests": { "md5": "816a902030966ef5ff8278275e28fe8a", "sha256": "7d1487826e5ee8abcf33b933fb98f2b226bbaf55373ab1be9a1f8a998181b119" }, "downloads": -1, "filename": "odoo12_addon_queue_job-12.0.1.0.1.99.dev6-py3-none-any.whl", "has_sig": false, "md5_digest": "816a902030966ef5ff8278275e28fe8a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 77383, "upload_time": "2019-10-17T05:15:10", "url": "https://files.pythonhosted.org/packages/91/b7/e3ceaa9b4cf0c4a6d2d36bb24e528152e010580384e12a665775e98582ee/odoo12_addon_queue_job-12.0.1.0.1.99.dev6-py3-none-any.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8bd26561c2d8792903f9086a83dba125", "sha256": "baf83365aa3a54581119258cd690610575fdb3abcfc522002a4f324bdff16e4b" }, "downloads": -1, "filename": "odoo12_addon_queue_job-12.0.1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "8bd26561c2d8792903f9086a83dba125", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 79841, "upload_time": "2019-08-09T05:12:40", "url": "https://files.pythonhosted.org/packages/82/10/0b5a23e052f702d9977c2fe471c7699c59f0544495ecc447aed6075685ad/odoo12_addon_queue_job-12.0.1.0.1-py3-none-any.whl" } ] }