{ "info": { "author": "", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: Odoo", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Operating System :: POSIX", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "acsoo - Acsone Odoo Dev Tools\n=============================\n\n.. image:: https://img.shields.io/badge/license-GPL--3-blue.svg\n :target: http://www.gnu.org/licenses/gpl-3.0-standalone.html\n :alt: License: GPL-3\n.. image:: https://badge.fury.io/py/acsoo.svg\n :target: http://badge.fury.io/py/acsoo\n.. image:: https://travis-ci.org/acsone/acsoo.svg?branch=master\n :target: https://travis-ci.org/acsone/acsoo\n.. image:: https://codecov.io/gh/acsone/acsoo/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/acsone/acsoo\n\nThis is a set of command-line utilities to facilitate\nthe Odoo development workflow at Acsone.\n\nIt assumes the project is a setuptools-based python package\nthat can be packaged and installed with pip.\n\n.. contents::\n\nCriteria for tools to be included here:\n\n* being small wrappers around standard commands (``git``, ``pip``, etc)\n* yet being sufficiently non-trivial to be error-prone or time consuming when\n done manually\n* being used across several Acsone Odoo projects\n\nInstallation\n~~~~~~~~~~~~\n\n .. code:: shell\n\n pip install acsoo\n\n.. note::\n\n Since ``acsoo`` has a lot of dependencies that are not required at runtime, it\n is not recommanded to install it in the same virtualenv as your project.\n A good approach is to install it in it's own virtual env and symlink the ``acsoo``,\n \u00a0 ``mrbob`` and ``bumpversion`` executables somewhere in your PATH.\n \u00a0 By the way, `pipsi `_ is an interesting way to manage\n such python scripts without polluting your system.\n\nTo enable bash completion, add this line in your ``.bashrc``:\n\n .. code:: shell\n\n eval \"$(_ACSOO_COMPLETE=source acsoo)\"\n\nWhat we have here\n~~~~~~~~~~~~~~~~~\n\nBelow, the list of available commands with a few examples.\n\nUse ``acsoo --help`` or ``acsoo --help`` for more information.\n\nInitialize a new project\n------------------------\n\n .. code:: shell\n\n mrbob acsoo:templates/project\n cd {project name}\n mkvirtualenv {project name} -a .\n\nacsoo tag\n---------\n\nTag the current project after ensuring everything has been commited to git.\n\nacsoo tag_requirements\n----------------------\n\nTag all VCS requirements found in ``requirements.txt``, so\nthe referenced commits are not lost in case of VCS garbage collection.\n\nacsoo wheel\n-----------\n\nBuild wheels for all dependencies found in ``requirements.txt``,\nplus the project in the current directory.\n\nThe main advantage of this command (compared to a regular\n`pip wheel -r requirements.txt -e . --wheel_dir=release --src src`),\nis that it maintains a cache of git dependencies that are pinned with\na sha1.\n\nacsoo release\n-------------\n\nPerform ``acsoo tag``, ``acsoo tag_requirements`` and\n``acsoo wheel`` in one command.\n\nacsoo flake8\n------------\n\nRun `flake8 `_ with sensible default for Odoo code.\n\nIt is possible to pass additional options to the ``flake8`` command, eg:\n\n .. code:: shell\n\n acsoo flake8 -- --ignore E24,W504\n\nacsoo pylint\n------------\n\nRun `pylint `_ on detected Odoo addons in odoo/addons,\nodoo_addons or the current directory.\nIt automatically uses the `pylint-odoo `_ plugin and\nruns with a reasonable configuration, including an opinionated set of disabled message.\n\nIt is possible to pass additional options to the ``pylint`` command, eg:\n\n .. code:: shell\n\n acsoo pylint -- --disable missing-final-newline\n\nThis command returns an non-zero exit code if any message is reported.\nIt is however possibly to display messages while reporting success, eg:\n\n .. code:: shell\n\n acsoo pylint --expected api-one-deprecated:2,line-too-long\n\nThe above command succeeds despite having exactly 2 ``api-one-deprecated`` or\nany number of ``line-too-long`` messages being reported.\n\nIt is also possible to force failure on messages that are ``expected`` in the\ndefault configuration, eg to fail on ``fixme`` errors, just expect 0 ``fixme``\nmessages, like this:\n\n .. code:: shell\n\n acsoo pylint --expected fixme:0\n\nacsoo addons\n------------\n\nA set of commands to print addons lists, useful when running tests.\n\n .. code:: shell\n\n acsoo addons list\n acsoo addons list-depends\n\nacsoo checklog\n--------------\n\nCheck if an odoo log file contains error, with the possibility to ignore some\nerrors based on regular expressions.\n\n .. code:: shell\n\n acsoo checklog odoo.log\n odoo -d mydb -i base --stop-after-init | acsoo checklog\n acsoo checklog --ignore \"WARNING.*blah\" odoo.log\n\nbumpversion\n-----------\nBumpversion is a software automatically installed with acsoo. It allows you to\nincrement or simply change the version of the project in several files at once,\nincluding acsoo.cfg.\n\n .. code:: shell\n\n bumpversion {part}\n\nWhere part is 'major', 'minor' or 'patch'\n(see `semantic versioning `_).\n\nConfigure bumpversion by editing the .bumpversion.cfg config file at the root\nof your project. See the bumpversion `documentation\n`_ to go further\n(automatic commit, tag, customisation...).\n\nacsoo.cfg\n~~~~~~~~~\n\nA file named ``acsoo.cfg`` at the project root helps you set sensible defaults.\n\nHere is a minimal example:\n\n .. code:: ini\n\n [acsoo]\n trigram=xyz\n series=10.0\n version=1.5.0\n\nAnd a more elaborate example:\n\n .. code:: ini\n\n [acsoo]\n trigram=xyz\n series=11.0\n version=1.5.2\n pushable=\n github.com:acsone\n github.com:mozaik\n\n [checklog]\n ignore=\n WARNING .* module .*: description is empty !\n WARNING: unable to set column .* of table account_analytic_account not null\n\n [pylint]\n expected=manifest-required-author:1\n pylint-options=\n --disable=deprecated-data-xml-node\n\nIdeas\n~~~~~\n\nacsoo freeze\n------------\n\n``pip freeze`` (which works very well as is) with the following additions\n\n* exluding some common dev tools that are not required in production\n (pudb, ipdb, acsoo, git-aggregator, setuptools-odoo...)\n and their dependencies unless such dependencies are required by the project\n (directly or indirectly).\n* excluding the project itself (as usual for python requirements.txt files)\n\nInspiration to be found in https://pypi.python.org/pypi/pipdeptree, although I don't\nthink acsoo should depend on that, as it's only a thin wrapper around the ``pip`` api.\n\nUseful links\n~~~~~~~~~~~~\n\n- pypi page: https://pypi.python.org/pypi/acsone\n- code repository: https://github.com/acsone/acsoo\n- report issues at: https://github.com/acsone/acsoo/issues\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.9.0 (2019-02-28)\n------------------\n\n- [IMP] project template: use pre-commit (black, isort, flake8)\n- [FIX] project template: fail on click-odoo-update error\n- [FIX] project template: fix deploy log file\n- [FIX] acsoo pylint: compatibility with pylint 2\n\n1.8.3 (2019-01-22)\n------------------\n- [FIX] acsoo pylint: Adapt config to also work with pytlint-odoo 2.0.1\n- [IMP] project template: use click-odoo-update\n\n1.8.2 (2018-11-05)\n------------------\n- [IMP] project template: better way to declare python version\n in .gitlab-ci.yml\n- Fix acsoo tag for Odoo 12\n\n1.8.1 (2018-10-30)\n------------------\n- [IMP] ignore pylint C0303 (https://github.com/PyCQA/pylint/issues/289)\n\n1.8.0 (2018-10-29)\n------------------\n- [IMP] acsoo wheel: add --no-deps, so we can build requirements.txt without\n fetching dependencies, and later install the project with --no-index and\n --find-links=release/ so as to detect missing dependencies (#38)\n- [IMP] acsoo wheel: add --exclude-project option (to build requirements.txt\n without the current project), in preparation of #44\n- [IMP] acsoo wheel: use a cache of editable git dependencies\n- [IMP] acsoo wheel: use pip wheel -e . to build project instead of\n setup.py bdist_wheel, since the reason we were doing that has apparently\n been resolved in recent pip version (pip issue 3499 referred in a comment\n is apparently unrelated unfortunately, so I'm not sure why we were\n doing that exactly, probably https://github.com/pypa/pip/issues/3500)\n- [IMP] flake8: ignore W503 and W504 by default (line break around logical\n operators)\n- [IMP] project template: Odoo 12 support\n- [IMP] project template: pin acsoo version\n- [IMP] project template: acsoo wheel --no-deps, so, combined with\n pip install --no-index in the test stage, it verifies that all dependencies\n are included in requirements.txt\n\n1.7.1 (2018-07-15)\n------------------\n- [IMP] project template: add makepot in .gitlab-ci.yml\n- [IMP] pylint: whitelist lxml c library\n\n1.7.0 (2018-06-04)\n------------------\n- [IMP] more python 3 and Odoo 11 support\n- [IMP] project template: build stage in gitlab-ci\n- [IMP] project template: new style deploy / upgrade\n (using checksum upgrades and click-odoo-upgrade script)\n- [IMP] project template: enforce odoo-autodiscover>=2 and do not use it\n for Odoo >= 11\n- [IMP] add --dry-run option to acsoo tag and tag_requirements\n- [IMP] make the list of places where tag_requirements can push\n configurable\n- [IMP] project template: on demand installation of acsoo and ssh-agent\n- [IMP] project template: use click-odoo-initdb in gitlab-ci\n\n1.6.0 (2018-02-16)\n------------------\n- [IMP] checklog: add --no-err-if-empty option\n- [IMP] python 3 support\n- [IMP] preliminary Odoo 11 support\n- [IMP] project template: various improvements\n- [IMP] refactoring of get_installable_addons() method for better reusability\n\n1.5.0 (2017-09-19)\n------------------\n- [IMP] tag_requirements: fetch more aggressively; this solves the errors\n trying to write ref with non existent object\n- [IMP] tag: always tag requirements when doing acsoo tag\n- [IMP] tag: tag requirements before tagging project, so if something fails\n when tagging the requirements the project is not tagged and the release\n build is not triggered.\n- [ADD] addons: add --separator option (and fix tests that were not testing much)\n- [IMP] addons: consider current dir as addons dir candidate\n- [IMP] pylint: look for module to test in current dir by default, using the\n same algorithm as ``addons list``\n- [IMP] pylint: support python 3 style odoo/addons namespace (without __init__.py)\n\n1.4.3 (2017-06-16)\n------------------\n- [IMP] checklog: consider ignore lines starting with # as comments\n- [FIX] checklog: the previous release broke checklog color output\n\n1.4.2 (2017-06-16)\n------------------\n- [IMP] checklog: fail if no log record found in input\n- [IMP] checklog: echo with click to be less sensitive to unicode issues\n\n1.4.1 (2017-06-14)\n------------------\n- [FIX] regression in acsoo release\n\n1.4.0 (2017-06-13)\n------------------\n- [IMP] colored logging\n- [IMP] major change to acsoo tag and tag_editable_requirements. These changes\n make it easier to work with a CI-driven release process that is triggered on\n new tags. The usual manual ``acsoo release`` process should be mostly unimpacted by\n these changes.\n\n - ``tag_editable_requirements`` is now ``tag_requirements``.\n - the tags structure has changed from ``{series}-{trigram}_{version}`` to\n ``{series}-{trigram}-{req_sha}-{egg}``, where ``{req_sha}`` is the sha of the\n last change to ``requirements.txt``.\n - ``tag_requirements`` includes the egg name in the tag so different commits\n in the same repo can be tagged (before, all addons in a given dependency repo had\n to be on the same commit).\n - when a tag for the given series, trigram and egg already exists on the\n dependency commit, ``tag_requirements`` does not attempt to create another\n tag (this avoids creating useless tags or forced tags) and\n this is sufficient because the sole purpose of these dependency tags is\n to avoid commits to be garbage collected.\n - ``acsoo tag`` now invokes ``tag_requirements``. In most cases however this\n will not place additional tags on dependencies, because the normal workflow\n is to invoke ``tag_requirements`` as soon as ``requirements.txt`` is updated.\n - ``tag_requirements`` automatically transforms http(s) urls into ssh urls\n for the purpose of pushing tags. This allows to maximize the use of http(s)\n urls in requirements so CI and scripts do not require ssh access\n to the public dependencies. This currently only works for the acsone organization\n on github but the mechanism is easy to extend, should the need arise.\n\n1.3.0 (2017-06-04)\n------------------\n- [IMP] flake8: read additional ``flake8-options`` in acsoo configuration file.\n- [IMP] template: series-dependent odoo command in ``.gitlab.ci.yml``.\n- [IMP] template: createdb in ``.gitlab-ci.yml`` because Odoo 8 does not do it by\n itself.\n- [ADD] addons list-depends: ``--exclude`` option\n\n1.2.2 (2017-05-30)\n------------------\n- [FIX] regression in ``tag``, ``tag_editable_requirements`` and ``release`` commands.\n\n1.2.1 (2017-05-27)\n------------------\n- [IMP] add possibility to provide main config file as option.\n- [IMP] checklog: read default options from ``[checklog]`` section of config file.\n- [IMP] pylint: read default options from ``[pylint]`` section of config file.\n- [IMP] pylint: the module or package to lint may be provided with ``-m``.\n- [IMP] flake8: read default options from ``[flake8]`` section of config file.\n The only option so far is ``config`` to provide an alternate flake8\n configuration file. This is useful so developer only need to type\n ``acsoo flake8`` locally, even when a specific configuration is needed,\n so it's trivial to run locally with the same config as in CI.\n\n1.1.0 (2017-05-25)\n------------------\n- [IMP] pylint: BREAKING the package to test must be provided explicitly,\n as soon as additional pylint options are provided,\n so as to enable easy local testing of a subset of a project. Examples:\n ``acsoo pylint -- -d some-message odoo``, ``acsoo pylint -- odoo.addons.xyz``;\n- [IMP] pylint: disable more code complexity errors: ``too-many-nested-blocks``,\n ``too-many-return-statements``.\n- [IMP] pylint: display messages causing failure last, so emails from CI.\n that show the last lines of the log are more relevant.\n- [IMP] pylint: display summary of messages that did not cause failure, also\n when there is no failure.\n- [ADD] ``acsoo addons list`` and ``acsoo addons list-depends``.\n- [ADD] ``acsoo checklog``.\n\n1.0.1 (2017-05-21)\n------------------\n- First public release.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "", "keywords": "", "license": "GPLv3+", "maintainer": "", "maintainer_email": "", "name": "acsoo", "package_url": "https://pypi.org/project/acsoo/", "platform": "", "project_url": "https://pypi.org/project/acsoo/", "project_urls": null, "release_url": "https://pypi.org/project/acsoo/1.9.0/", "requires_dist": [ "appdirs", "bobtemplates.odoo", "click", "colorama", "configparser", "flake8", "lxml", "pip (>=9.0.1)", "pylint-odoo", "setuptools (<31,>=20)", "wheel (>=0.29)", "bumpversion" ], "requires_python": "", "summary": "Acsone Odoo Dev Tools", "version": "1.9.0" }, "last_serial": 4880491, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "2481bb48ea7c63831bd636ecc32eb32c", "sha256": "4a7037e15ad07e297cdc4bd323de69b0bafb4bdb7e6ccc0e8dbc98f391aae31b" }, "downloads": -1, "filename": "acsoo-1.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "2481bb48ea7c63831bd636ecc32eb32c", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 39788, "upload_time": "2017-05-21T11:16:09", "url": "https://files.pythonhosted.org/packages/a8/24/94363c1c79f5ec7526fb327845bc41e86eb95992dc4d354f4b6e8c08e464/acsoo-1.0.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "941694a25c70c111b3d88706d1e57c90", "sha256": "5087623e1db46397420bbe310039e3c935038802eee5d79bd2bd8e522a2fdabd" }, "downloads": -1, "filename": "acsoo-1.0.0.tar.gz", "has_sig": false, "md5_digest": "941694a25c70c111b3d88706d1e57c90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40121, "upload_time": "2017-05-21T11:16:11", "url": "https://files.pythonhosted.org/packages/20/52/8859f7fc34a3bc612ac5ddceec8afeac7b6ce3dcdea7f8e8312b0dc35992/acsoo-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "94e9dfb0990e428dec13b68bcbcf1633", "sha256": "53222c6cf113d21866dcf0c7cae23ac7f1e052de52d8ff31dcd6b109f65b4654" }, "downloads": -1, "filename": "acsoo-1.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "94e9dfb0990e428dec13b68bcbcf1633", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 39817, "upload_time": "2017-05-21T11:58:23", "url": "https://files.pythonhosted.org/packages/38/a4/a31490b6dbdb44c91e76a063b71154d012a0a1af5b95268142af163fc451/acsoo-1.0.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ee717c88047243acec762bdb3d74cdc5", "sha256": "6f6336b78fc6e367d53df97e6f095d7375eaa9e57124057d7ae2a05886e0128e" }, "downloads": -1, "filename": "acsoo-1.0.1.tar.gz", "has_sig": false, "md5_digest": "ee717c88047243acec762bdb3d74cdc5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40151, "upload_time": "2017-05-21T11:58:25", "url": "https://files.pythonhosted.org/packages/cf/e4/14f18eade096ab9449a34609d188245ed7c401555c0357ae609edf1b83cb/acsoo-1.0.1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "39fa80e30ea4228f847dc0fb78448ede", "sha256": "78184ce33bf2dadfec8a8220ef86b94f8d5b3531370a1a48307ab2688c01a720" }, "downloads": -1, "filename": "acsoo-1.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "39fa80e30ea4228f847dc0fb78448ede", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 48135, "upload_time": "2017-05-26T13:10:34", "url": "https://files.pythonhosted.org/packages/ce/99/923744f33a8df47d220751f7b93f01ee23548ee2d02a2750da1efb3f7787/acsoo-1.1.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "96952df748d326973d1948ad50524e04", "sha256": "376acb4331b5a406fa0e7ca70ec6a38cab20bad1d0b4b6546327527583cce13e" }, "downloads": -1, "filename": "acsoo-1.1.0.tar.gz", "has_sig": false, "md5_digest": "96952df748d326973d1948ad50524e04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46726, "upload_time": "2017-05-26T13:10:36", "url": "https://files.pythonhosted.org/packages/4f/0d/95334f5439bb5f91173b9fd9fd7d4e7a318eb4558744fc0b45b261312dd5/acsoo-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "dc92d9b1247154413207d9472cbaf25b", "sha256": "ab4252560c6b47bceebe7e9e17969d5a06d8e2e63d7c4dc5b9c1720700ed89e3" }, "downloads": -1, "filename": "acsoo-1.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "dc92d9b1247154413207d9472cbaf25b", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 50765, "upload_time": "2017-05-27T16:01:58", "url": "https://files.pythonhosted.org/packages/2d/7d/5ee42c3b5963d8e55fa38745d72ca40c97e8feb2301f7e41653c157f9770/acsoo-1.2.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4d602c6d67994be934ce0e09f8556c80", "sha256": "c3f5015c0d777ed345c260e2167ef3a741e8886fe7dfc56d00da50d049950f5c" }, "downloads": -1, "filename": "acsoo-1.2.0.tar.gz", "has_sig": false, "md5_digest": "4d602c6d67994be934ce0e09f8556c80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49892, "upload_time": "2017-05-27T16:02:00", "url": "https://files.pythonhosted.org/packages/e0/cb/a5ff191b166d8b6e9a9fd4133ac7784c06d3a8fef71b67ccceeeed73f164/acsoo-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "73038237785bd8ce1c4483aaf1595fa3", "sha256": "4522c9b7ec06894ce00695afee14f88bdf52c45cfdd8b389b877d5f47de17d4b" }, "downloads": -1, "filename": "acsoo-1.2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "73038237785bd8ce1c4483aaf1595fa3", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 50763, "upload_time": "2017-05-27T18:07:57", "url": "https://files.pythonhosted.org/packages/4a/b7/da62db0ca817bf12b651db26fc274f79e962b23eaf40bc19c3ab4e2cd80b/acsoo-1.2.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ca17878b9c1ccfb67efef78130677717", "sha256": "17ccfbae2c392a1c0eea560654c6bc93b1b6a0ad6c670a29cba694e33604efe7" }, "downloads": -1, "filename": "acsoo-1.2.1.tar.gz", "has_sig": false, "md5_digest": "ca17878b9c1ccfb67efef78130677717", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49884, "upload_time": "2017-05-27T18:07:59", "url": "https://files.pythonhosted.org/packages/44/63/e94f966842b4cd84511526b2e9db8326c1f0e2d70823ffaf8aa356fcf330/acsoo-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "ed28b80e79e246035f357aaf8df1f59c", "sha256": "61b4de5c48dc97674bae56a7c8ff5d93aed562d42a562d28b217cfedb645109e" }, "downloads": -1, "filename": "acsoo-1.2.2-py2-none-any.whl", "has_sig": false, "md5_digest": "ed28b80e79e246035f357aaf8df1f59c", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 50871, "upload_time": "2017-05-30T11:38:08", "url": "https://files.pythonhosted.org/packages/cc/40/8effb1a94a511232518e2659c59f505c1b3ff775ef2b8e1151d4fce1c7b1/acsoo-1.2.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c46e77078fe209f674b80ef735ea839c", "sha256": "fe566e61cc42a93ce2e4a8c4536d9eb397840831e02cb22c770c2e9fe04caaef" }, "downloads": -1, "filename": "acsoo-1.2.2.tar.gz", "has_sig": false, "md5_digest": "c46e77078fe209f674b80ef735ea839c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50002, "upload_time": "2017-05-30T11:38:10", "url": "https://files.pythonhosted.org/packages/1e/14/4871aee50d0af3c2d60d13c5a5e6a27a3c8af72582361cfc49a7fba8035d/acsoo-1.2.2.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "d0cb5d9c81b24abd020d0659139bef6a", "sha256": "3ff7dbbcaf0e7bc41c2ab258ef220e70c7aca0d4d1c76b1d06c52090062d52b2" }, "downloads": -1, "filename": "acsoo-1.3.0-py2-none-any.whl", "has_sig": false, "md5_digest": "d0cb5d9c81b24abd020d0659139bef6a", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 52053, "upload_time": "2017-06-04T12:51:51", "url": "https://files.pythonhosted.org/packages/0d/43/cda2f22e77929d83d3d7cb4d354334b72c510708c51f5f39464edd59221d/acsoo-1.3.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "529ebed350c043f0ace6eaa383ef96bc", "sha256": "cdb2bb93760798e41ea3c91414b695abf8f431d8efd1b162658262310ce275df" }, "downloads": -1, "filename": "acsoo-1.3.0.tar.gz", "has_sig": false, "md5_digest": "529ebed350c043f0ace6eaa383ef96bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50902, "upload_time": "2017-06-04T12:51:53", "url": "https://files.pythonhosted.org/packages/fb/7e/2ca0a2edb49b116f0f908b232ee4057d14502c893259959758903092ab71/acsoo-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "fc6fc60569f5d69e7ce497bfbf496cfe", "sha256": "630c4f843eb099a3a88b8b225afc2f55434d02843418a6bd60068fab0a466ef5" }, "downloads": -1, "filename": "acsoo-1.4.0-py2-none-any.whl", "has_sig": false, "md5_digest": "fc6fc60569f5d69e7ce497bfbf496cfe", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 54678, "upload_time": "2017-06-13T21:51:37", "url": "https://files.pythonhosted.org/packages/3d/40/d37aa3bcc3c9f50ce9c89cc064ec45f246100cc5d70b72374098dfd280aa/acsoo-1.4.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "462e76bf707ec50bbaed338413c1f8d2", "sha256": "46f6ff25e023522602cbaf7bcf400ad5fb7ea623150603e56cf8f4d5d3ef2576" }, "downloads": -1, "filename": "acsoo-1.4.0.tar.gz", "has_sig": false, "md5_digest": "462e76bf707ec50bbaed338413c1f8d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53961, "upload_time": "2017-06-13T21:51:39", "url": "https://files.pythonhosted.org/packages/87/49/9d771eba291adc66bfbfcf544bdcf4ca8f3268cd0378089bdb58df85d73e/acsoo-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "7d34c4061a6012d4e48bbebfef049807", "sha256": "70fa7fcc1e7e4ebb50920b63e265ed2a7619fbd53ed9b248b75da4caae370135" }, "downloads": -1, "filename": "acsoo-1.4.1-py2-none-any.whl", "has_sig": false, "md5_digest": "7d34c4061a6012d4e48bbebfef049807", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 54716, "upload_time": "2017-06-14T07:13:17", "url": "https://files.pythonhosted.org/packages/7d/f7/7f64975793f6c16cef6fd0ed78b963cfe452c954da1e9e2a924c267ecaf4/acsoo-1.4.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "338706c5b55157ee65bf1cb501cc161c", "sha256": "e7df86c7a6ab32160a14561275dfbf7da3f81891658b2d4831c578f9c5e5a00e" }, "downloads": -1, "filename": "acsoo-1.4.1.tar.gz", "has_sig": false, "md5_digest": "338706c5b55157ee65bf1cb501cc161c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53994, "upload_time": "2017-06-14T07:13:19", "url": "https://files.pythonhosted.org/packages/e4/81/80506edaa86229bdec9d9fb44a08cddda2311ba21af4648c200b3804b368/acsoo-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "452ffc3fad8dbf3f9b1c63c21225ce21", "sha256": "0d40239443f4b2519763d42cedcd09724765a63c77a624ad61738bc85a8e9264" }, "downloads": -1, "filename": "acsoo-1.4.2-py2-none-any.whl", "has_sig": false, "md5_digest": "452ffc3fad8dbf3f9b1c63c21225ce21", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 54881, "upload_time": "2017-06-16T11:34:58", "url": "https://files.pythonhosted.org/packages/1b/79/f56a090d3b8d67068c5e1415167e8acee20e8228926ae5d760654d984067/acsoo-1.4.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "62903fcab3063c86355a5aedeb00027d", "sha256": "520ac13dd0a12cd67ed272d23033cc868656bf38c486fd99f1b7de897ab8b10c" }, "downloads": -1, "filename": "acsoo-1.4.2.tar.gz", "has_sig": false, "md5_digest": "62903fcab3063c86355a5aedeb00027d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54208, "upload_time": "2017-06-16T11:35:00", "url": "https://files.pythonhosted.org/packages/ab/a8/986744501759ebc0857c262656f7a04b6a1b3b541b08a2dc8289842b9e00/acsoo-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "c26d1b8b5046a93269a9ba45fc777d0e", "sha256": "dd72674d2f0fadf061ec18832a4dca1a6649647ceef2cd458b26e5335139bed7" }, "downloads": -1, "filename": "acsoo-1.4.3-py2-none-any.whl", "has_sig": false, "md5_digest": "c26d1b8b5046a93269a9ba45fc777d0e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 55099, "upload_time": "2017-06-16T12:22:32", "url": "https://files.pythonhosted.org/packages/b1/d1/d9d51c155d938bf9fa9be0d340b9e12f1e6642a4ae22125e8961f2935851/acsoo-1.4.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "560d6c38c70bd4e6c53aba81cf038375", "sha256": "1913549ff0a827c63d839f54c4b573ec9bc0d3db4602d62775308302fc15ed22" }, "downloads": -1, "filename": "acsoo-1.4.3.tar.gz", "has_sig": false, "md5_digest": "560d6c38c70bd4e6c53aba81cf038375", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54433, "upload_time": "2017-06-16T12:22:33", "url": "https://files.pythonhosted.org/packages/d4/3c/802a79286f4da198d83e80b4694e477780f76f3bfff12c14b73d55bd4094/acsoo-1.4.3.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "4d248e05e4a55d638552f5004baf0d76", "sha256": "85c28f86306665e16cf9478b04353595654b2f62c6ff5aa8dda5d804f57bf2aa" }, "downloads": -1, "filename": "acsoo-1.5.0-py2-none-any.whl", "has_sig": false, "md5_digest": "4d248e05e4a55d638552f5004baf0d76", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 57025, "upload_time": "2017-09-19T11:45:02", "url": "https://files.pythonhosted.org/packages/4d/bc/4e8343cf42b64161e73e6460f0f497c578ccff64c4e671ce477d36d6433c/acsoo-1.5.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6b2b080dbd12425997d5820ddb975916", "sha256": "770322656f76155af7533fd668a8aaf30fe966c86381cf86eb64ef888b7188bc" }, "downloads": -1, "filename": "acsoo-1.5.0.tar.gz", "has_sig": false, "md5_digest": "6b2b080dbd12425997d5820ddb975916", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56428, "upload_time": "2017-09-19T11:45:04", "url": "https://files.pythonhosted.org/packages/00/c8/83c1988f0ed4f9480a69f2bffe85bc6eb1258a9f95fcecb2ebb23f695de3/acsoo-1.5.0.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "2ba1170e991d77107951493b4eb25154", "sha256": "9c0f3a6493aec4e5431dfec51791172f2953142845d0a966a77a69195f6f0287" }, "downloads": -1, "filename": "acsoo-1.6.0-py2-none-any.whl", "has_sig": false, "md5_digest": "2ba1170e991d77107951493b4eb25154", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 57459, "upload_time": "2018-02-16T08:56:43", "url": "https://files.pythonhosted.org/packages/8f/33/f3eb8c4b1f88a51ae15c6f691c19db7fad6deadaba16289ce1f8011509f0/acsoo-1.6.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "effe99c8f98f901353888feae8aacb36", "sha256": "4c0643a6f6fd2ea2ebf77b5f8691e7fe02efb03442b7a56c5f96d18af6752c29" }, "downloads": -1, "filename": "acsoo-1.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "effe99c8f98f901353888feae8aacb36", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 57460, "upload_time": "2018-02-16T08:56:29", "url": "https://files.pythonhosted.org/packages/23/38/ca8df7a2005c33811c95e4865aba85ab892397c544d46aff6afb1457d282/acsoo-1.6.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cd39a34f0c166d70f64fba0c9c9c90d9", "sha256": "b52f5d529dd283efe820bbc4dc9b4beec63661608cb37d3e98cc7db9f874f170" }, "downloads": -1, "filename": "acsoo-1.6.0.tar.gz", "has_sig": false, "md5_digest": "cd39a34f0c166d70f64fba0c9c9c90d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57049, "upload_time": "2018-02-16T08:56:31", "url": "https://files.pythonhosted.org/packages/90/3f/e3808c7827cf4d7ab0c3ab474f80dc103939065d235546230e0e0ee44da8/acsoo-1.6.0.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "d54362758fcd1368b68c1af6f9eb4fb3", "sha256": "e00433c1d06346dbd92da4d8b1209a2e67c5c8c1bbb40a4dc764f8ed71761e06" }, "downloads": -1, "filename": "acsoo-1.7.0-py2-none-any.whl", "has_sig": false, "md5_digest": "d54362758fcd1368b68c1af6f9eb4fb3", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 53854, "upload_time": "2018-06-04T20:08:50", "url": "https://files.pythonhosted.org/packages/de/e8/09a4061c630c6373c328dea29444925138c37db2f467adf0cb5d392e3e79/acsoo-1.7.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bf8922fc64b6334d8a78112e6cc079b6", "sha256": "8804fbabb10c04f7e0f151dce53fec69fe3deae5e2fd726c07125e0612872202" }, "downloads": -1, "filename": "acsoo-1.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "bf8922fc64b6334d8a78112e6cc079b6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 53855, "upload_time": "2018-06-04T20:10:00", "url": "https://files.pythonhosted.org/packages/0d/16/739b1cb3b1dd0e4b584fc8e251902098c89f1a029417d5f68cb404caba74/acsoo-1.7.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3189310d03ba403bf07a74d0fb6c2bee", "sha256": "b1371de581f66f5743f11a323a141f81c2a2fd4928afce85ab76947813c86531" }, "downloads": -1, "filename": "acsoo-1.7.0.tar.gz", "has_sig": false, "md5_digest": "3189310d03ba403bf07a74d0fb6c2bee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59315, "upload_time": "2018-06-04T20:08:52", "url": "https://files.pythonhosted.org/packages/22/29/11404818cef724e6f2b6a2d19b3f6159e002c8ea5c6d084d4bf9ee7da683/acsoo-1.7.0.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "efb69c5abbce13daab9b254f8dff97e6", "sha256": "83afd673e163efcd1e7449f9921e19c6e8097911ff6ad59eba8247033e11d4e0" }, "downloads": -1, "filename": "acsoo-1.7.1-py2-none-any.whl", "has_sig": false, "md5_digest": "efb69c5abbce13daab9b254f8dff97e6", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 54099, "upload_time": "2018-07-15T14:15:48", "url": "https://files.pythonhosted.org/packages/e4/20/c03d9ecb98b651c4a1c3635e3511e4830e4880c3df675235828d21d38703/acsoo-1.7.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d7679c6bea134f822940d5eeaa3d5269", "sha256": "0e14d55359f15d625f03e20c43a55e7cbc7c410812a8a4b8f5940e7eafd4a7bf" }, "downloads": -1, "filename": "acsoo-1.7.1.tar.gz", "has_sig": false, "md5_digest": "d7679c6bea134f822940d5eeaa3d5269", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59631, "upload_time": "2018-07-15T14:15:50", "url": "https://files.pythonhosted.org/packages/91/a9/2eaeb8edb86cfd799ddc5eb2ad6eb1aa027a83a4b1d534f68e5d4f23ec5a/acsoo-1.7.1.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "9d49e99b199899f3c437cf5622ee9792", "sha256": "304195a05aeedad4b92ab4618465c08bcf04ddc51625cd7a0c89e19e275abe37" }, "downloads": -1, "filename": "acsoo-1.8.0-py2-none-any.whl", "has_sig": false, "md5_digest": "9d49e99b199899f3c437cf5622ee9792", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 68779, "upload_time": "2018-10-29T18:07:28", "url": "https://files.pythonhosted.org/packages/62/a4/af060ffd856ddf16b99400950ca08e089333738cc3996d7aacea326d400c/acsoo-1.8.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8b7b06c199a4be3d1a1daa77b45250d5", "sha256": "4aa57edb9e94afdd125097b978dad252ee7f493d048f3337f9493cacedd0e492" }, "downloads": -1, "filename": "acsoo-1.8.0.tar.gz", "has_sig": false, "md5_digest": "8b7b06c199a4be3d1a1daa77b45250d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59729, "upload_time": "2018-10-29T18:07:30", "url": "https://files.pythonhosted.org/packages/94/e9/35622bf46752f55aae17c07236279e1d770971e61a5fdc9dc5327e142b0d/acsoo-1.8.0.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "c25c0d7b36f20c6b94809ba7f97decc9", "sha256": "83c0b487b61ba8ad261ad4701baab4534d81ff48246bd58bffeb7e287582b5a6" }, "downloads": -1, "filename": "acsoo-1.8.1-py2-none-any.whl", "has_sig": false, "md5_digest": "c25c0d7b36f20c6b94809ba7f97decc9", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 68823, "upload_time": "2018-10-30T09:33:30", "url": "https://files.pythonhosted.org/packages/af/47/fd6587995f7276a2687d3885e163a6b1de859d284fe1ab82aa69aead583e/acsoo-1.8.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3134eda652ee7f5deecfdb4c56738061", "sha256": "9e3ee6730d71be2d33a05a36fd50b4a1abec3c91aa96f3a71501579be2410740" }, "downloads": -1, "filename": "acsoo-1.8.1.tar.gz", "has_sig": false, "md5_digest": "3134eda652ee7f5deecfdb4c56738061", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59772, "upload_time": "2018-10-30T09:33:31", "url": "https://files.pythonhosted.org/packages/18/2a/b467c7f0fad4df5e5703c5f83dddcdb1c1b7870746b8fe0486975f50fa57/acsoo-1.8.1.tar.gz" } ], "1.8.2": [ { "comment_text": "", "digests": { "md5": "57759d86d6d341121587b93b15820543", "sha256": "f270b8ef409f74384e08ea9c0735c422ca157cc0a28d3345bb0b30517fd56daf" }, "downloads": -1, "filename": "acsoo-1.8.2-py2-none-any.whl", "has_sig": false, "md5_digest": "57759d86d6d341121587b93b15820543", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 68848, "upload_time": "2018-11-05T15:49:23", "url": "https://files.pythonhosted.org/packages/78/44/24035ca541f5ce90ab62a1f02d8afe6f90f3833880a0a6a31fb3404c0418/acsoo-1.8.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b68d8fc9d9f5f81b1d37e8835b332133", "sha256": "523b98289be4d9fe47f5f3a2767b935ffbe8c62101ab1438a59d2274c1764f94" }, "downloads": -1, "filename": "acsoo-1.8.2.tar.gz", "has_sig": false, "md5_digest": "b68d8fc9d9f5f81b1d37e8835b332133", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60674, "upload_time": "2018-11-05T15:49:25", "url": "https://files.pythonhosted.org/packages/ba/b8/a0d8dfd4b2c83e0e2569b1310922728dd3abf7a6649d817c456bcfc40a78/acsoo-1.8.2.tar.gz" } ], "1.8.3": [ { "comment_text": "", "digests": { "md5": "2dc1fd7dd48c8b9453b4380dbfcdf885", "sha256": "2ef2736b5e5707c37a5b604d98e685fd63e14adfc340df424eda81c5122dbe84" }, "downloads": -1, "filename": "acsoo-1.8.3-py2-none-any.whl", "has_sig": false, "md5_digest": "2dc1fd7dd48c8b9453b4380dbfcdf885", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 68879, "upload_time": "2019-01-22T09:23:09", "url": "https://files.pythonhosted.org/packages/e4/b6/a94a0bc7b2b421b10e0263ad35cd6c2e67d269ef8088234133175c82b13d/acsoo-1.8.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "801f09f6c56dfc7856dc34106829cb3f", "sha256": "6d11bf6edf3a030a6911bd1a108927e252bf9b7cede698427fbb28608f1efe02" }, "downloads": -1, "filename": "acsoo-1.8.3.tar.gz", "has_sig": false, "md5_digest": "801f09f6c56dfc7856dc34106829cb3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60697, "upload_time": "2019-01-22T09:23:11", "url": "https://files.pythonhosted.org/packages/89/fb/251a40a08f410cb6f052197e2cb4a264d9b7f1b9131fc3c2a0789d542578/acsoo-1.8.3.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "c0700183a46ab2aad9b278e52753c6b7", "sha256": "2553c2002dcc0a1c87248b0b2eb63f64750de3821388cdc1544c5f19cb4e2c0e" }, "downloads": -1, "filename": "acsoo-1.9.0-py2-none-any.whl", "has_sig": false, "md5_digest": "c0700183a46ab2aad9b278e52753c6b7", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 70537, "upload_time": "2019-02-28T18:29:06", "url": "https://files.pythonhosted.org/packages/9a/03/baf17aa8aa35e36d123c274b43a4017ad0de113a6055d6a98b0f26bbc177/acsoo-1.9.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d791a8aed3bb08bda98a618396fdfa41", "sha256": "c6a9c4c4fa69344724b7a6b2c07dd4450201e878d96e1bae368def09eaff3c81" }, "downloads": -1, "filename": "acsoo-1.9.0.tar.gz", "has_sig": false, "md5_digest": "d791a8aed3bb08bda98a618396fdfa41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61648, "upload_time": "2019-02-28T18:29:07", "url": "https://files.pythonhosted.org/packages/43/25/ddc50031b68d4e428e5f64151c8a95dd92238bd2af4ced58f0e7696aa852/acsoo-1.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c0700183a46ab2aad9b278e52753c6b7", "sha256": "2553c2002dcc0a1c87248b0b2eb63f64750de3821388cdc1544c5f19cb4e2c0e" }, "downloads": -1, "filename": "acsoo-1.9.0-py2-none-any.whl", "has_sig": false, "md5_digest": "c0700183a46ab2aad9b278e52753c6b7", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 70537, "upload_time": "2019-02-28T18:29:06", "url": "https://files.pythonhosted.org/packages/9a/03/baf17aa8aa35e36d123c274b43a4017ad0de113a6055d6a98b0f26bbc177/acsoo-1.9.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d791a8aed3bb08bda98a618396fdfa41", "sha256": "c6a9c4c4fa69344724b7a6b2c07dd4450201e878d96e1bae368def09eaff3c81" }, "downloads": -1, "filename": "acsoo-1.9.0.tar.gz", "has_sig": false, "md5_digest": "d791a8aed3bb08bda98a618396fdfa41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61648, "upload_time": "2019-02-28T18:29:07", "url": "https://files.pythonhosted.org/packages/43/25/ddc50031b68d4e428e5f64151c8a95dd92238bd2af4ced58f0e7696aa852/acsoo-1.9.0.tar.gz" } ] }