{ "info": { "author": "S\u00e9bastien Eustace", "author_email": "sebastien@eustace.io", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8" ], "description": "Cleo\n####\n\n.. image:: https://travis-ci.org/sdispater/cleo.png\n :alt: Cleo Build status\n :target: https://travis-ci.org/sdispater/cleo\n\nCreate beautiful and testable command-line interfaces.\n\nCleo is mostly a higher level wrapper for `CliKit `_, so\na lot of the components and utilities comes from it. Refer to its documentation for more\ninformation.\n\nResources\n=========\n\n* `Documentation `_\n* `Issue Tracker `_\n\n\nUsage\n=====\n\nTo make a command that greets you from the command line,\ncreate ``greet_command.py`` and add the following to it:\n\n.. code-block:: python\n\n from cleo import Command\n\n\n class GreetCommand(Command):\n \"\"\"\n Greets someone\n\n greet\n {name? : Who do you want to greet?}\n {--y|yell : If set, the task will yell in uppercase letters}\n \"\"\"\n\n def handle(self):\n name = self.argument('name')\n\n if name:\n text = 'Hello {}'.format(name)\n else:\n text = 'Hello'\n\n if self.option('yell'):\n text = text.upper()\n\n self.line(text)\n\n\nYou also need to create the file to run at the command line which creates\nan ``Application`` and adds commands to it:\n\n.. code-block:: python\n\n #!/usr/bin/env python\n\n from greet_command import GreetCommand\n from cleo import Application\n\n application = Application()\n application.add(GreetCommand())\n\n if __name__ == '__main__':\n application.run()\n\nTest the new command by running the following\n\n.. code-block:: bash\n\n $ python application.py greet John\n\nThis will print the following to the command line:\n\n.. code-block:: text\n\n Hello John\n\nYou can also use the ``--yell`` option to make everything uppercase:\n\n.. code-block:: bash\n\n $ python application.py greet John --yell\n\nThis prints:\n\n.. code-block:: text\n\n HELLO JOHN\n\nAs you may have already seen, Cleo uses the command docstring to determine\nthe command definition.\nThe docstring must be in the following form :\n\n.. code-block:: python\n\n \"\"\"\n Command description\n\n Command signature\n \"\"\"\n\nThe signature being in the following form:\n\n.. code-block:: python\n\n \"\"\"\n command:name {argument : Argument description} {--option : Option description}\n \"\"\"\n\nThe signature can span multiple lines.\n\n.. code-block:: python\n\n \"\"\"\n command:name\n {argument : Argument description}\n {--option : Option description}\n \"\"\"\n\nColoring the Output\n-------------------\n\nWhenever you output text, you can surround the text with tags to color its\noutput. For example:\n\n.. code-block:: python\n\n # green text\n self.line('foo')\n\n # yellow text\n self.line('foo')\n\n # black text on a cyan background\n self.line('foo')\n\n # white text on a red background\n self.line('foo')\n\nThe closing tag can be replaced by ````, which revokes all formatting options established by the last opened tag.\n\nIt is possible to define your own styles using the ``add_style()`` method:\n\n.. code-block:: python\n\n self.add_style('fire', fg='red', bg='yellow', options=['bold', 'blink'])\n self.line('foo')\n\nAvailable foreground and background colors are: ``black``, ``red``, ``green``,\n``yellow``, ``blue``, ``magenta``, ``cyan`` and ``white``.\n\nAnd available options are: ``bold``, ``underscore``, ``blink``, ``reverse`` and ``conceal``.\n\nYou can also set these colors and options inside the tag name:\n\n.. code-block:: python\n\n # green text\n self.line('foo')\n\n # black text on a cyan background\n self.line('foo')\n\n # bold text on a yellow background\n self.line('foo')\n\n\nVerbosity Levels\n----------------\n\nCleo has four verbosity levels. These are defined in the ``Output`` class:\n\n======================================= ================================== ======================\nMode Meaning Console option\n======================================= ================================== ======================\n``NA`` Do not output any messages ``-q`` or ``--quiet``\n``clikit.VERBOSITY_NORMAL`` The default verbosity level (none)\n``clikit.VERBOSITY_VERBOSE`` Increased verbosity of messages ``-v``\n``clikit.VERBOSITY_VERY_VERBOSE`` Informative non essential messages ``-vv``\n``clikit.VERBOSITY_DEBUG`` Debug messages ``-vvv``\n======================================= ================================== ======================\n\nIt is possible to print a message in a command for only a specific verbosity\nlevel. For example:\n\n.. code-block:: python\n\n if clikit.VERBOSITY_VERBOSE <= self.io.verbosity:\n self.line(...)\n\nThere are also more semantic methods you can use to test for each of the\nverbosity levels:\n\n.. code-block:: python\n\n if self.output.is_quiet():\n # ...\n\n if self.output.is_verbose():\n # ...\n\nYou can also pass the verbosity flag directly to `line()`.\n\n.. code-block:: python\n\n self.line(\"\", verbosity=clikit.VERBOSITY_VERBOSE)\n\nWhen the quiet level is used, all output is suppressed.\n\n\nUsing Arguments\n---------------\n\nThe most interesting part of the commands are the arguments and options that\nyou can make available. Arguments are the strings - separated by spaces - that\ncome after the command name itself. They are ordered, and can be optional\nor required. For example, add an optional ``last_name`` argument to the command\nand make the ``name`` argument required:\n\n.. code-block:: python\n\n class GreetCommand(Command):\n \"\"\"\n Greets someone\n\n greet\n {name : Who do you want to greet?}\n {last_name? : Your last name?}\n {--y|yell : If set, the task will yell in uppercase letters}\n \"\"\"\n\nYou now have access to a ``last_name`` argument in your command:\n\n.. code-block:: python\n\n last_name = self.argument('last_name')\n if last_name:\n text += ' {}'.format(last_name)\n\nThe command can now be used in either of the following ways:\n\n.. code-block:: bash\n\n $ python application.py greet John\n $ python application.py greet John Doe\n\nIt is also possible to let an argument take a list of values (imagine you want\nto greet all your friends). For this it must be specified at the end of the\nargument list:\n\n.. code-block:: python\n\n class GreetCommand(Command):\n \"\"\"\n Greets someone\n\n greet\n {names* : Who do you want to greet?}\n {--y|yell : If set, the task will yell in uppercase letters}\n \"\"\"\n\nTo use this, just specify as many names as you want:\n\n.. code-block:: bash\n\n $ python application.py demo:greet John Jane\n\nYou can access the ``names`` argument as a list:\n\n.. code-block:: python\n\n names = self.argument('names')\n if names:\n text += ' {}'.format(', '.join(names))\n\nThere are 3 argument variants you can use:\n\n================================ ==================================== ===============================================================================================================\nMode Notation Value\n================================ ==================================== ===============================================================================================================\n``clikit.ARGUMENT_REQUIRED`` none (just write the argument name) The argument is required\n``clikit.ARGUMENT_OPTIONAL`` ``argument?`` The argument is optional and therefore can be omitted\n``clikit.ARGUMENT_MULTI_VALUED`` ``argument*`` The argument can contain an indefinite number of arguments and must be used at the end of the argument list\n================================ ==================================== ===============================================================================================================\n\nYou can combine them like this:\n\n.. code-block:: python\n\n class GreetCommand(Command):\n \"\"\"\n Greets someone\n\n greet\n {names?* : Who do you want to greet?}\n {--y|yell : If set, the task will yell in uppercase letters}\n \"\"\"\n\nIf you want to set a default value, you can it like so:\n\n.. code-block:: text\n\n argument=default\n\nThe argument will then be considered optional.\n\n\nUsing Options\n-------------\n\nUnlike arguments, options are not ordered (meaning you can specify them in any\norder) and are specified with two dashes (e.g. ``--yell`` - you can also\ndeclare a one-letter shortcut that you can call with a single dash like\n``-y``). Options are *always* optional, and can be setup to accept a value\n(e.g. ``--dir=src``) or simply as a boolean flag without a value (e.g.\n``--yell``).\n\n.. tip::\n\n It is also possible to make an option *optionally* accept a value (so that\n ``--yell`` or ``--yell=loud`` work). Options can also be configured to\n accept a list of values.\n\nFor example, add a new option to the command that can be used to specify\nhow many times in a row the message should be printed:\n\n.. code-block:: python\n\n class GreetCommand(Command):\n \"\"\"\n Greets someone\n\n greet\n {name? : Who do you want to greet?}\n {--y|yell : If set, the task will yell in uppercase letters}\n {--iterations=1 : How many times should the message be printed?}\n \"\"\"\n\n\nNext, use this in the command to print the message multiple times:\n\n.. code-block:: python\n\n for _ in range(0, self.option('iterations')):\n self.line(text)\n\nNow, when you run the task, you can optionally specify a ``--iterations``\nflag:\n\n.. code-block:: bash\n\n $ python application.py demo:greet John\n $ python application.py demo:greet John --iterations=5\n\nThe first example will only print once, since ``iterations`` is empty and\ndefaults to ``1``. The second example will print five times.\n\nRecall that options don't care about their order. So, either of the following\nwill work:\n\n.. code-block:: bash\n\n $ python application.py demo:greet John --iterations=5 --yell\n $ python application.py demo:greet John --yell --iterations=5\n\nThere are 4 option variants you can use:\n\n================================ =================================== ======================================================================================\nOption Notation Value\n================================ =================================== ======================================================================================\n``clikit.OPTION_MULTI_VALUED`` ``--option=*`` This option accepts multiple values (e.g. ``--dir=/foo --dir=/bar``)\n``clikit.OPTION_NO_VALUE`` ``--option`` Do not accept input for this option (e.g. ``--yell``)\n``clikit.OPTION_REQUIRED_VALUE`` ``--option=`` This value is required (e.g. ``--iterations=5``), the option itself is still optional\n``clikit.OPTION_OPTIONAL_VALUE`` ``--option=?`` This option may or may not have a value (e.g. ``--yell`` or ``--yell=loud``)\n================================ =================================== ======================================================================================\n\nYou can combine them like this:\n\n.. code-block:: python\n\n class GreetCommand(Command):\n \"\"\"\n Greets someone\n\n greet\n {name? : Who do you want to greet?}\n {--y|yell : If set, the task will yell in uppercase letters}\n {--iterations=?*1 : How many times should the message be printed?}\n \"\"\"\n\n\nTesting Commands\n----------------\n\nCleo provides several tools to help you test your commands. The most\nuseful one is the ``CommandTester`` class.\nIt uses a special IO class to ease testing without a real\nconsole:\n\n.. code-block:: python\n\n import pytest\n\n from cleo import Application\n from cleo import CommandTester\n\n def test_execute(self):\n application = Application()\n application.add(GreetCommand())\n\n command = application.find('demo:greet')\n command_tester = CommandTester(command)\n command_tester.execute()\n\n assert \"...\" == tester.io.fetch_output()\n\nThe ``CommandTester.io.fetch_output()`` method returns what would have been displayed\nduring a normal call from the console. ``CommandTester.io.fetch_error()`` is also available\nto get what you have been written to the stderr.\n\nYou can test sending arguments and options to the command by passing them\nas a string to the ``CommandTester.execute()`` method:\n\n.. code-block:: python\n\n import pytest\n\n from cleo import Application\n from cleo import CommandTester\n\n def test_execute(self):\n application = Application()\n application.add(GreetCommand())\n\n command = application.find('demo:greet')\n command_tester = CommandTester(command)\n command_tester.execute(\"John\")\n\n assert \"John\" in tester.io.fetch_output()\n\nYou can also test a whole console application by using the ``ApplicationTester`` class.\n\n\nCalling an existing Command\n---------------------------\n\nIf a command depends on another one being run before it, instead of asking the\nuser to remember the order of execution, you can call it directly yourself.\nThis is also useful if you want to create a \"meta\" command that just runs a\nbunch of other commands.\n\nCalling a command from another one is straightforward:\n\n.. code-block:: python\n\n def handle(self):\n return_code = self.call('demo:greet', \"John --yell\")\n\n # ...\n\nIf you want to suppress the output of the executed command,\nyou can use the ``call_silent()`` method instead.\n\n\n\nAutocompletion\n--------------\n\nCleo supports automatic (tab) completion in ``bash``, ``zsh`` and ``fish``.\n\nTo activate support for autocompletion, pass a ``complete`` keyword when initializing\nyour application:\n\n.. code-block:: python\n\n application = Application('My Application', '0.1', complete=True)\n\nNow, register completion for your application by running one of the following in a terminal,\nreplacing ``[program]`` with the command you use to run your application:\n\n.. code-block:: bash\n\n # BASH - Ubuntu / Debian\n [program] completions bash | sudo tee /etc/bash_completion.d/[program].bash-completion\n\n # BASH - Mac OSX (with Homebrew \"bash-completion\")\n [program] completions bash > $(brew --prefix)/etc/bash_completion.d/[program].bash-completion\n\n # ZSH - Config file\n mkdir ~/.zfunc\n echo \"fpath+=~/.zfunc\" >> ~/.zshrc\n [program] completions zsh > ~/.zfunc/_test\n\n # FISH\n [program] completions fish > ~/.config/fish/completions/[program].fish\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/sdispater/cleo", "keywords": "cli,commands", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "cleo", "package_url": "https://pypi.org/project/cleo/", "platform": "", "project_url": "https://pypi.org/project/cleo/", "project_urls": { "Homepage": "https://github.com/sdispater/cleo" }, "release_url": "https://pypi.org/project/cleo/0.8.1/", "requires_dist": [ "clikit (>=0.6.0,<0.7.0)" ], "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "summary": "Cleo allows you to create beautiful and testable command-line interfaces.", "version": "0.8.1", "yanked": false, "yanked_reason": null }, "last_serial": 11051253, "releases": { "0.2.0": [ { "comment_text": "", "digests": { "md5": "5aa52a3b7d6c51acc2c4fdb48a3cdb26", "sha256": "cc8f896a2fd7c49016028a1277dbea49d50da21fd8de75b6be53724e45cc2695" }, "downloads": -1, "filename": "cleo-0.2.0.tar.gz", "has_sig": false, "md5_digest": "5aa52a3b7d6c51acc2c4fdb48a3cdb26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45448, "upload_time": "2014-03-24T21:29:46", "upload_time_iso_8601": "2014-03-24T21:29:46.018005Z", "url": "https://files.pythonhosted.org/packages/11/8f/104f39037463533437cfcea9d55ac6b1a2ada8b871d9d87224ec36bef119/cleo-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [], "0.3.0": [ { "comment_text": "", "digests": { "md5": "ad1e7b1313714a7046aee34af6f53d8f", "sha256": "1fa681276798051c8dc1cccda3f43ed93d372c6dafcde9ac165a05847da751a9" }, "downloads": -1, "filename": "cleo-0.3.0.tar.gz", "has_sig": false, "md5_digest": "ad1e7b1313714a7046aee34af6f53d8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53280, "upload_time": "2015-05-24T02:29:41", "upload_time_iso_8601": "2015-05-24T02:29:41.966953Z", "url": "https://files.pythonhosted.org/packages/60/fe/3f55bd3c6a4ca3074a0c876bbc59c1432d714848f0b3d77fb634ce7b83e6/cleo-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "2ae0e332435febc4ff4b41c8b02d34cc", "sha256": "eb4953c877680085ef8ecd971f54e8aa5e735de5e6bef63f1f76361fc77903b8" }, "downloads": -1, "filename": "cleo-0.4.0.tar.gz", "has_sig": false, "md5_digest": "2ae0e332435febc4ff4b41c8b02d34cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80962, "upload_time": "2016-01-11T17:06:27", "upload_time_iso_8601": "2016-01-11T17:06:27.663617Z", "url": "https://files.pythonhosted.org/packages/bd/c1/740053eb7fb842ab8c015708603cbaa52ed0ff89a4b9f4aba7d66c590d7d/cleo-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "42833ec95d7db7d77d064ebd6cc47383", "sha256": "6adf0cdee6d2cdd1453daf0a38931faba6e67116841bea255dc55e5c0d654dcc" }, "downloads": -1, "filename": "cleo-0.4.1.tar.gz", "has_sig": false, "md5_digest": "42833ec95d7db7d77d064ebd6cc47383", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63358, "upload_time": "2016-02-09T22:40:16", "upload_time_iso_8601": "2016-02-09T22:40:16.663639Z", "url": "https://files.pythonhosted.org/packages/e9/4a/26a95d4370f3f01fbc6a2e7d7530bdf4432270aba5facb561debc40b6441/cleo-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "24de3f19424edcc3189bc8d1f8a3a66c", "sha256": "a43b72319086e2d8694c0eaae5ab5e28d4c44429f5445a7175c8b9aabbc55306" }, "downloads": -1, "filename": "cleo-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "24de3f19424edcc3189bc8d1f8a3a66c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 93726, "upload_time": "2016-09-21T21:55:42", "upload_time_iso_8601": "2016-09-21T21:55:42.052013Z", "url": "https://files.pythonhosted.org/packages/80/88/b6cce65151bbded0bb70e6f6b66482f3b1f6cce7edc123fc61b3e9817fa9/cleo-0.5.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f11efdfd502da28badbc96e06c23133", "sha256": "28ff8d4c1be64267e8aa1213e346f43426dba017823d57b18d2a878da408f960" }, "downloads": -1, "filename": "cleo-0.5.0.tar.gz", "has_sig": false, "md5_digest": "1f11efdfd502da28badbc96e06c23133", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65040, "upload_time": "2016-09-21T21:54:51", "upload_time_iso_8601": "2016-09-21T21:54:51.735075Z", "url": "https://files.pythonhosted.org/packages/a0/3d/d3d31fdec30e5a42e91547849ba39f383af6c194491985e952a1d1886ef9/cleo-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "0b6f1cf0c13a86077ceef9abc15fdc4b", "sha256": "49f1998ce4a29b233c203eb10ada2a8cf4f642f736880328bffc75aa44d87ac2" }, "downloads": -1, "filename": "cleo-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0b6f1cf0c13a86077ceef9abc15fdc4b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 83967, "upload_time": "2017-04-21T19:56:27", "upload_time_iso_8601": "2017-04-21T19:56:27.349996Z", "url": "https://files.pythonhosted.org/packages/0a/b0/c94d4a05f058fee62250bfec8ed70445cefe46dde7e0896be8424137a7ca/cleo-0.6.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "390d3198ec4975574bb0db82944eb6f4", "sha256": "818646a23e6bfc459be3a56651d3831de2f568a5262af04be86902fc18c67144" }, "downloads": -1, "filename": "cleo-0.6.0.tar.gz", "has_sig": false, "md5_digest": "390d3198ec4975574bb0db82944eb6f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57167, "upload_time": "2017-04-21T19:56:29", "upload_time_iso_8601": "2017-04-21T19:56:29.507351Z", "url": "https://files.pythonhosted.org/packages/91/8a/99d9dd1ea361b2ae6c9e8a6dcce92cdfb29a7f576c25c70ee2a56aca6f4f/cleo-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "53690cbd98f54c4ac245037fb10ab484", "sha256": "429c1838f1361f8ea6991c87adf44fa4c7f2fd4e3973a9a4598bab30fc1bc1db" }, "downloads": -1, "filename": "cleo-0.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "53690cbd98f54c4ac245037fb10ab484", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 84019, "upload_time": "2017-08-07T12:27:48", "upload_time_iso_8601": "2017-08-07T12:27:48.238768Z", "url": "https://files.pythonhosted.org/packages/e6/53/7b57d9eaf258743638b5e31c1cde9ccde6dcbaa5c58e938712463424d490/cleo-0.6.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3c5f41c09b148be2d47598c2b538de9", "sha256": "c7dde60c88e53bc1486aca46dd9aa2f793536de3fffa4baa22a581fc35702c60" }, "downloads": -1, "filename": "cleo-0.6.1.tar.gz", "has_sig": false, "md5_digest": "c3c5f41c09b148be2d47598c2b538de9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57231, "upload_time": "2017-08-07T12:27:50", "upload_time_iso_8601": "2017-08-07T12:27:50.362152Z", "url": "https://files.pythonhosted.org/packages/f4/73/73bb9d31345cf80b31dbb2a3821ec0493e573d46897d7d655a800743bf4e/cleo-0.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "510eb879c7eda5dd2fdd623e92a21291", "sha256": "231bc9c8ba62c165828f638d96255ee68b6eb209810cffa164edf8340952af32" }, "downloads": -1, "filename": "cleo-0.6.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "510eb879c7eda5dd2fdd623e92a21291", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.0.0,<2.8.0.0,>=3.4.0.0,<4.0.0.0", "size": 262002, "upload_time": "2018-03-15T16:26:13", "upload_time_iso_8601": "2018-03-15T16:26:13.623549Z", "url": "https://files.pythonhosted.org/packages/3d/53/4eaeead9a3564955a66ad25d99ddac161e9abc67646384019255afd2e0ce/cleo-0.6.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d5b00e419eca46c4dca27a90eb8bb7e", "sha256": "6fd7c175ba224d3520c57d924dff0f11ec98486a9e36f982fe2ffdbc215653cb" }, "downloads": -1, "filename": "cleo-0.6.2.tar.gz", "has_sig": false, "md5_digest": "4d5b00e419eca46c4dca27a90eb8bb7e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.0.0,<2.8.0.0,>=3.4.0.0,<4.0.0.0", "size": 59638, "upload_time": "2018-03-15T16:26:12", "upload_time_iso_8601": "2018-03-15T16:26:12.214670Z", "url": "https://files.pythonhosted.org/packages/57/af/a17f5e4184a872e8916d0fd84d77513c74cd055585c1936181d9f9a8c69e/cleo-0.6.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "f188b6da041f17c781774dfaca134fdb", "sha256": "716d0da541bdb3e085f3539c0ea07558007500f8483edb8d74f61c62dfd0a26f" }, "downloads": -1, "filename": "cleo-0.6.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f188b6da041f17c781774dfaca134fdb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.0.0,<2.8.0.0,>=3.4.0.0,<4.0.0.0", "size": 262003, "upload_time": "2018-03-15T16:56:09", "upload_time_iso_8601": "2018-03-15T16:56:09.292819Z", "url": "https://files.pythonhosted.org/packages/f6/be/f92c1221bd2acd9bb170d8097ce62ea2905e3bd8a0061ecbe76db99d8e8d/cleo-0.6.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86c96f9dadf4b22488744a561fab5146", "sha256": "131b3782678bc8f142ff2fc3b28d83421f69a9fb1646b4928d9a5c6591260d19" }, "downloads": -1, "filename": "cleo-0.6.3.tar.gz", "has_sig": false, "md5_digest": "86c96f9dadf4b22488744a561fab5146", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.0.0,<2.8.0.0,>=3.4.0.0,<4.0.0.0", "size": 59638, "upload_time": "2018-03-15T16:56:07", "upload_time_iso_8601": "2018-03-15T16:56:07.599927Z", "url": "https://files.pythonhosted.org/packages/69/49/f23c30b41eee47d3f9032c427f18616a8ff83c64d7210cad5ab5ff9ef8b4/cleo-0.6.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "323664501312a45712aef79278569f79", "sha256": "64bae59b4de0f68d2bacd204c40db154bdd9e30d0fc0b6e082d434d2c97c318d" }, "downloads": -1, "filename": "cleo-0.6.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "323664501312a45712aef79278569f79", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 262001, "upload_time": "2018-03-15T17:03:59", "upload_time_iso_8601": "2018-03-15T17:03:59.107346Z", "url": "https://files.pythonhosted.org/packages/54/66/787d0ce6b8e548b8aa43d4b9b6f25626d600abd81f8bb6c6a7b926556e60/cleo-0.6.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d4e2de47cf1bf21fd6e5717448952d0", "sha256": "0063f64a43c808da1053a6e1850765cda85dd4f72f54674a0adfad595c4af36d" }, "downloads": -1, "filename": "cleo-0.6.4.tar.gz", "has_sig": false, "md5_digest": "3d4e2de47cf1bf21fd6e5717448952d0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 59648, "upload_time": "2018-03-15T17:03:56", "upload_time_iso_8601": "2018-03-15T17:03:56.719177Z", "url": "https://files.pythonhosted.org/packages/80/d0/439163090e0997b1464a9ec8dd444ac311ff678ee7879f25f8d7aa5c1b33/cleo-0.6.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.4b1": [ { "comment_text": "", "digests": { "md5": "f3731a79a4df63c6b50f94c63fa21b66", "sha256": "7d0a8b0bd0c3719fe1d9872177206460d039882aaabc5e41b97c77259dbae57e" }, "downloads": -1, "filename": "cleo-0.6.4b1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f3731a79a4df63c6b50f94c63fa21b66", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 262017, "upload_time": "2018-03-15T17:02:04", "upload_time_iso_8601": "2018-03-15T17:02:04.787272Z", "url": "https://files.pythonhosted.org/packages/7f/d2/9726a86892eadf257e33abf10188e68de15098ddfa7916f2d1c4335634b5/cleo-0.6.4b1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1f9d61909de2e841049f0c0943bd31e", "sha256": "515393a474ef943bb2594e1b1b3ea6fc26a6cd4141a26c7671ff5db69c14315f" }, "downloads": -1, "filename": "cleo-0.6.4b1.tar.gz", "has_sig": false, "md5_digest": "c1f9d61909de2e841049f0c0943bd31e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 59679, "upload_time": "2018-03-15T17:02:02", "upload_time_iso_8601": "2018-03-15T17:02:02.619064Z", "url": "https://files.pythonhosted.org/packages/b2/f8/a1573d8fe6b13ab8521ff3b927f35a5b6866bc5c4a0e474b61084f437497/cleo-0.6.4b1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "a4c920a33f48ed27f6123a87b83cd9a3", "sha256": "4522ed4c3342cea9f34bf7b787295d962651dcec90735c56d469790339a25805" }, "downloads": -1, "filename": "cleo-0.6.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a4c920a33f48ed27f6123a87b83cd9a3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 262453, "upload_time": "2018-04-04T16:33:26", "upload_time_iso_8601": "2018-04-04T16:33:26.032305Z", "url": "https://files.pythonhosted.org/packages/e5/a2/9e188fc717b80b9d85182a843234ee5d9fc8f208801f6db9d5cfcef60f15/cleo-0.6.5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "443f8e8873385845e52ce68affbddfb9", "sha256": "cd6e0588ffe148072476b9e4d73ea1c944c2dd86fcc75ba133bc7797dc26c618" }, "downloads": -1, "filename": "cleo-0.6.5.tar.gz", "has_sig": false, "md5_digest": "443f8e8873385845e52ce68affbddfb9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 59731, "upload_time": "2018-04-04T16:33:27", "upload_time_iso_8601": "2018-04-04T16:33:27.329845Z", "url": "https://files.pythonhosted.org/packages/5e/a9/9ca0f8cb3f3150ec024271ee6f5c901c17c177ce4cb98457d0a5bf5e5159/cleo-0.6.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "f578c379a25fb814ad8d37652560b83c", "sha256": "e8b7f442a258835277c6a85bbfe39141cbfbdae03749a70376d227a3dc29676d" }, "downloads": -1, "filename": "cleo-0.6.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f578c379a25fb814ad8d37652560b83c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 262554, "upload_time": "2018-05-21T18:38:53", "upload_time_iso_8601": "2018-05-21T18:38:53.789130Z", "url": "https://files.pythonhosted.org/packages/3f/4d/fbdce6cebfdd45a6e1285b2710895661b9085dc417815b2f84f059ea8730/cleo-0.6.6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e10ddb9bce8d8c6baedcaf19d3bc784", "sha256": "1a848f6c56d143a3c4d46653522b559ebcd86b92af535418a1cb3e78ff5a8c4e" }, "downloads": -1, "filename": "cleo-0.6.6.tar.gz", "has_sig": false, "md5_digest": "0e10ddb9bce8d8c6baedcaf19d3bc784", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 59733, "upload_time": "2018-05-21T18:38:52", "upload_time_iso_8601": "2018-05-21T18:38:52.202051Z", "url": "https://files.pythonhosted.org/packages/16/aa/48c0b43f946042dfa133f97cb2eb6ead3dd5fda0782beddbf05ceaf7a68f/cleo-0.6.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.7": [ { "comment_text": "", "digests": { "md5": "76a4db77577233c3a3a05a455fc0f840", "sha256": "d6392d737871c27a64b6ac947427d3c34eae923a75cdefbb375c7dc74939097c" }, "downloads": -1, "filename": "cleo-0.6.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "76a4db77577233c3a3a05a455fc0f840", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 264477, "upload_time": "2018-06-25T06:12:59", "upload_time_iso_8601": "2018-06-25T06:12:59.009450Z", "url": "https://files.pythonhosted.org/packages/e3/76/6bb7d79a311fb3d9aff7fd5dd63395483a10b3c84169f0019c61eadedbf7/cleo-0.6.7-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2485e0599f67d627f7884f8f45812073", "sha256": "5e9cda6eea8b50098ade0a9fdad9457d5957f4bfd8f2db10bd8df04b0b560675" }, "downloads": -1, "filename": "cleo-0.6.7.tar.gz", "has_sig": false, "md5_digest": "2485e0599f67d627f7884f8f45812073", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 60514, "upload_time": "2018-06-25T06:13:00", "upload_time_iso_8601": "2018-06-25T06:13:00.495946Z", "url": "https://files.pythonhosted.org/packages/b6/4d/067913820204ad60a5d14618248cd5127a8e2b3bcc36a52ed0bff4e0a329/cleo-0.6.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.8": [ { "comment_text": "", "digests": { "md5": "c521fbc527568c7375b3e6ad2235fe30", "sha256": "9b7f79f1aa470a025c0d28c76aa225ee9e65028d32f80032e871aa3500df61b8" }, "downloads": -1, "filename": "cleo-0.6.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c521fbc527568c7375b3e6ad2235fe30", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 264834, "upload_time": "2018-06-25T19:20:40", "upload_time_iso_8601": "2018-06-25T19:20:40.594554Z", "url": "https://files.pythonhosted.org/packages/a7/b9/270301a3a87587f09bc3985973f2e362ffa45fa5fcd5128501516b2f5e31/cleo-0.6.8-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d395b940b76102885f507b70a4cbd45", "sha256": "85a63076b72ca376fb06668be1fc7758dc16740b394783d5cc65200c4b32f71b" }, "downloads": -1, "filename": "cleo-0.6.8.tar.gz", "has_sig": false, "md5_digest": "1d395b940b76102885f507b70a4cbd45", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 60566, "upload_time": "2018-06-25T19:20:42", "upload_time_iso_8601": "2018-06-25T19:20:42.272146Z", "url": "https://files.pythonhosted.org/packages/cb/9f/8dd57785485b2a2746edbe598a31b0852740a1ff91a2739c104b628c8520/cleo-0.6.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "277c550da10f2884d0e3f772f47b71d9", "sha256": "c755537b93dbe17d6520df82f3c7bca8a31e7065dafb1c1217fa9993600931a0" }, "downloads": -1, "filename": "cleo-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "277c550da10f2884d0e3f772f47b71d9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 52415, "upload_time": "2018-12-07T15:03:55", "upload_time_iso_8601": "2018-12-07T15:03:55.442577Z", "url": "https://files.pythonhosted.org/packages/dc/7f/d6fbcbdf34d13519a5d099ceefd138ad9bd8b3fbf44a79061ba4dea04402/cleo-0.7.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6198a0316e2179f8ac03d756178592f", "sha256": "4c15d2e9c9611f0be59f1f62e895f96cbaacafd80401c3c6472eb66c85c9ecda" }, "downloads": -1, "filename": "cleo-0.7.0.tar.gz", "has_sig": false, "md5_digest": "f6198a0316e2179f8ac03d756178592f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 20275, "upload_time": "2018-12-07T15:03:57", "upload_time_iso_8601": "2018-12-07T15:03:57.032979Z", "url": "https://files.pythonhosted.org/packages/22/02/5f81dd73d04c4db7a091f04beb41f71ee3c443ea66c88054e312b1f63c04/cleo-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "5724e12f1bb7b85fab6a5cca719a5f08", "sha256": "c00352dfc5d36366f80dd189fbccf5b8b084fffebd8b143b4b60e33145c2e5a3" }, "downloads": -1, "filename": "cleo-0.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5724e12f1bb7b85fab6a5cca719a5f08", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 52481, "upload_time": "2018-12-07T16:55:12", "upload_time_iso_8601": "2018-12-07T16:55:12.845578Z", "url": "https://files.pythonhosted.org/packages/04/9b/9b83fa066aee4cb61a3614767380283da1b090dcceae214b3b7f89a056b5/cleo-0.7.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c3383081fc5455a420d328150a389a0", "sha256": "3479588d0c1156b3a73168fd995cd93d23514baca2286740ed15171afa488498" }, "downloads": -1, "filename": "cleo-0.7.1.tar.gz", "has_sig": false, "md5_digest": "1c3383081fc5455a420d328150a389a0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 20290, "upload_time": "2018-12-07T16:55:14", "upload_time_iso_8601": "2018-12-07T16:55:14.529661Z", "url": "https://files.pythonhosted.org/packages/3d/9c/5a307231202323cc4d5149fe5e64da812b4fc6eeac763c58fb251732d437/cleo-0.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "819c1f83acfbca153c7e136f624521a4", "sha256": "a39fa806fd3f64ff0ae4e3a55bb80c8ce60ca73634e13619731d63a04a63be69" }, "downloads": -1, "filename": "cleo-0.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "819c1f83acfbca153c7e136f624521a4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 52434, "upload_time": "2018-12-08T19:34:13", "upload_time_iso_8601": "2018-12-08T19:34:13.509890Z", "url": "https://files.pythonhosted.org/packages/b2/57/7ddfd6a0f899e585be8684fd4b2ba4408bb892f112de88d1628397d1f07f/cleo-0.7.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06e6235c648d9f4eeac673c93dbc9647", "sha256": "7a5000de616de42fd78f968192651b9174bf333a9079fc9d68ccc672ddfd3624" }, "downloads": -1, "filename": "cleo-0.7.2.tar.gz", "has_sig": false, "md5_digest": "06e6235c648d9f4eeac673c93dbc9647", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 20292, "upload_time": "2018-12-08T19:34:15", "upload_time_iso_8601": "2018-12-08T19:34:15.087998Z", "url": "https://files.pythonhosted.org/packages/dc/53/0782ca2ad1c38114e54b4ef9894ed3055ece8c886091606a75d43b161fb0/cleo-0.7.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "9cf330632e76e91840c96d92907e092f", "sha256": "ea42329ec7c1579a770fa59f165e1cb7ffed252c9bdbb3214d6e4355436037e4" }, "downloads": -1, "filename": "cleo-0.7.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9cf330632e76e91840c96d92907e092f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 53752, "upload_time": "2019-05-11T22:15:30", "upload_time_iso_8601": "2019-05-11T22:15:30.527122Z", "url": "https://files.pythonhosted.org/packages/9d/5e/586d25a9cb454a395ef0adb4d040716d98f54b81a3a35312602d21a960f2/cleo-0.7.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2fdc053fd91e071c04cfc651fe668bc", "sha256": "89853a7704c827af4fddb20beeda48553e79ed1c187503fde88bab89ea57a44e" }, "downloads": -1, "filename": "cleo-0.7.3.tar.gz", "has_sig": false, "md5_digest": "a2fdc053fd91e071c04cfc651fe668bc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 20637, "upload_time": "2019-05-11T22:15:32", "upload_time_iso_8601": "2019-05-11T22:15:32.507937Z", "url": "https://files.pythonhosted.org/packages/48/fa/5d4d454bd391dda5ec7919fb1d20b9c9135c9737ac8549c82db3e5f0bdf6/cleo-0.7.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "a9a0c183b8f1684de498187221439328", "sha256": "9b7d706309412e43d00723ed3074a300cd7879a0c685f4fef0b5052d7f4ab71f" }, "downloads": -1, "filename": "cleo-0.7.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a9a0c183b8f1684de498187221439328", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 53717, "upload_time": "2019-05-15T19:52:20", "upload_time_iso_8601": "2019-05-15T19:52:20.342857Z", "url": "https://files.pythonhosted.org/packages/84/76/c8d9629b6cfac7c60df81ee7359025fda9d78a6b07f27c6a26a0e1330ce7/cleo-0.7.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ee51fae64ff2fd391748c3bb00372de", "sha256": "58d26642fa608a1515093275cd98875100c7d50f01fc1f3bbb7a78dbb73e4b14" }, "downloads": -1, "filename": "cleo-0.7.4.tar.gz", "has_sig": false, "md5_digest": "0ee51fae64ff2fd391748c3bb00372de", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 20659, "upload_time": "2019-05-15T19:52:23", "upload_time_iso_8601": "2019-05-15T19:52:23.127335Z", "url": "https://files.pythonhosted.org/packages/88/11/4cce18d4e98c6085cab631c74c1931f3d12367d278c73a9a55e5d49f9cc1/cleo-0.7.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.5": [ { "comment_text": "", "digests": { "md5": "58eaa17493182780cb609b74b42f130f", "sha256": "2f1cfd55a4b30c002ef86d740ededc9c11d6f89ea0dc56a14abe5aaf32c2015c" }, "downloads": -1, "filename": "cleo-0.7.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "58eaa17493182780cb609b74b42f130f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 21221, "upload_time": "2019-06-28T17:11:15", "upload_time_iso_8601": "2019-06-28T17:11:15.959424Z", "url": "https://files.pythonhosted.org/packages/2b/5d/448f82ac04662c83711fc60bd96524fa7cfd59fe7640caaca85b9c98f1e6/cleo-0.7.5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5268d54ec68e90c5395668b18c4da77b", "sha256": "6c28adbb0815b99e530bb4f783602459ab916c76c4db26c7b934223014eb1a34" }, "downloads": -1, "filename": "cleo-0.7.5.tar.gz", "has_sig": false, "md5_digest": "5268d54ec68e90c5395668b18c4da77b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 21936, "upload_time": "2019-06-28T17:11:18", "upload_time_iso_8601": "2019-06-28T17:11:18.098784Z", "url": "https://files.pythonhosted.org/packages/7a/f2/a15cb0df0bc8595cdbe572948b23d1a768064611a6a03660bf5303912f39/cleo-0.7.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.6": [ { "comment_text": "", "digests": { "md5": "7275e0dd12d7e2abe6d65b8155901bf4", "sha256": "9443d67e5b2da79b32d820ae41758dd6a25618345cb10b9a022a695e26b291b9" }, "downloads": -1, "filename": "cleo-0.7.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7275e0dd12d7e2abe6d65b8155901bf4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 21223, "upload_time": "2019-10-25T12:57:43", "upload_time_iso_8601": "2019-10-25T12:57:43.653134Z", "url": "https://files.pythonhosted.org/packages/4b/9d/10a5923c14c4f0faa98216af5262938f468af76101d9cd124ad2054943c7/cleo-0.7.6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ee4d80bded8e2c932963304a1683ebb", "sha256": "99cf342406f3499cec43270fcfaf93c126c5164092eca201dfef0f623360b409" }, "downloads": -1, "filename": "cleo-0.7.6.tar.gz", "has_sig": false, "md5_digest": "2ee4d80bded8e2c932963304a1683ebb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 21835, "upload_time": "2019-10-25T12:57:45", "upload_time_iso_8601": "2019-10-25T12:57:45.743520Z", "url": "https://files.pythonhosted.org/packages/99/d5/409b11936085c97ea7c9f596b7fcc3aac0cd9243bbba64be914bb9142bc2/cleo-0.7.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "c817d94149ddfb7d6113274486e55ffa", "sha256": "dcb791b246c02d59ea8eaf05a05d986e547dbe8ba2496ed59048e5d4ab93b537" }, "downloads": -1, "filename": "cleo-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c817d94149ddfb7d6113274486e55ffa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 21414, "upload_time": "2020-03-26T22:12:59", "upload_time_iso_8601": "2020-03-26T22:12:59.680816Z", "url": "https://files.pythonhosted.org/packages/d7/86/b30a1b7d4afe292378e7763c4626d1dab4b34d2debb1ca1cb35a67c9d488/cleo-0.8.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e61076b3fdfbc26970202743cd3381ac", "sha256": "b2d56e93b182358591d0ec46c4f787736378a6a8adf4a6512f72aeb0506de981" }, "downloads": -1, "filename": "cleo-0.8.0.tar.gz", "has_sig": false, "md5_digest": "e61076b3fdfbc26970202743cd3381ac", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 19165, "upload_time": "2020-03-26T22:13:01", "upload_time_iso_8601": "2020-03-26T22:13:01.310299Z", "url": "https://files.pythonhosted.org/packages/46/05/63fef32610d3aa776ca128b73b13e89b611a093619a68fc902605a6d7105/cleo-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "9b0fba326f017ebf4166d13a8a2b9507", "sha256": "141cda6dc94a92343be626bb87a0b6c86ae291dfc732a57bf04310d4b4201753" }, "downloads": -1, "filename": "cleo-0.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9b0fba326f017ebf4166d13a8a2b9507", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 21415, "upload_time": "2020-04-17T17:25:02", "upload_time_iso_8601": "2020-04-17T17:25:02.656661Z", "url": "https://files.pythonhosted.org/packages/09/46/3577da4237675e90630e8e9ccd2c7dbcd42afd4463712a207eab148dfbc2/cleo-0.8.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba25f33045fc555d1b67be01fe8ad64d", "sha256": "3d0e22d30117851b45970b6c14aca4ab0b18b1b53c8af57bed13208147e4069f" }, "downloads": -1, "filename": "cleo-0.8.1.tar.gz", "has_sig": false, "md5_digest": "ba25f33045fc555d1b67be01fe8ad64d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 19159, "upload_time": "2020-04-17T17:25:03", "upload_time_iso_8601": "2020-04-17T17:25:03.796351Z", "url": "https://files.pythonhosted.org/packages/a5/36/943c12bc9b56f5fc83661558c576a3d95df0d0f9c153f87ee4c19647025b/cleo-0.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0a1": [ { "comment_text": "", "digests": { "md5": "aaa331ab72ca29464cc358a166106b77", "sha256": "e4a45adc6b56a04d350e7b4893352fdcc07d89d35991e5df16753e05a7c78c2b" }, "downloads": -1, "filename": "cleo-1.0.0a1-py3-none-any.whl", "has_sig": false, "md5_digest": "aaa331ab72ca29464cc358a166106b77", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 77800, "upload_time": "2021-01-29T21:29:11", "upload_time_iso_8601": "2021-01-29T21:29:11.987919Z", "url": "https://files.pythonhosted.org/packages/21/61/a2304bf34866de6cd2d8ba0a7ce12382945cb2723869d01a44502a5f1e4a/cleo-1.0.0a1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db277f030bdc35c7d03303713f208e93", "sha256": "45bc5f04278c2f183c7ab77b3ec20f5204711fecb37ae688424c39ea8badf3fe" }, "downloads": -1, "filename": "cleo-1.0.0a1.tar.gz", "has_sig": false, "md5_digest": "db277f030bdc35c7d03303713f208e93", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 61789, "upload_time": "2021-01-29T21:29:13", "upload_time_iso_8601": "2021-01-29T21:29:13.177126Z", "url": "https://files.pythonhosted.org/packages/45/af/94aa774b07c0e11867d683514edde44376c13137359252c1be201d684625/cleo-1.0.0a1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0a2": [ { "comment_text": "", "digests": { "md5": "2d51f0f7c8878a04757cda2ccea9aa4b", "sha256": "fa4c9ed94deba0f286bb9f2efbd3d6b4d0237b99b93a7dae6b55d473e1d8339c" }, "downloads": -1, "filename": "cleo-1.0.0a2-py3-none-any.whl", "has_sig": false, "md5_digest": "2d51f0f7c8878a04757cda2ccea9aa4b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 77842, "upload_time": "2021-02-13T12:37:56", "upload_time_iso_8601": "2021-02-13T12:37:56.080204Z", "url": "https://files.pythonhosted.org/packages/af/61/17cb8dc0c009d7e21472697f58b3d22ee393008b78c66f1dc99fe06be633/cleo-1.0.0a2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "00a7259b8e97191457831e46e5bc0f60", "sha256": "1028cc0585e510e74ceaa73f4b7da8586911b7cc3e4aba03f0540c7d9415701b" }, "downloads": -1, "filename": "cleo-1.0.0a2.tar.gz", "has_sig": false, "md5_digest": "00a7259b8e97191457831e46e5bc0f60", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 61827, "upload_time": "2021-02-13T12:37:57", "upload_time_iso_8601": "2021-02-13T12:37:57.506343Z", "url": "https://files.pythonhosted.org/packages/c9/ac/9e3ba8c024cc87804ad63bfc6daee41658ccc2faf6f7cf8dc1d71bad8bcf/cleo-1.0.0a2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0a3": [ { "comment_text": "", "digests": { "md5": "67d8731c7a143a862bdb82205a9dbd4d", "sha256": "46b2f970d06caa311d1e12a1013b0ce2a8149502669ac82cbedafb9e0bfdbccd" }, "downloads": -1, "filename": "cleo-1.0.0a3-py3-none-any.whl", "has_sig": false, "md5_digest": "67d8731c7a143a862bdb82205a9dbd4d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 77834, "upload_time": "2021-02-21T21:14:25", "upload_time_iso_8601": "2021-02-21T21:14:25.442863Z", "url": "https://files.pythonhosted.org/packages/8b/a4/00a4a4efc6fd1a11f098a3ef8c63b163d9bcacd8ffec7325779186a669fe/cleo-1.0.0a3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ff8438ae194b75a299a351a84296f51", "sha256": "9c1c8dd06635c936f45e4649aa2f7581517b4d52c7a9414d1b42586e63c2fe5d" }, "downloads": -1, "filename": "cleo-1.0.0a3.tar.gz", "has_sig": false, "md5_digest": "7ff8438ae194b75a299a351a84296f51", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 61825, "upload_time": "2021-02-21T21:14:26", "upload_time_iso_8601": "2021-02-21T21:14:26.848838Z", "url": "https://files.pythonhosted.org/packages/f4/d1/4902323a882554bdb1d656a6f40ef3cec695a40944d906f5b7aa8824320e/cleo-1.0.0a3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0a4": [ { "comment_text": "", "digests": { "md5": "71ab7bdfc162e2333b0772c3823953d3", "sha256": "cdd0c3458c15ced3a9f0204b1e53a1b4bee3c56ebcb3ac54c872a56acc657a09" }, "downloads": -1, "filename": "cleo-1.0.0a4-py3-none-any.whl", "has_sig": false, "md5_digest": "71ab7bdfc162e2333b0772c3823953d3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 77958, "upload_time": "2021-07-30T15:03:48", "upload_time_iso_8601": "2021-07-30T15:03:48.770197Z", "url": "https://files.pythonhosted.org/packages/5c/cd/67ba80a57337b7dcad4d9abf4ad5972ed51f122a65bc8f11719d7a185c41/cleo-1.0.0a4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2afb2579ba980b0758623145df247504", "sha256": "a103a065d031b7d936ee88a6b93086a69bd9c1b40fa2ebfe8c056285a66b481d" }, "downloads": -1, "filename": "cleo-1.0.0a4.tar.gz", "has_sig": false, "md5_digest": "2afb2579ba980b0758623145df247504", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 61898, "upload_time": "2021-07-30T15:03:50", "upload_time_iso_8601": "2021-07-30T15:03:50.374273Z", "url": "https://files.pythonhosted.org/packages/9c/af/01dddc11af22b432f71aacff04fa3aeba0529c8b7e3e9271e9a6758e67ad/cleo-1.0.0a4.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9b0fba326f017ebf4166d13a8a2b9507", "sha256": "141cda6dc94a92343be626bb87a0b6c86ae291dfc732a57bf04310d4b4201753" }, "downloads": -1, "filename": "cleo-0.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9b0fba326f017ebf4166d13a8a2b9507", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 21415, "upload_time": "2020-04-17T17:25:02", "upload_time_iso_8601": "2020-04-17T17:25:02.656661Z", "url": "https://files.pythonhosted.org/packages/09/46/3577da4237675e90630e8e9ccd2c7dbcd42afd4463712a207eab148dfbc2/cleo-0.8.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba25f33045fc555d1b67be01fe8ad64d", "sha256": "3d0e22d30117851b45970b6c14aca4ab0b18b1b53c8af57bed13208147e4069f" }, "downloads": -1, "filename": "cleo-0.8.1.tar.gz", "has_sig": false, "md5_digest": "ba25f33045fc555d1b67be01fe8ad64d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 19159, "upload_time": "2020-04-17T17:25:03", "upload_time_iso_8601": "2020-04-17T17:25:03.796351Z", "url": "https://files.pythonhosted.org/packages/a5/36/943c12bc9b56f5fc83661558c576a3d95df0d0f9c153f87ee4c19647025b/cleo-0.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }