{ "info": { "author": "Catherine Devlin", "author_email": "catherine.devlin@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "cmd2: a tool for building interactive command line apps\n=======================================================\n[![Latest Version](https://img.shields.io/pypi/v/cmd2.svg?style=flat-square&label=latest%20stable%20version)](https://pypi.python.org/pypi/cmd2/)\n[![Build status](https://img.shields.io/travis/python-cmd2/cmd2.svg?style=flat-square&label=unix%20build)](https://travis-ci.org/python-cmd2/cmd2)\n[![Appveyor build status](https://img.shields.io/appveyor/ci/FedericoCeratto/cmd2.svg?style=flat-square&label=windows%20build)](https://ci.appveyor.com/project/FedericoCeratto/cmd2)\n[![Azure Build status](https://python-cmd2.visualstudio.com/cmd2/_apis/build/status/python-cmd2.cmd2?branch=master)](https://python-cmd2.visualstudio.com/cmd2/_build/latest?definitionId=1&branch=master)\n[![codecov](https://codecov.io/gh/python-cmd2/cmd2/branch/master/graph/badge.svg)](https://codecov.io/gh/python-cmd2/cmd2)\n[![Documentation Status](https://readthedocs.org/projects/cmd2/badge/?version=latest)](http://cmd2.readthedocs.io/en/latest/?badge=latest)\n\"Chat\"\n\ncmd2 is a tool for building interactive command line applications in Python. Its goal is to make it\nquick and easy for developers to build feature-rich and user-friendly interactive command line\napplications. It provides a simple API which is an extension of Python's built-in\n[cmd](https://docs.python.org/3/library/cmd.html) module. cmd2 provides a wealth of features on top\nof cmd to make your life easier and eliminates much of the boilerplate code which would be necessary\nwhen using cmd.\n\nClick on image below to watch a short video demonstrating the capabilities of cmd2:\n[![Screenshot](cmd2.png)](https://youtu.be/DDU_JH6cFsA)\n\nMain Features\n-------------\n- Searchable command history (`history` command and `+r`) - optionally persistent\n- Text file scripting of your application with `run_script` (`@`) and `_relative_run_script` (`@@`)\n- Python scripting of your application with ``run_pyscript``\n- Run shell commands with ``!``\n- Pipe command output to shell commands with `|`\n- Redirect command output to file with `>`, `>>`\n- Bare `>`, `>>` with no filename send output to paste buffer (clipboard)\n- `py` enters interactive Python console (opt-in `ipy` for IPython console)\n- Option to display long output using a pager with ``cmd2.Cmd.ppaged()``\n- Multi-line commands\n- Special-character command shortcuts (beyond cmd's `?` and `!`)\n- Command aliasing similar to bash `alias` command\n- Macros, which are similar to aliases, but they can contain argument placeholders\n- Ability to run commands at startup from an initialization script\n- Settable environment parameters\n- Parsing commands with arguments using `argparse`, including support for subcommands\n- Unicode character support\n- Good tab-completion of commands, subcommands, file system paths, and shell commands\n- Automatic tab-completion of `argparse` flags when using one of the `cmd2` `argparse` decorators\n- Support for Python 3.5+ on Windows, macOS, and Linux\n- Trivial to provide built-in help for all commands\n- Built-in regression testing framework for your applications (transcript-based testing)\n- Transcripts for use with built-in regression can be automatically generated from `history -t` or `run_script -t`\n- Alerts that seamlessly print while user enters text at prompt\n- Colored and stylized output using `ansi.style()`\n\nPython 2.7 support is EOL\n-------------------------\nThe last version of cmd2 to support Python 2.7 is [0.8.9](https://pypi.org/project/cmd2/0.8.9/), released on August 21, 2018.\n\nSupporting Python 2 was an increasing burden on our limited resources. Switching to support only Python 3 is allowing\nus to clean up the codebase, remove some cruft, and focus on developing new features.\n\nInstallation\n------------\nOn all operating systems, the latest stable version of `cmd2` can be installed using pip:\n\n```bash\npip install -U cmd2\n```\n\ncmd2 works with Python 3.5+ on Windows, macOS, and Linux. It is pure Python code with few 3rd-party dependencies.\n\nFor information on other installation options, see\n[Installation Instructions](https://cmd2.readthedocs.io/en/latest/overview/installation.html) in the cmd2\ndocumentation.\n\n\nDocumentation\n-------------\nThe latest documentation for cmd2 can be read online here: https://cmd2.readthedocs.io/en/latest/\n\nIt is available in HTML, PDF, and ePub formats.\n\n\nFeature Overview\n----------------\nInstructions for implementing each feature follow.\n\n- Extension of the `cmd` module. So capabilities provided by `cmd` still exist\n - Your applicaiton inherits from `cmd2.Cmd`, let's say you call this class `MyApp`\n ```Python\n import cmd2\n class MyApp(cmd2.Cmd):\n pass\n ```\n - Define a command named **foo** by creating a method named **do_foo**\n ```Python\n class MyApp(cmd2.Cmd):\n def do_foo(self, args):\n \"\"\"This docstring is the built-in help for the foo command.\"\"\"\n self.poutput(cmd2.style('foo bar baz', fg='red'))\n ```\n - By default the docstring for your **do_foo** method is the help for the **foo** command\n - NOTE: This doesn't apply if you use one of the `argparse` decorators mentioned below\n - Can provide more custom help by creating a **help_foo** method (except when using `argparse` decorators)\n - Can provide custom tab-completion for the **foo** command by creating a **complete_foo** method\n - Easy to upgrade an existing `cmd` app to `cmd2`\n - Run your `cmd2` app using the built-in REPL by executing the **cmdloop** method\n\n- Searchable command history\n - Readline history using `+r`, arrow keys, and other [Readline Shortcut keys](http://readline.kablamo.org/emacs.html)\n - Readline history can be persistent between application runs via optional argument to `cmd2.Cmd` initializer\n - `cmd2` `history` command provides flexible and powerful search\n - By design, this history does NOT persist between application runs\n - If you wish to exclude some of your custom commands from the history, append their names to the list at `Cmd.exclude_from_history`.\n - Do `help history` in any `cmd2` application for more information\n\n- Simple scripting using text files with one command + arguments per line\n - See the [Command Scripts](https://cmd2.readthedocs.io/en/latest/features/scripting.html#command-scripts) section of the `cmd2` docs for more info\n - See [script.txt](https://github.com/python-cmd2/cmd2/blob/master/examples/scripts/script.txt) for a trivial example script that can be\n used in any `cmd2` application with the `run_script` command (or `@` shortcut)\n\n- Powerful and flexible built-in Python scripting of your application using the `run_pyscript` command\n - Run arbitrary Python scripts within your `cmd2` application with the ability to also call custom `cmd2` commands\n - No separate API for your end users to learn\n - Syntax for calling `cmd2` commands in a `run_pyscript` is essentially identical to what they would enter on the command line\n - See the [Python Scripts](https://cmd2.readthedocs.io/en/latest/features/scripting.html#python-scripts) section of the `cmd2` docs for more info\n - Also see the [python_scripting.py](https://github.com/python-cmd2/cmd2/blob/master/examples/python_scripting.py) \n example in conjunction with the [conditional.py](https://github.com/python-cmd2/cmd2/blob/master/examples/scripts/conditional.py) script\n\n- Parsing commands with `argparse`\n - Two decorators provide built-in capability for using `argparse.ArgumentParser` to parse command arguments\n - `cmd2.with_argparser` - all arguments are parsed by the `ArgumentParser`\n - `cmd2.with_argparser_and_unknown_args` - any arguments not parsed by the `ArgumentParser` get passed as a list\n\n ```Python\n import argparse\n from cmd2 import with_argparser\n\n argparser = argparse.ArgumentParser()\n argparser.add_argument('-p', '--piglatin', action='store_true', help='atinLay')\n argparser.add_argument('-s', '--shout', action='store_true', help='N00B EMULATION MODE')\n argparser.add_argument('words', nargs='+', help='words to say')\n\n @with_argparser(argparser)\n def do_speak(self, args):\n \"\"\"Repeats what you tell me to.\"\"\"\n words = []\n for word in args.words:\n if args.piglatin:\n word = '%s%say' % (word[1:], word[0])\n if args.shout:\n word = word.upper()\n words.append(word)\n self.stdout.write('{}\\n'.format(' '.join(words)))\n ```\n\n See [Argument Processing](https://cmd2.readthedocs.io/en/latest/features/argument_processing.html) in the docs for more details\n\n NOTE: `cmd2` also provides the `Cmd2ArgumentParser` customization of `argparse.ArgumentParser` for prettier formatting\n of help and error messages.\n\n- `cmd2` applications function like a full-featured shell in many ways (and are cross-platform)\n - Run arbitrary shell commands by preceding them with `!` or `shell`\n - Redirect the output of any command to a file with `>` for overwrite or `>>` for append\n - If no file name provided after the `>`/`>>`, then output goes to the clipboard/pastebuffer\n - Pipe the output of any command to an arbitrary shell command with `|`\n - Create your own custom command aliases using the `alias` command\n - Create your own custom macros using the `macro` command (similar to aliases, but allow arguments)\n - Settable environment parameters that users can change during execution supported via `set` command\n - Option to display long output using a pager with ``cmd2.Cmd.ppaged()``\n - Optionally specify a startup script that end users can use to customize their environment\n\n- Top-notch tab-completion capabilities which are easy to use but very powerful\n - For a command **foo** implement a **complete_foo** method to provide custom tab completion for that command\n - But the helper methods within `cmd2` discussed below mean you would rarely have to implement this from scratch\n - Commands which use one of the `argparse` decorators have automatic tab-completion of `argparse` flags\n - And also provide help hints for values associated with these flags\n - Experiment with the [argprint.py](https://github.com/python-cmd2/cmd2/blob/master/examples/arg_print.py) example\n using the **oprint** and **pprint** commands to get a feel for how this works\n - `path_complete` helper method provides flexible tab-completion of file system paths\n - See the [paged_output.py](https://github.com/python-cmd2/cmd2/blob/master/examples/paged_output.py) example for a simple use case\n - See the [python_scripting.py](https://github.com/python-cmd2/cmd2/blob/master/examples/python_scripting.py) example for a more full-featured use case\n - `flag_based_complete` helper method for tab completion based on a particular flag preceding the token being completed\n - See the [tab_completion.py](https://github.com/python-cmd2/cmd2/blob/master/examples/tab_completion.py) example for a demonstration of how to use this feature\n - `index_based_complete` helper method for tab completion based on a fixed position in the input string\n - See the [tab_completion.py](https://github.com/python-cmd2/cmd2/blob/master/examples/tab_completion.py) example for a demonstration of how to use this feature\n - `basic_complete` helper method for tab completion against a list\n - `delimiter_complete` helper method for tab completion against a list but each match is split on a delimiter \n - See the [tab_autocompletion.py](https://github.com/python-cmd2/cmd2/blob/master/examples/tab_autocompletion.py) example for a demonstration of how to use this feature\n - `cmd2` in combination with `argparse` also provide several advanced capabilities for automatic tab-completion\n - See the [tab_autocompletion.py](https://github.com/python-cmd2/cmd2/blob/master/examples/tab_autocompletion.py) example for more info\n\n- Multi-line commands\n\n Any command accepts multi-line input when its name is listed the `multiline_commands` optional argument to \n `cmd2.Cmd.__init`. The program will keep expecting input until a line ends with any of the characters listed in the \n `terminators` optional argument to `cmd2.Cmd.__init__()` . The default terminators are `;` and `\\n` (empty newline).\n\n- Special-character shortcut commands (beyond cmd's \"@\" and \"!\")\n\n To create a single-character shortcut for a command, update `Cmd.shortcuts`.\n\n- Asynchronous alerts based on events happening in background threads\n - `cmd2` provides the following helper methods for providing information to users asynchronously even though the `cmd2`\n REPL is a line-oriented command interpreter:\n - `async_alert` - display an important message to the user while they are at the prompt in between commands\n - To the user it appears as if an alert message is printed above the prompt\n - `async_update_prompt` - update the prompt while the user is still typing at it\n - This is good for alerting the user to system changes dynamically in between commands\n - `set_window_title` - set the terminal window title\n - This changes the window title of the terminal that the user is running the `cmd2` app within\n\n\nTutorials\n---------\n\n* PyOhio 2019 presentation: \n * [video](https://www.youtube.com/watch?v=pebeWrTqIIw)\n * [slides](https://github.com/python-cmd2/talks/blob/master/PyOhio_2019/cmd2-PyOhio_2019.pdf)\n * [example code](https://github.com/python-cmd2/talks/tree/master/PyOhio_2019/examples)\n\n\nExample Application\n-------------------\n\nExample cmd2 application (**examples/example.py**):\n\n```python\n#!/usr/bin/env python\n# coding=utf-8\n\"\"\"\nA sample application for cmd2.\n\"\"\"\nimport argparse\nimport random\nimport sys\nimport cmd2\n\nclass CmdLineApp(cmd2.Cmd):\n \"\"\" Example cmd2 application. \"\"\"\n\n # Setting this true makes it run a shell command if a cmd2/cmd command doesn't exist\n # default_to_shell = True\n MUMBLES = ['like', '...', 'um', 'er', 'hmmm', 'ahh']\n MUMBLE_FIRST = ['so', 'like', 'well']\n MUMBLE_LAST = ['right?']\n\n def __init__(self):\n self.maxrepeats = 3\n shortcuts = dict(cmd2.DEFAULT_SHORTCUTS)\n shortcuts.update({'&': 'speak'})\n\n # Set use_ipython to True to enable the \"ipy\" command which embeds and interactive IPython shell\n super().__init__(use_ipython=False, multiline_commands=['orate'], shortcuts=shortcuts)\n\n # Make maxrepeats settable at runtime\n self.settable['maxrepeats'] = 'max repetitions for speak command'\n\n speak_parser = argparse.ArgumentParser()\n speak_parser.add_argument('-p', '--piglatin', action='store_true', help='atinLay')\n speak_parser.add_argument('-s', '--shout', action='store_true', help='N00B EMULATION MODE')\n speak_parser.add_argument('-r', '--repeat', type=int, help='output [n] times')\n speak_parser.add_argument('words', nargs='+', help='words to say')\n\n @cmd2.with_argparser(speak_parser)\n def do_speak(self, args):\n \"\"\"Repeats what you tell me to.\"\"\"\n words = []\n for word in args.words:\n if args.piglatin:\n word = '%s%say' % (word[1:], word[0])\n if args.shout:\n word = word.upper()\n words.append(word)\n repetitions = args.repeat or 1\n for i in range(min(repetitions, self.maxrepeats)):\n # .poutput handles newlines, and accommodates output redirection too\n self.poutput(' '.join(words))\n\n do_say = do_speak # now \"say\" is a synonym for \"speak\"\n do_orate = do_speak # another synonym, but this one takes multi-line input\n\n mumble_parser = argparse.ArgumentParser()\n mumble_parser.add_argument('-r', '--repeat', type=int, help='how many times to repeat')\n mumble_parser.add_argument('words', nargs='+', help='words to say')\n\n @cmd2.with_argparser(mumble_parser)\n def do_mumble(self, args):\n \"\"\"Mumbles what you tell me to.\"\"\"\n repetitions = args.repeat or 1\n for i in range(min(repetitions, self.maxrepeats)):\n output = []\n if (random.random() < .33):\n output.append(random.choice(self.MUMBLE_FIRST))\n for word in args.words:\n if (random.random() < .40):\n output.append(random.choice(self.MUMBLES))\n output.append(word)\n if (random.random() < .25):\n output.append(random.choice(self.MUMBLE_LAST))\n self.poutput(' '.join(output))\n\nif __name__ == '__main__':\n app = CmdLineApp()\n sys.exit(app.cmdloop())\n```\n\nThe following is a sample session running example.py.\nThanks to Cmd2's built-in transcript testing capability, it also serves as a test\nsuite for example.py when saved as *transcript_regex.txt*.\nRunning\n\n```bash\npython example.py -t transcript_regex.txt\n```\nwill run all the commands in the transcript against `example.py`, verifying that the output produced\nmatches the transcript.\n\nexample/transcript_regex.txt:\n\n```text\n# Run this transcript with \"python example.py -t transcript_regex.txt\"\n# The regex for editor will match whatever program you use.\n# regexes on prompts just make the trailing space obvious\n(Cmd) set\nallow_ansi: Terminal\ncontinuation_prompt: >/ /\ndebug: False\necho: False\neditor: /.*?/\nfeedback_to_output: False\nlocals_in_py: True\nmaxrepeats: 3\nprompt: (Cmd)/ /\nquiet: False\ntiming: False\n```\n\nRegular expressions can be used anywhere within a transcript file simply by enclosing them within forward slashes, `/`.\n\n\nFound a bug?\n------------\n\nIf you think you've found a bug, please first read through the open [Issues](https://github.com/python-cmd2/cmd2/issues). If you're confident it's a new bug, go ahead and create a new GitHub issue. Be sure to include as much information as possible so we can reproduce the bug. At a minimum, please state the following:\n\n* ``cmd2`` version\n* Python version\n* OS name and version\n* What you did to cause the bug to occur\n* Include any traceback or error message associated with the bug\n\n\nOpen source projects using cmd2\n-------------------------------\n\nHere are a few examples of open-source projects which use `cmd2`:\n\n* [CephFS Shell](http://docs.ceph.com/docs/master/cephfs/cephfs-shell/)\n * [Ceph](https://ceph.com/) is a distributed object, block, and file storage platform\n* [JSShell](https://github.com/Den1al/JSShell)\n * An interactive multi-user web JavaScript shell\n* [psiTurk](https://psiturk.org)\n * An open platform for science on Amazon Mechanical Turk\n* [Jok3r](http://www.jok3r-framework.com)\n * Network & Web Pentest Automation Framework\n* [Poseidon](https://github.com/CyberReboot/poseidon)\n * Leverages software-defined networks (SDNs) to acquire and then feed network traffic to a number of machine learning techniques\n* [Unipacker](https://github.com/unipacker/unipacker)\n * Automatic and platform-independent unpacker for Windows binaries based on emulation\n* [FLASHMINGO](https://github.com/fireeye/flashmingo)\n * Automatic analysis of SWF files based on some heuristics. Extensible via plugins.\n* [tomcatmanager](https://github.com/tomcatmanager/tomcatmanager)\n * A command line tool and python library for managing a tomcat server\n* [Expliot](https://gitlab.com/expliot_framework/expliot)\n * Internet of Things (IoT) exploitation framework\n* [mptcpanalyzer](https://github.com/teto/mptcpanalyzer)\n * Tool to help analyze mptcp pcaps\n* [clanvas](https://github.com/marklalor/clanvas)\n * Command-line client for Canvas by Instructure\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/python-cmd2/cmd2", "keywords": "command prompt console cmd", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "cmd2", "package_url": "https://pypi.org/project/cmd2/", "platform": "any", "project_url": "https://pypi.org/project/cmd2/", "project_urls": { "Homepage": "https://github.com/python-cmd2/cmd2" }, "release_url": "https://pypi.org/project/cmd2/0.9.19/", "requires_dist": [ "pyperclip (>=1.6)", "colorama (>=0.3.7)", "attrs (>=16.3.0)", "wcwidth (>=0.1.7)", "pyreadline ; sys_platform=='win32'", "pytest ; extra == 'dev'", "codecov ; extra == 'dev'", "pytest-cov ; extra == 'dev'", "pytest-mock ; extra == 'dev'", "tox ; extra == 'dev'", "flake8 ; extra == 'dev'", "sphinx ; extra == 'dev'", "sphinx-rtd-theme ; extra == 'dev'", "sphinx-autobuild ; extra == 'dev'", "doc8 ; extra == 'dev'", "invoke ; extra == 'dev'", "twine (>=1.11) ; extra == 'dev'", "mock ; (python_version < \"3.6\") and extra == 'dev'", "codecov ; extra == 'test'", "pytest ; extra == 'test'", "pytest-cov ; extra == 'test'", "pytest-mock ; extra == 'test'", "mock ; (python_version < \"3.6\") and extra == 'test'", "gnureadline ; (sys_platform == \"darwin\") and extra == 'test'" ], "requires_python": ">=3.5", "summary": "cmd2 - quickly build feature-rich and user-friendly interactive command line applications in Python", "version": "0.9.19" }, "last_serial": 5972634, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "c909b50bd057a7c90a2f2b50941f4b88", "sha256": "5fd566efe8ff6c85254cb6229d9a0382d30e42d1a75aea9b6f35db6eff031797" }, "downloads": -1, "filename": "cmd2-0.1-py2.5.egg", "has_sig": false, "md5_digest": "c909b50bd057a7c90a2f2b50941f4b88", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 16821, "upload_time": "2008-01-06T01:42:49", "url": "https://files.pythonhosted.org/packages/45/49/c04f2a5d2035e7970191f39e7bb21c2876a1df7e9efbf35c2229e0214d7d/cmd2-0.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "0f5d129ebb1f3212cf581e3b1c3c7516", "sha256": "ae4f6bf79083e797a3c0951e81ec4c048435db8097499e6d1dd33b75879b2d7b" }, "downloads": -1, "filename": "cmd2-0.1.win32.exe", "has_sig": false, "md5_digest": "0f5d129ebb1f3212cf581e3b1c3c7516", "packagetype": "bdist_wininst", "python_version": "2.5", "requires_python": null, "size": 69855, "upload_time": "2008-01-03T20:47:56", "url": "https://files.pythonhosted.org/packages/e8/9b/31ee67400a8cfd332e16b6a66f0942004764c71608ed7d93c147c1643da7/cmd2-0.1.win32.exe" }, { "comment_text": "", "digests": { "md5": "77f951e6703f8ff0e21286abcde83014", "sha256": "125c60f4855e6fd934037709d2ffabd98558d4e30f5c47af13fc19751a2882ea" }, "downloads": -1, "filename": "cmd2-0.1.zip", "has_sig": false, "md5_digest": "77f951e6703f8ff0e21286abcde83014", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9127, "upload_time": "2008-01-06T01:43:30", "url": "https://files.pythonhosted.org/packages/74/c1/a912c67f23c37fb405c9ea48728d38350e8701e3b647c02a2fa864962c7d/cmd2-0.1.zip" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "e1d9ab04cf9a5af6ea98075987ec4dc3", "sha256": "e462373eda02496f86a280afc3a03dd08f89c117ab32af1d1f071af5e62cb3c6" }, "downloads": -1, "filename": "cmd2-0.2-py2.5.egg", "has_sig": false, "md5_digest": "e1d9ab04cf9a5af6ea98075987ec4dc3", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 16883, "upload_time": "2008-02-26T21:18:15", "url": "https://files.pythonhosted.org/packages/64/2c/4116ad2fe18b9ea5f04c74914cc4d77bffe1558b11334ccf1430c32e22f6/cmd2-0.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "fded0fcbd24b19ae262f38e44f0620b1", "sha256": "37b0ca657b6c6b15e01f0e670d2d41f30d0e0738955cab7307c12bf3ea555fdf" }, "downloads": -1, "filename": "cmd2-0.2.win32.exe", "has_sig": false, "md5_digest": "fded0fcbd24b19ae262f38e44f0620b1", "packagetype": "bdist_wininst", "python_version": "2.5", "requires_python": null, "size": 70357, "upload_time": "2008-02-26T21:18:01", "url": "https://files.pythonhosted.org/packages/cc/22/acc46f58419163756655e2ccc569bd654e2e38834b86df3551cd8e59bef2/cmd2-0.2.win32.exe" }, { "comment_text": "", "digests": { "md5": "94c8cbe189a2b93a374259707995e9df", "sha256": "fd3de50135b016262a03ac14f098199633a730e783abff07d75565cdf6181d69" }, "downloads": -1, "filename": "cmd2-0.2.zip", "has_sig": false, "md5_digest": "94c8cbe189a2b93a374259707995e9df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9601, "upload_time": "2008-02-26T21:17:43", "url": "https://files.pythonhosted.org/packages/32/ba/e21ffbc91a1bfd0cf3d457ebbd50157d677c69beb2a26dca8e0d5ff72f74/cmd2-0.2.zip" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "fc983d622a417bb8577474ff7ce2e6d7", "sha256": "b3d0b21759ee99344aa65a2cf717aed2b9525d4ea2bf3a19c4ba484d94b738fa" }, "downloads": -1, "filename": "cmd2-0.2.1-py2.5.egg", "has_sig": false, "md5_digest": "fc983d622a417bb8577474ff7ce2e6d7", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 16837, "upload_time": "2008-03-03T19:07:51", "url": "https://files.pythonhosted.org/packages/0f/3b/6a77b7a7b13d383512d502f1f8a60f99e39cbd5af13f0f5f55880803e2cd/cmd2-0.2.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "a906f7e9763d3708322e898eae4653dd", "sha256": "cab7555926d47f5535ce7e83fa2d0b948b946f0fdefb79e18ba79b31c6f72fe2" }, "downloads": -1, "filename": "cmd2-0.2.1.tar.gz", "has_sig": false, "md5_digest": "a906f7e9763d3708322e898eae4653dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7060, "upload_time": "2008-03-03T19:07:43", "url": "https://files.pythonhosted.org/packages/e5/72/9368b172824c8ebee352d8068de005b97b38769a333c77132eba26e92291/cmd2-0.2.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "9e2442d483f3fab37ab1d0665f3c04f5", "sha256": "1d9fd61b0536412d3dc60162af91c8f335d5fd8da855349a1764658c53f023fc" }, "downloads": -1, "filename": "cmd2-0.2.1.win32.exe", "has_sig": false, "md5_digest": "9e2442d483f3fab37ab1d0665f3c04f5", "packagetype": "bdist_wininst", "python_version": "2.5", "requires_python": null, "size": 70477, "upload_time": "2008-03-05T17:31:01", "url": "https://files.pythonhosted.org/packages/2e/42/e285081e5e7c939b4dff0b24fe63aaabbd00e3f4cd93f494efb8ee0e37d4/cmd2-0.2.1.win32.exe" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "6d96a6732ea486a25043fd57d7d52542", "sha256": "74e1f3df101cb24d03a07789246555593e32956058bcb91f9d32e5008fd3b526" }, "downloads": -1, "filename": "cmd2-0.2.2-py2.4.egg", "has_sig": false, "md5_digest": "6d96a6732ea486a25043fd57d7d52542", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 17107, "upload_time": "2008-04-11T13:06:07", "url": "https://files.pythonhosted.org/packages/9f/c0/ace687d6271f63a8d7279f97dde4a020a1cdb873334d750d24e957e451ed/cmd2-0.2.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "f20d8f932d2e09b8ae9f9fcc2163b8b1", "sha256": "9b97849a4091097070a5ec2350a2dc84d64631396a1bbd0907dbf40cdf9b06f7" }, "downloads": -1, "filename": "cmd2-0.2.2-py2.5.egg", "has_sig": false, "md5_digest": "f20d8f932d2e09b8ae9f9fcc2163b8b1", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 16875, "upload_time": "2008-04-11T13:06:22", "url": "https://files.pythonhosted.org/packages/a7/23/d4f7cff26f5a3f13d949f2bc281c57d92a6f0100273a97d80a3f35c24918/cmd2-0.2.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "8d2aaaf14e2b28bcbef2118830570308", "sha256": "b0a7f553a5ef8f62d9c48d5b6827fc0aac140a4635fe2e516e7596973033c73a" }, "downloads": -1, "filename": "cmd2-0.2.2.tar.gz", "has_sig": false, "md5_digest": "8d2aaaf14e2b28bcbef2118830570308", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7117, "upload_time": "2008-04-11T13:05:56", "url": "https://files.pythonhosted.org/packages/bc/8f/4715086a87c9614e164284b1669aec4b6f56d55fe11c28b28bfcd9893933/cmd2-0.2.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "0409ea331d2edd13af282e2d1c87bc99", "sha256": "8e4f2206d1ddaf777def8fe9f51f2a179bf9c7ad93f4d8ce81ad984476d7cde1" }, "downloads": -1, "filename": "cmd2-0.2.2.win32.exe", "has_sig": false, "md5_digest": "0409ea331d2edd13af282e2d1c87bc99", "packagetype": "bdist_wininst", "python_version": "2.5", "requires_python": null, "size": 70479, "upload_time": "2008-04-11T13:10:17", "url": "https://files.pythonhosted.org/packages/b4/cd/5237168ed5809038856cb987a8fdca3699f10b53c49dc2e78b2520693cc1/cmd2-0.2.2.win32.exe" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "6481162690e276b591eadd1ea7dfd382", "sha256": "48821095ba5346595d480fd8d7af2fafbf0b2c8f5b14f4276dcfbf3301d863dd" }, "downloads": -1, "filename": "cmd2-0.2.3-py2.4.egg", "has_sig": false, "md5_digest": "6481162690e276b591eadd1ea7dfd382", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 19610, "upload_time": "2008-05-14T15:45:03", "url": "https://files.pythonhosted.org/packages/ba/15/abf5c98363dcef943ffebff81bc9effa5786c4e58fc42ceeb135d535a00d/cmd2-0.2.3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "4fc07e844f16654bafbdfa4d6037d85b", "sha256": "9e3ff6f01ad853e813af8d220ac3c22c3b2f78ac28a85e9627f69d206eed8797" }, "downloads": -1, "filename": "cmd2-0.2.3-py2.5.egg", "has_sig": false, "md5_digest": "4fc07e844f16654bafbdfa4d6037d85b", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 19339, "upload_time": "2008-05-14T15:43:05", "url": "https://files.pythonhosted.org/packages/c7/c5/db2b52a8def529b7e93975feaed9eac019b449c0c129a4af8a7f3ac76e14/cmd2-0.2.3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "f2eeb3ff2c92429c0d02076e2458c9ec", "sha256": "f8cf2939998ec2e84cd1f2f76c72690f2c1d3d9caefc230788628af018fce477" }, "downloads": -1, "filename": "cmd2-0.2.3.tar.gz", "has_sig": false, "md5_digest": "f2eeb3ff2c92429c0d02076e2458c9ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9906, "upload_time": "2008-05-14T15:42:58", "url": "https://files.pythonhosted.org/packages/0d/65/8a11c04913e66e32057c461a68a3879456d05005aea205a840a02253ed7e/cmd2-0.2.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "324e77460ae29e611e6af3d6be2ed540", "sha256": "77f9b79ab62574a7ec811e6a89b1c8506581dc93b4d57d920311636001be215d" }, "downloads": -1, "filename": "cmd2-0.2.3.win32.exe", "has_sig": false, "md5_digest": "324e77460ae29e611e6af3d6be2ed540", "packagetype": "bdist_wininst", "python_version": "2.5", "requires_python": null, "size": 71714, "upload_time": "2008-05-14T15:48:20", "url": "https://files.pythonhosted.org/packages/1d/58/6dde4b6d80b12eb0a3279fa8fc006f87007fdd521d3d65a891776473eba8/cmd2-0.2.3.win32.exe" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "7d20582c8fdd0f6fe0d0139cba82ca3e", "sha256": "eb95c5a7af3dfe470550fbaed83afb6995b67df38037d385fb74f10b3a4cdbc1" }, "downloads": -1, "filename": "cmd2-0.3.0-py2.4.egg", "has_sig": false, "md5_digest": "7d20582c8fdd0f6fe0d0139cba82ca3e", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 21405, "upload_time": "2008-05-15T23:44:25", "url": "https://files.pythonhosted.org/packages/36/83/6e9c41c0374bc9b62d42fa557e45cd4adc2730ae03bd979c663cd1e2d280/cmd2-0.3.0-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "e99c9653298bc72654571a89d862a52e", "sha256": "3692b936fad9f612d7723accc26eb4a5d6992e42f2c9209887c4570bc2df098b" }, "downloads": -1, "filename": "cmd2-0.3.0-py2.5.egg", "has_sig": false, "md5_digest": "e99c9653298bc72654571a89d862a52e", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 21142, "upload_time": "2008-05-15T23:41:05", "url": "https://files.pythonhosted.org/packages/e8/b5/eca551311200bcb558f045bef0e343e599b3478e7d9775ec6854bd7b92d5/cmd2-0.3.0-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "eec5e9a38bfe3d98a6b12f8f671b47d7", "sha256": "f42b1e52705c8c0945a54f7f28e941b16325495919a2cfc9363a21a9e6722117" }, "downloads": -1, "filename": "cmd2-0.3.0.tar.gz", "has_sig": false, "md5_digest": "eec5e9a38bfe3d98a6b12f8f671b47d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10315, "upload_time": "2008-05-15T23:40:34", "url": "https://files.pythonhosted.org/packages/18/5f/d2bf2312ad4a550832a8b4c8ebd035d2cd923c034cbfc13badff09f4a654/cmd2-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "7e439dc92eb5cc1099e962378299205b", "sha256": "1eded7b4e5a6efa06faa42fe232776a7bb699a1b2a0a691699913310065ffdbd" }, "downloads": -1, "filename": "cmd2-0.3.1-py2.4.egg", "has_sig": false, "md5_digest": "7e439dc92eb5cc1099e962378299205b", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 23673, "upload_time": "2008-05-19T19:27:24", "url": "https://files.pythonhosted.org/packages/d7/d0/9ac8ab993b774164457e9214be634d62f1889b593bec337eb03161283c3d/cmd2-0.3.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "90bd831f01b9072c62768559996bb93b", "sha256": "96b6ee9c7d2dfd73e7c67735713a76c26a1b8d151aae7573d7755c4bdb022058" }, "downloads": -1, "filename": "cmd2-0.3.1-py2.5.egg", "has_sig": false, "md5_digest": "90bd831f01b9072c62768559996bb93b", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 23344, "upload_time": "2008-05-19T19:27:00", "url": "https://files.pythonhosted.org/packages/3f/60/27f68c0b7192cf920d7b18e3bcde7d5dceb270661ad96e99bede5c609f6d/cmd2-0.3.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "6e82b1caca46f6a14db69420f43579db", "sha256": "2c49c6f7efaaef7461cabab0b570ccf3a79137aa8444b07beff5695fc9b35bce" }, "downloads": -1, "filename": "cmd2-0.3.1.tar.gz", "has_sig": false, "md5_digest": "6e82b1caca46f6a14db69420f43579db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12048, "upload_time": "2008-05-19T19:26:47", "url": "https://files.pythonhosted.org/packages/f1/55/03b1b689ced103133d27eb5045899ea00abff049a4784e5796ed6b2eeb3c/cmd2-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "295bbed2b702529844981ff11eab6a42", "sha256": "94e6c354b39872be8d11544d80cdc23e7c1b5579d41cd7fd5279e86b77b16a5e" }, "downloads": -1, "filename": "cmd2-0.3.2-py2.4.egg", "has_sig": false, "md5_digest": "295bbed2b702529844981ff11eab6a42", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 23722, "upload_time": "2008-05-21T02:11:19", "url": "https://files.pythonhosted.org/packages/cd/91/5c7180b5e74db220b718f9041c817e4c8bb47e1676a43f1d1e57638daa21/cmd2-0.3.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "08d89c941e68fe271bfe1499e1337b48", "sha256": "4ac08d0ee54c5587c0327eac6d0aa7f7a3347ad2d35ab82fedf9ff345e71cf62" }, "downloads": -1, "filename": "cmd2-0.3.2-py2.5.egg", "has_sig": false, "md5_digest": "08d89c941e68fe271bfe1499e1337b48", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 23411, "upload_time": "2008-05-21T02:10:42", "url": "https://files.pythonhosted.org/packages/24/0a/e67bfa9a6b71b44f867d10a645a65fe714e93b4e55f011a2a8052aa8b1ec/cmd2-0.3.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "21c676762639e7410894521f86c35612", "sha256": "7227543e1319687b3c1d719bf6948a2fbef0ccfa6f9d98c864f82fde372f4bda" }, "downloads": -1, "filename": "cmd2-0.3.2.tar.gz", "has_sig": false, "md5_digest": "21c676762639e7410894521f86c35612", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11207, "upload_time": "2008-05-21T02:10:27", "url": "https://files.pythonhosted.org/packages/08/fa/51297593e8b4cacd0ff18bce979152c6a8cdc6b180c1c29a126be4cf1d08/cmd2-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "0e716322936edbaf1634fa215400492a", "sha256": "f7914342d282a580ee3eec8b01aeacb2b42ec7b0f036c22d61bb67513e5d8c5b" }, "downloads": -1, "filename": "cmd2-0.3.3-py2.4.egg", "has_sig": false, "md5_digest": "0e716322936edbaf1634fa215400492a", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 24265, "upload_time": "2008-05-28T13:45:00", "url": "https://files.pythonhosted.org/packages/7d/f0/2d321d1f8ad530dedaace0770ba90869733c5c8e949670a727942593ce31/cmd2-0.3.3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "68a84227d9622d5113a93fab77d8fb7d", "sha256": "65f068c8626273e4ff8d6e5e0ae73adfa3b1611ce6b3300aa52d9220b0e01571" }, "downloads": -1, "filename": "cmd2-0.3.3-py2.5.egg", "has_sig": false, "md5_digest": "68a84227d9622d5113a93fab77d8fb7d", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 23899, "upload_time": "2008-05-28T13:44:07", "url": "https://files.pythonhosted.org/packages/17/43/8067bc9e508400358184d65d0e722eaa75bb609fbb6c60a5eb4c449c2b7e/cmd2-0.3.3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "20e1ea4d709af4d4831d718627201f29", "sha256": "0de11dce6d7fda84a828dfc1fef23054c9a05d73373aac6fd549433525bf0803" }, "downloads": -1, "filename": "cmd2-0.3.3.tar.gz", "has_sig": false, "md5_digest": "20e1ea4d709af4d4831d718627201f29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12367, "upload_time": "2008-05-28T13:44:13", "url": "https://files.pythonhosted.org/packages/d7/0b/ffccdb91d88ef4f88d60c3b70d849a9d1fbd65620d8ed662eb916f47f8b2/cmd2-0.3.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "428c9c8f119454ffcb17ac3e07bc6288", "sha256": "5453b23416defc8a9a0b2c7dd5125e37180da3f381ff771afb93ed227a7ff8f9" }, "downloads": -1, "filename": "cmd2-0.3.3.win32.exe", "has_sig": false, "md5_digest": "428c9c8f119454ffcb17ac3e07bc6288", "packagetype": "bdist_wininst", "python_version": "2.5", "requires_python": null, "size": 73586, "upload_time": "2008-05-28T13:49:32", "url": "https://files.pythonhosted.org/packages/87/07/449d60180d2f07fce363912c1334fe53faa2daff80e3dda36b2b9a59a91a/cmd2-0.3.3.win32.exe" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "ac580ea45e33bbade1f00bd55eb0da5b", "sha256": "362995369241dcbdb6271bdf087f45ab423ca2ae476e8592c3fe3b04adaae368" }, "downloads": -1, "filename": "cmd2-0.3.4-py2.4.egg", "has_sig": false, "md5_digest": "ac580ea45e33bbade1f00bd55eb0da5b", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 24662, "upload_time": "2008-06-09T16:11:46", "url": "https://files.pythonhosted.org/packages/64/f7/9b644cae48c9edae32b2012c84be14ad760dea3c4dfe020c3157b7aaa1d6/cmd2-0.3.4-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "3147aa6aa9a8136fde4c99c6b3ebd1e4", "sha256": "3cda1b059b6c488478db446e5825ad279834cfc72687a09de62865a1a81911be" }, "downloads": -1, "filename": "cmd2-0.3.4-py2.5.egg", "has_sig": false, "md5_digest": "3147aa6aa9a8136fde4c99c6b3ebd1e4", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 24288, "upload_time": "2008-06-09T16:09:43", "url": "https://files.pythonhosted.org/packages/5a/85/320c15b98a968927e71d9f37eb8336845e0d4506a84c0c92923409843dd3/cmd2-0.3.4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "dc397087ea67180ef5e6024c26b99599", "sha256": "a8dcf1e4f098d8544413f8a4e4c833617ef250db7f2e173331ec2f2342a0e179" }, "downloads": -1, "filename": "cmd2-0.3.4.tar.gz", "has_sig": false, "md5_digest": "dc397087ea67180ef5e6024c26b99599", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12600, "upload_time": "2008-06-09T16:09:27", "url": "https://files.pythonhosted.org/packages/51/41/706be12b370220ff70dbe2c72235480e708eb5888683f81bd992b20442bb/cmd2-0.3.4.tar.gz" }, { "comment_text": "", "digests": { "md5": "3cc4aff0e1f0fe7ac16d191d865bc7ae", "sha256": "e7f8d37b56082319bbd007d36f8a78b0b7da5dd455c20b2c2b84ca81430108bf" }, "downloads": -1, "filename": "cmd2-0.3.4.win32.exe", "has_sig": false, "md5_digest": "3cc4aff0e1f0fe7ac16d191d865bc7ae", "packagetype": "bdist_wininst", "python_version": "2.5", "requires_python": null, "size": 73740, "upload_time": "2008-06-09T16:38:10", "url": "https://files.pythonhosted.org/packages/8a/7d/483a6bb5f44abdaf50abd55e637a375c54b10771f551b80cd2c640168673/cmd2-0.3.4.win32.exe" } ], "0.3.4.1": [ { "comment_text": "", "digests": { "md5": "96236425d014e11b19f25c3051b89046", "sha256": "ed5f0e325abba83e3a74df788414dea80aa3063f6e37f6bca6c67805d20b7b57" }, "downloads": -1, "filename": "cmd2-0.3.4.1-py2.5.egg", "has_sig": false, "md5_digest": "96236425d014e11b19f25c3051b89046", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 24293, "upload_time": "2008-07-02T12:47:02", "url": "https://files.pythonhosted.org/packages/b2/94/3265af632c0fcea9b7a20951274da2e1273f8b4066c790ac4c920e017931/cmd2-0.3.4.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "a0c3a067179791596486b973f1a59501", "sha256": "eb241529f76e17022370eb8962b62b8d931ca2b2d9db8f04b8b79b47420d56f9" }, "downloads": -1, "filename": "cmd2-0.3.4.1.tar.gz", "has_sig": false, "md5_digest": "a0c3a067179791596486b973f1a59501", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11741, "upload_time": "2008-07-02T12:47:01", "url": "https://files.pythonhosted.org/packages/d9/f5/34531fe2a174d21b9d6973e6429af29ac7e58925a02b13253c0da5df9746/cmd2-0.3.4.1.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "d0c6991e39915c2fe4d75abf9fd3c5a0", "sha256": "d71c187682cff8b41cb8b9aae84e7d82167b8b7a38e0a9def84a07a7736892bb" }, "downloads": -1, "filename": "cmd2-0.3.5-py2.5.egg", "has_sig": false, "md5_digest": "d0c6991e39915c2fe4d75abf9fd3c5a0", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 25055, "upload_time": "2008-08-02T12:31:24", "url": "https://files.pythonhosted.org/packages/11/80/03afc69833ee296ff342de12ef0c59d4e9ae5556eb54bc900cc7245b86cc/cmd2-0.3.5-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "1863fc6ddf6f28453fa69df04bfb96d1", "sha256": "716c6d6af8c28ccecb915366c9a587cfbe49c02d234257c21141d53d82cd2de9" }, "downloads": -1, "filename": "cmd2-0.3.5.tar.gz", "has_sig": false, "md5_digest": "1863fc6ddf6f28453fa69df04bfb96d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12079, "upload_time": "2008-08-02T12:31:25", "url": "https://files.pythonhosted.org/packages/92/32/7ed026da8b110b4035f5472655b461b300efe2c63115d58fed34479bfcd9/cmd2-0.3.5.tar.gz" }, { "comment_text": "", "digests": { "md5": "c372bdb62d350b31782680631678d710", "sha256": "c92e68cdbc6d632e0844a77869c961e5447b362e654b5ea111a9bec6453dafb1" }, "downloads": -1, "filename": "cmd2-0.3.5.win32.exe", "has_sig": false, "md5_digest": "c372bdb62d350b31782680631678d710", "packagetype": "bdist_wininst", "python_version": "2.5", "requires_python": null, "size": 74097, "upload_time": "2008-08-04T14:29:09", "url": "https://files.pythonhosted.org/packages/50/ed/398734111e54b3678d7c3350138b92a78a2dc300b75747995f1fd5b2dbde/cmd2-0.3.5.win32.exe" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "c77b596bb94d8383cdfeab76b64ef2b0", "sha256": "00c873e96a1640e97cf8303f522984751ab00fd51e5cd48d4386c7bccbb2d7a5" }, "downloads": -1, "filename": "cmd2-0.3.6-py2.5.egg", "has_sig": false, "md5_digest": "c77b596bb94d8383cdfeab76b64ef2b0", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 25581, "upload_time": "2008-09-04T15:36:40", "url": "https://files.pythonhosted.org/packages/9c/d7/d053bbf90ec030557f6cc0ff5b19af6ea70895742c6bda6ad92d7e58ad66/cmd2-0.3.6-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "860c47dc881ad8bd488abf2b953fde0e", "sha256": "c15f6f12d29cbc842070b7b577e878ef569ba9eda692996f8b21b71109ee97e4" }, "downloads": -1, "filename": "cmd2-0.3.6.tar.gz", "has_sig": false, "md5_digest": "860c47dc881ad8bd488abf2b953fde0e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12296, "upload_time": "2008-09-04T15:36:39", "url": "https://files.pythonhosted.org/packages/f3/55/26728384cd599932ba64710084e37026d836b32823372688794291c09f14/cmd2-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "85c32119612dc8bab3d89c3379e049fa", "sha256": "5afc01f83275b0b287584a4b41226d176044daebe72f8bd14e7fdecf65b4b1a6" }, "downloads": -1, "filename": "cmd2-0.3.7-py2.5.egg", "has_sig": false, "md5_digest": "85c32119612dc8bab3d89c3379e049fa", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 26275, "upload_time": "2008-09-29T17:09:18", "url": "https://files.pythonhosted.org/packages/ac/ac/491343fbd08fb72602243500ca8a5d9cffad88ce73506695d89fdcea4641/cmd2-0.3.7-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "08ad0c24ac86f9f299e7088f42975f2a", "sha256": "2c0460abab838f4156493faf310647121fd700420f2c63d34e5b1f6c7ce64661" }, "downloads": -1, "filename": "cmd2-0.3.7.tar.gz", "has_sig": false, "md5_digest": "08ad0c24ac86f9f299e7088f42975f2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11344, "upload_time": "2008-09-29T17:08:46", "url": "https://files.pythonhosted.org/packages/62/71/c408c6764ff073a7ef20568da975377902ee361225f1c8a3ff49d3ec0b5e/cmd2-0.3.7.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "3d24d51d6dc385cb7de4dee4492799c3", "sha256": "f777563261626794b3e5608c8d6f3583d1401cf1d5920c23b2afe8e4bf79a422" }, "downloads": -1, "filename": "cmd2-0.4-py2.5.egg", "has_sig": false, "md5_digest": "3d24d51d6dc385cb7de4dee4492799c3", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 23446, "upload_time": "2008-10-28T18:32:41", "url": "https://files.pythonhosted.org/packages/cb/46/4d75250e97f148e1def591d2828e401a352d65b32aa10db6b1b223c9ee47/cmd2-0.4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "789e0eb6dd79a0d8a6761bdf6ca266b9", "sha256": "6c98d7762041ad7689fb81a66ffc520b294476111100f75ad344b28b85465514" }, "downloads": -1, "filename": "cmd2-0.4.tar.gz", "has_sig": false, "md5_digest": "789e0eb6dd79a0d8a6761bdf6ca266b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12538, "upload_time": "2008-10-28T18:32:25", "url": "https://files.pythonhosted.org/packages/6f/e7/dae63ae730c7365fb9988bb9e0aaa45fad9d6db6d3ad48b6551bb999708b/cmd2-0.4.tar.gz" }, { "comment_text": "", "digests": { "md5": "64c84a3991cf33e1b4f0bf3eadc98bea", "sha256": "f62123694a4931310ff2d096cb1480d7690176485b0b3691132458b4316a2d75" }, "downloads": -1, "filename": "cmd2-0.4.win32.exe", "has_sig": false, "md5_digest": "64c84a3991cf33e1b4f0bf3eadc98bea", "packagetype": "bdist_wininst", "python_version": "2.5", "requires_python": null, "size": 75689, "upload_time": "2008-10-28T18:31:22", "url": "https://files.pythonhosted.org/packages/d5/ec/cd998fa3975e03ef45e143154a1a3c3be5170cd3806c4435ebd95e16ec01/cmd2-0.4.win32.exe" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "b73857f1cec219254f392746fb75e9bc", "sha256": "6196a418a1c4be7aae34347d55d40a878ec87a597e973265a8f8f6d33d03374d" }, "downloads": -1, "filename": "cmd2-0.4.1-py2.4.egg", "has_sig": false, "md5_digest": "b73857f1cec219254f392746fb75e9bc", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 23723, "upload_time": "2008-10-29T15:00:47", "url": "https://files.pythonhosted.org/packages/b1/77/c36bb34ed944262a52926b18d985a28cb40dff3648231f971fa68b3888df/cmd2-0.4.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "76178d8e15930f796a2d1fbd1908662b", "sha256": "2e0e00d468804a39ff0c2e57b02f0ddbd727573f63969bd9614b56632faafebb" }, "downloads": -1, "filename": "cmd2-0.4.1-py2.5.egg", "has_sig": false, "md5_digest": "76178d8e15930f796a2d1fbd1908662b", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 23356, "upload_time": "2008-10-29T15:00:23", "url": "https://files.pythonhosted.org/packages/4d/30/d8972576b577e8e928a9d3557ca71f56140f3d5d58411d9a1d4aca6a5a00/cmd2-0.4.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "a738acbd3db8c746ae57729f55073868", "sha256": "9db2b6a68e65e41bb68cfe1adeb020e72ae05b8a438d9a3a4fab3e23fa1ec56e" }, "downloads": -1, "filename": "cmd2-0.4.1-py2.6.egg", "has_sig": false, "md5_digest": "a738acbd3db8c746ae57729f55073868", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 23328, "upload_time": "2008-10-29T15:00:35", "url": "https://files.pythonhosted.org/packages/ad/1d/467dde1f35579d44d31a6225d72c25457e0943580fc8e938b680a176fb8a/cmd2-0.4.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "da9164691e0b7c6d751e5d1ae11d657d", "sha256": "bfce193d21c563ee7b7bfa58c28fb6923147005f7ec214ec5cf14436d0bf13a8" }, "downloads": -1, "filename": "cmd2-0.4.1.tar.gz", "has_sig": false, "md5_digest": "da9164691e0b7c6d751e5d1ae11d657d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12523, "upload_time": "2008-10-29T15:00:07", "url": "https://files.pythonhosted.org/packages/22/0b/c45e26998940720a28815a278d7a466c3027576dfe50b832c6af212ae523/cmd2-0.4.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "91cdc38eff6da616cab53a48280ddc38", "sha256": "6dc6b7454bf5a6ab58f93d17dbf377d80a104d83786128d51efe248876761d14" }, "downloads": -1, "filename": "cmd2-0.4.1.win32.exe", "has_sig": false, "md5_digest": "91cdc38eff6da616cab53a48280ddc38", "packagetype": "bdist_wininst", "python_version": "2.5", "requires_python": null, "size": 75698, "upload_time": "2008-10-29T15:09:33", "url": "https://files.pythonhosted.org/packages/98/94/00d5e0b4a87adfefd28415bd23f79816aae2c88f8a4c5404d140b18e7781/cmd2-0.4.1.win32.exe" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "912518e436723e40b136ce478d679bee", "sha256": "131f68f681aa14fd103bf955c9f3eb9f6a41677c8a10e9d19aa9a9621541d6d9" }, "downloads": -1, "filename": "cmd2-0.4.2-py2.4.egg", "has_sig": false, "md5_digest": "912518e436723e40b136ce478d679bee", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 23740, "upload_time": "2008-11-05T19:09:31", "url": "https://files.pythonhosted.org/packages/c0/2e/0fce9e023bbfbe7195bc97fc6879d5485da587088bd420383a7684741e1b/cmd2-0.4.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "9f3fb9cd372544195f0275dc5684f4fe", "sha256": "ffe3acf439324601288a1ad70e023646dbc4bd661acbf082b9ef23eefb1711ca" }, "downloads": -1, "filename": "cmd2-0.4.2-py2.5.egg", "has_sig": false, "md5_digest": "9f3fb9cd372544195f0275dc5684f4fe", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 23373, "upload_time": "2008-11-05T19:08:33", "url": "https://files.pythonhosted.org/packages/01/b9/97529ea32363b1f5d5f34822b2f7ea38a7f4464bc5af77fe6c9578ca2845/cmd2-0.4.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "136bb2a7f60b2b4b408d21d1f1986d5d", "sha256": "f78bc8f3941bee14f0fe77741c4833a5bf70b1a7d6d7440c9a14fa169e75dcbf" }, "downloads": -1, "filename": "cmd2-0.4.2-py2.6.egg", "has_sig": false, "md5_digest": "136bb2a7f60b2b4b408d21d1f1986d5d", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 23344, "upload_time": "2008-11-05T19:11:06", "url": "https://files.pythonhosted.org/packages/25/bc/ddab5084154aef4c10d615021a63c0e662092c3aa3e68268257a7458a1f6/cmd2-0.4.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "2840ce76af1f1b3fc70f3614085f0e9d", "sha256": "0c9437b4b0ec94d41e4c3a32578d11b7c68acdc2b9100789f0e3e7756596a402" }, "downloads": -1, "filename": "cmd2-0.4.2.tar.gz", "has_sig": false, "md5_digest": "2840ce76af1f1b3fc70f3614085f0e9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12525, "upload_time": "2008-11-05T19:08:15", "url": "https://files.pythonhosted.org/packages/3f/6b/875eaf17c222a471930c3c2e5ba82917f691cad31e7825bc9e05a17cc514/cmd2-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "cc68457bceda361c93525b77f79d9270", "sha256": "8d0ca4eb1bad1ce24f720b6d7eba59c8f54bed39e32a8aabfa01ee63ecfff923" }, "downloads": -1, "filename": "cmd2-0.4.3-py2.4.egg", "has_sig": false, "md5_digest": "cc68457bceda361c93525b77f79d9270", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 23875, "upload_time": "2008-11-07T15:36:57", "url": "https://files.pythonhosted.org/packages/a3/b7/972c10b26a3ba6eb9a852f62c7cf3fe30b50b6bba5cfe5bf0626a63eb414/cmd2-0.4.3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "9ba14718d990939a0dee3153e3504e33", "sha256": "2d558fddac1c5a9beefa88835aa2a559df799cc3bdf3897b7cd86a01495c55af" }, "downloads": -1, "filename": "cmd2-0.4.3-py2.5.egg", "has_sig": false, "md5_digest": "9ba14718d990939a0dee3153e3504e33", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 23506, "upload_time": "2008-11-07T15:36:17", "url": "https://files.pythonhosted.org/packages/7e/67/778f2fa79c34937e553be0dc0896eaac413b5b68af94fa8a4205cae82008/cmd2-0.4.3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "9308108fef19f7e0297e2ebca5165347", "sha256": "cf90a1c6b32f5f91373751a8bf4255c54a03591a211d9e99687989c3b68a2555" }, "downloads": -1, "filename": "cmd2-0.4.3-py2.6.egg", "has_sig": false, "md5_digest": "9308108fef19f7e0297e2ebca5165347", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 23478, "upload_time": "2008-11-07T15:37:51", "url": "https://files.pythonhosted.org/packages/f0/9c/88336ad7ca2bd914171cf4dfd205e4e651b36619c2806785a3a3cfeeb53c/cmd2-0.4.3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "f24f2bf7f378f7cae69c2465e55c9cc2", "sha256": "54540c0108d890b19a3b8235f0518dd943dc39f088cbc81491f95b1c1f6ee34d" }, "downloads": -1, "filename": "cmd2-0.4.3.tar.gz", "has_sig": false, "md5_digest": "f24f2bf7f378f7cae69c2465e55c9cc2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12596, "upload_time": "2008-11-07T15:36:03", "url": "https://files.pythonhosted.org/packages/50/2e/3e185f59d523fd0eae6b79e052dba92bcf2d2d2a0e541647d718f32dd6d3/cmd2-0.4.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "b12d7b5238ceae741dc5ec4cb88c7369", "sha256": "57a8ad371c0361ce89db98702e432c0aee5e89d09d396dd6666853a22ee9568d" }, "downloads": -1, "filename": "cmd2-0.4.3.win32.exe", "has_sig": false, "md5_digest": "b12d7b5238ceae741dc5ec4cb88c7369", "packagetype": "bdist_wininst", "python_version": "2.5", "requires_python": null, "size": 75765, "upload_time": "2008-11-07T15:42:39", "url": "https://files.pythonhosted.org/packages/5f/21/5349243155b563c844b1b3d85cff5faf0f834295aee1bf6f478d1620d670/cmd2-0.4.3.win32.exe" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "9daf510dac43c6724258be8dfd0a0b66", "sha256": "fb19f597e8898cd5f0046567cd66415f9c2fa3578bf1646fe0444d0135c586b1" }, "downloads": -1, "filename": "cmd2-0.4.4-py2.4.egg", "has_sig": false, "md5_digest": "9daf510dac43c6724258be8dfd0a0b66", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 25383, "upload_time": "2008-12-22T14:37:16", "url": "https://files.pythonhosted.org/packages/92/3e/3be666f2404a4d1296572e39c86c5223e6a682457d2cda9f77be5739fc9c/cmd2-0.4.4-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "f96652930cb966e87fe3669347a5bf0f", "sha256": "0990850f387321038c1b0d4179e0db5ee67e721f6f6cca16570b4d1bfd964673" }, "downloads": -1, "filename": "cmd2-0.4.4-py2.5.egg", "has_sig": false, "md5_digest": "f96652930cb966e87fe3669347a5bf0f", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 25044, "upload_time": "2008-12-22T14:38:07", "url": "https://files.pythonhosted.org/packages/d5/a6/42e1036b25172471e96a93305596e91bc04a146d2a3cd32c2e6dce30ae6e/cmd2-0.4.4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "9172dcc36ca1f946cf1cc9d5d36eb76f", "sha256": "0b8af7b99cf0cbabd5f8afa4c38614b53cce5c05d434b4d4b00b8c792125b5e3" }, "downloads": -1, "filename": "cmd2-0.4.4-py2.6.egg", "has_sig": false, "md5_digest": "9172dcc36ca1f946cf1cc9d5d36eb76f", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 25004, "upload_time": "2008-12-22T14:37:28", "url": "https://files.pythonhosted.org/packages/21/40/a38b7c5ba7bc56c2ffcfc2ec8d6996f85404caf65012d58ac48184d9709a/cmd2-0.4.4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "92075ea7991f3c92c1a7bfbc0189e90b", "sha256": "0c2c31728e3f42f4ee62a0dbb99067d90cdcd894cd0aaf55d5ec8c6955accf48" }, "downloads": -1, "filename": "cmd2-0.4.4.tar.gz", "has_sig": false, "md5_digest": "92075ea7991f3c92c1a7bfbc0189e90b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13273, "upload_time": "2008-12-22T14:37:51", "url": "https://files.pythonhosted.org/packages/f2/fb/3ccfdbcf3ca5a4676a22df64b9053591ad7a9304cd0121a4feae9adba6cc/cmd2-0.4.4.tar.gz" }, { "comment_text": "", "digests": { "md5": "505e7f121826adea25b30102cd0973bf", "sha256": "cc98e08e9a86801b738b129bbd54f51c813553c51815a2e0ff85c1e59bd2c5f0" }, "downloads": -1, "filename": "cmd2-0.4.4.win32.exe", "has_sig": false, "md5_digest": "505e7f121826adea25b30102cd0973bf", "packagetype": "bdist_wininst", "python_version": "2.5", "requires_python": null, "size": 76480, "upload_time": "2008-12-22T14:40:07", "url": "https://files.pythonhosted.org/packages/2f/69/2e59fcb78851bd5f299c9087cbda6cf163c955a6e911850e5c6b60b12e19/cmd2-0.4.4.win32.exe" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "3ff014a7fae3cc4229c6d79ce9c7c05b", "sha256": "1f66a1fe1915c52e8e32167320128f4fded3b0d461e3670af55e570986a62520" }, "downloads": -1, "filename": "cmd2-0.4.5-py2.4.egg", "has_sig": false, "md5_digest": "3ff014a7fae3cc4229c6d79ce9c7c05b", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 26539, "upload_time": "2009-01-30T17:15:07", "url": "https://files.pythonhosted.org/packages/a1/f5/c63d46d61d1adf5ef344051093ea4495b1e10992d18b4e425d47a3a799fe/cmd2-0.4.5-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "3fe962265113e139141bb190929de352", "sha256": "3d105e8ffa7c4657c2c6c003359b2a94987cca2e6019d007b0e453eeaecb2fea" }, "downloads": -1, "filename": "cmd2-0.4.5-py2.5.egg", "has_sig": false, "md5_digest": "3fe962265113e139141bb190929de352", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 26134, "upload_time": "2009-01-28T18:15:59", "url": "https://files.pythonhosted.org/packages/b4/b3/c73b6f8825083ec9e825aaa4c2d05f3ad62ec24823acea8635081a5e6c44/cmd2-0.4.5-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "1b174104692646d9d8c18fc91e960938", "sha256": "7a621096ebe9bfc4d09a1a5f4cb73a7d1fdd840c3f4c5013061aec2c68f3b595" }, "downloads": -1, "filename": "cmd2-0.4.5-py2.6.egg", "has_sig": false, "md5_digest": "1b174104692646d9d8c18fc91e960938", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 26162, "upload_time": "2009-01-30T17:13:52", "url": "https://files.pythonhosted.org/packages/93/88/fb88a0c8d8d94f5efcfbaa47c8d110277e7101fbca7c099df0e17553dfe5/cmd2-0.4.5-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "d4938ca182a19d026391efff7f20606e", "sha256": "3cc811cbcd8a31688730b00bd29ecd1015c773a8698dc0c1c1caa173b7adbe71" }, "downloads": -1, "filename": "cmd2-0.4.5.tar.gz", "has_sig": false, "md5_digest": "d4938ca182a19d026391efff7f20606e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13460, "upload_time": "2009-01-28T18:15:57", "url": "https://files.pythonhosted.org/packages/c1/f1/01218ae8e80c2d4f056080c3f1ff016b1d24d42e30e9b6c67e78346c02dc/cmd2-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "55f15482326d7d4096f03068ff446997", "sha256": "4a28a91a5daed11866c2f55958fcb0af6fcfd756512d12a18d48c268ea5c310b" }, "downloads": -1, "filename": "cmd2-0.4.6-py2.4.egg", "has_sig": false, "md5_digest": "55f15482326d7d4096f03068ff446997", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 26780, "upload_time": "2009-02-25T23:07:47", "url": "https://files.pythonhosted.org/packages/ed/82/332e410c2037645e21c22aeb693c383ade4ea6a2cce1e82607fd0e3fa147/cmd2-0.4.6-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "4ec213c7974037b6aae6b0d0e2456df6", "sha256": "5707849f89e20f7a53f2a4c6e4d380f93a69bed0ac059c340fda1a535020f2f1" }, "downloads": -1, "filename": "cmd2-0.4.6-py2.5.egg", "has_sig": false, "md5_digest": "4ec213c7974037b6aae6b0d0e2456df6", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 26420, "upload_time": "2009-02-25T23:07:25", "url": "https://files.pythonhosted.org/packages/dc/be/4afdc11c8d78cbc88735deb28d6d1c552d91f67992ed7dff2a833e932e49/cmd2-0.4.6-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "7e361de2451d29594f5f5dafe8aca252", "sha256": "fc9d5dc6cf4bd4affa0f238f783b7d0084e8157806c39dbce5541a8760366a69" }, "downloads": -1, "filename": "cmd2-0.4.6-py2.6.egg", "has_sig": false, "md5_digest": "7e361de2451d29594f5f5dafe8aca252", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 26389, "upload_time": "2009-02-25T23:09:41", "url": "https://files.pythonhosted.org/packages/86/81/78b57854daee81ee33e12f5a13969f0fe1660358130a77be029fc9a46744/cmd2-0.4.6-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "1fc796e6f15eb4effc4396a170762a2e", "sha256": "984a66be175ff95cd29dc7d9d4b4a7d16b903b3bbf48aa18ae27ce64eaf7b83b" }, "downloads": -1, "filename": "cmd2-0.4.6.tar.gz", "has_sig": false, "md5_digest": "1fc796e6f15eb4effc4396a170762a2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13909, "upload_time": "2009-02-25T23:07:12", "url": "https://files.pythonhosted.org/packages/1f/b0/c63e9b94611300705f4d98853932f01b4e1c6587833a0fd745baf1691482/cmd2-0.4.6.tar.gz" } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "24073baa9fd2ac77ec11b7fde6d3f5ba", "sha256": "ad361b6a0a9b084462a4e7386b1a5c5a214c1e2a28cc9611365775373252a4ce" }, "downloads": -1, "filename": "cmd2-0.4.7-py2.4.egg", "has_sig": false, "md5_digest": "24073baa9fd2ac77ec11b7fde6d3f5ba", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 28231, "upload_time": "2009-03-02T22:41:01", "url": "https://files.pythonhosted.org/packages/67/54/2f10065741a20160de0187b25895771eb42621a35ba9d1fa8777d971b18e/cmd2-0.4.7-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "5979fafdae565447d1d18b9eeaf323ad", "sha256": "26ce6eabafe100111b81933bdc89b8aaa774af5004ea5dd0c07612b7be0bf8e6" }, "downloads": -1, "filename": "cmd2-0.4.7-py2.5.egg", "has_sig": false, "md5_digest": "5979fafdae565447d1d18b9eeaf323ad", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 27850, "upload_time": "2009-03-02T22:41:15", "url": "https://files.pythonhosted.org/packages/08/07/9a108b67a6dc69b862890867f7ae889a71a80b2439b24f664587868e9e09/cmd2-0.4.7-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "8b4062669a4cdaa75d0fa6fa7863126d", "sha256": "242b1dc316aa0a9b8f97c9aaaf92929e6997c589a623c6f3e94732a15892b5cd" }, "downloads": -1, "filename": "cmd2-0.4.7-py2.6.egg", "has_sig": false, "md5_digest": "8b4062669a4cdaa75d0fa6fa7863126d", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 27809, "upload_time": "2009-03-02T22:41:28", "url": "https://files.pythonhosted.org/packages/11/98/0ef327e7b3de5841d34e8d0cdceae9a8d8ffc9ea9f25ab2a8159783e1ba9/cmd2-0.4.7-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "99f36522401b1e41740dc39bb8b00ae4", "sha256": "ba9eb9094b51355375b83716d73c841697dcca0c780d95b6ba28bbc8b78c7bad" }, "downloads": -1, "filename": "cmd2-0.4.7.tar.gz", "has_sig": false, "md5_digest": "99f36522401b1e41740dc39bb8b00ae4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14501, "upload_time": "2009-03-02T22:41:37", "url": "https://files.pythonhosted.org/packages/c1/78/f6030e76daa6652e095b8b94707242861d3ec5a0f051354e981557984cf1/cmd2-0.4.7.tar.gz" } ], "0.4.8": [ { "comment_text": "", "digests": { "md5": "c59aa41b8830f49b283e44b83048f311", "sha256": "0a72116651ea33f329ad558904b84be99ea1daab106b128947d9abea492817b8" }, "downloads": -1, "filename": "cmd2-0.4.8-py2.4.egg", "has_sig": false, "md5_digest": "c59aa41b8830f49b283e44b83048f311", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 30002, "upload_time": "2009-03-19T11:37:03", "url": "https://files.pythonhosted.org/packages/06/4e/563bec77370874646ed22003768c614fd18b1a47d10fa0922545dd2cd390/cmd2-0.4.8-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "931fc6f87da570fe7e119e3e05a47a58", "sha256": "6c644186e75dc2854f15ac94b0d2489e27146293303c8d8e3d33022272d30b2d" }, "downloads": -1, "filename": "cmd2-0.4.8-py2.5.egg", "has_sig": false, "md5_digest": "931fc6f87da570fe7e119e3e05a47a58", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 29556, "upload_time": "2009-03-19T11:37:11", "url": "https://files.pythonhosted.org/packages/e9/14/8137332ed624ac7334250ad61a455f0e5affcd301b8da890091895f28954/cmd2-0.4.8-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "02e313e999f24916c18c7efe0a493f37", "sha256": "5b489dbf51d41d81b84344f4314c0289e7749bf24f340536aa68d33619e44d81" }, "downloads": -1, "filename": "cmd2-0.4.8-py2.6.egg", "has_sig": false, "md5_digest": "02e313e999f24916c18c7efe0a493f37", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 29516, "upload_time": "2009-03-19T11:36:04", "url": "https://files.pythonhosted.org/packages/e5/39/63df3daaf7889ca5cc5f1fcf4328998e30d34cc74d86c1f94da8dc9ed1c7/cmd2-0.4.8-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "101cec3e897bb91f7154dcf760c1c1c3", "sha256": "8c6a0682d7c9f989ecc0211a49ae80543cfe47f0fe525cc00862ad4245f02ac6" }, "downloads": -1, "filename": "cmd2-0.4.8.tar.gz", "has_sig": false, "md5_digest": "101cec3e897bb91f7154dcf760c1c1c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14807, "upload_time": "2009-03-19T11:36:01", "url": "https://files.pythonhosted.org/packages/7d/3e/518137ca51ab252bb19760a8602e13f697bd5a0d398c93f746462dd11b32/cmd2-0.4.8.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "575bdc5635c3be28318f7aeca2b9a4d6", "sha256": "3de7871ead807e09d36e7902ed7e2907215303fd940bec64f55b833c9b7cc356" }, "downloads": -1, "filename": "cmd2-0.5.0-py2.5.egg", "has_sig": false, "md5_digest": "575bdc5635c3be28318f7aeca2b9a4d6", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 31051, "upload_time": "2009-03-24T20:30:16", "url": "https://files.pythonhosted.org/packages/7c/25/19136fac9519c0184f22f91c6825431dba4bfeb5561c942665927bc8149d/cmd2-0.5.0-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "957752a7eb36e2f318061eb485e3211c", "sha256": "71f3514cebed281deb391adf13c5611099b67ea13ba3543f0cd43b04de55216f" }, "downloads": -1, "filename": "cmd2-0.5.0-py2.6.egg", "has_sig": false, "md5_digest": "957752a7eb36e2f318061eb485e3211c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 31015, "upload_time": "2009-03-24T20:30:28", "url": "https://files.pythonhosted.org/packages/39/39/d1d7113b0481a44eb7f7789eb6e2cd72703535e1d3c6e95a4ee33c24b49e/cmd2-0.5.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "d06ed1973a40450aa59f15d5ce3a5dee", "sha256": "548da90bf28c2aac3bd90680a147346b0b0d701e72d4849f20984329632ef7b3" }, "downloads": -1, "filename": "cmd2-0.5.0.tar.gz", "has_sig": false, "md5_digest": "d06ed1973a40450aa59f15d5ce3a5dee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15743, "upload_time": "2009-03-24T20:30:01", "url": "https://files.pythonhosted.org/packages/f6/37/0ba463af5eda50d90b27731788e344e6d420c7f837246fdc9becb6fbf6f0/cmd2-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "ca04cc172aa6b1765f50ef5d79c46695", "sha256": "be6a888b404b0c87bb91b2a9c2d524632ab242ab83ab017f0572baa6f7208093" }, "downloads": -1, "filename": "cmd2-0.5.1-py2.5.egg", "has_sig": false, "md5_digest": "ca04cc172aa6b1765f50ef5d79c46695", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 31923, "upload_time": "2009-03-30T20:39:16", "url": "https://files.pythonhosted.org/packages/20/74/8afc5a77d53162248a54727d3bd2f831500bf05193629e5a2543044af856/cmd2-0.5.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "7efc823934b5d6b9a5bafa8b46f95c94", "sha256": "8ecc4b122cf3a74c42c8b4cc46341c1aedd245f6d5b2c3145d2c0a335a872baf" }, "downloads": -1, "filename": "cmd2-0.5.1-py2.6.egg", "has_sig": false, "md5_digest": "7efc823934b5d6b9a5bafa8b46f95c94", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 31885, "upload_time": "2009-03-30T20:38:59", "url": "https://files.pythonhosted.org/packages/a5/b4/33d72b0925ea608cbf9ce42020ce745a75fb868a8b0c47b67dd1a78f23f1/cmd2-0.5.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "ba4c50c5c3153591ffbe63ce4c2d3290", "sha256": "205c14473d98879e0d2ab86cdb51263756e91e781420d49f5ed27395edcbf637" }, "downloads": -1, "filename": "cmd2-0.5.1.tar.gz", "has_sig": false, "md5_digest": "ba4c50c5c3153591ffbe63ce4c2d3290", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15755, "upload_time": "2009-03-30T20:38:52", "url": "https://files.pythonhosted.org/packages/c1/4b/6f50584eb57be388616d980695ea83f27276f9b88868dcf8ae51278f9e6a/cmd2-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "35342fe7d8426d22975b6cc57fdd3e8a", "sha256": "53afcec35c482485a9965c401994ad2ff522878a0f9f62875dd1d2722fd46604" }, "downloads": -1, "filename": "cmd2-0.5.2-py2.5.egg", "has_sig": false, "md5_digest": "35342fe7d8426d22975b6cc57fdd3e8a", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 32529, "upload_time": "2009-04-03T19:19:56", "url": "https://files.pythonhosted.org/packages/f3/2f/0d84ef148e271088f2e3b01004352e56f806afd8e8a04670db815d4f1796/cmd2-0.5.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "95c490f1c313a358d7a820e67e5bd93d", "sha256": "ca265c5c8286ae06a3b7384a6506d75dc71a007c148fd271764dfe2740ec64db" }, "downloads": -1, "filename": "cmd2-0.5.2-py2.6.egg", "has_sig": false, "md5_digest": "95c490f1c313a358d7a820e67e5bd93d", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 32496, "upload_time": "2009-04-03T19:20:11", "url": "https://files.pythonhosted.org/packages/44/c3/441e517425023579cdf0e872ec35c5dbc34e971dfd64697568b44b10da17/cmd2-0.5.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "2c79775dd6fcf3b55e5c02583e06da3e", "sha256": "0774756bb54e14491f4c8e778de30777270db1e30203fb4ba2577e66d71cf293" }, "downloads": -1, "filename": "cmd2-0.5.2.tar.gz", "has_sig": false, "md5_digest": "2c79775dd6fcf3b55e5c02583e06da3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16376, "upload_time": "2009-04-03T19:19:36", "url": "https://files.pythonhosted.org/packages/b4/bb/5d2cce634949be1018fd103abb385ea4a0b27dd843972caf77695c59deb0/cmd2-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "7a53c58325b4dae093ff6537e5a76d4b", "sha256": "0593f557ee89800f4f84b9547405bea3f7b2b7a87abc92f8c4e1e936a4051d3b" }, "downloads": -1, "filename": "cmd2-0.5.3-py2.6.egg", "has_sig": false, "md5_digest": "7a53c58325b4dae093ff6537e5a76d4b", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 32818, "upload_time": "2009-04-30T04:37:51", "url": "https://files.pythonhosted.org/packages/b2/e3/e0f29c3143fed552b9560d1cf63ce9908cf48dda3b657bf7c2e0cd9bcc00/cmd2-0.5.3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "825b4ea6b593b46dacc9f866d041aadd", "sha256": "c4cb847f3892955af4f9c9fdd0d60d04b6cdb843b9b0cdaa1b1d5872f9a3a1d1" }, "downloads": -1, "filename": "cmd2-0.5.3.tar.gz", "has_sig": false, "md5_digest": "825b4ea6b593b46dacc9f866d041aadd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16514, "upload_time": "2009-04-30T04:37:48", "url": "https://files.pythonhosted.org/packages/74/8e/b2d690ce357a9c512ee2d8a0f467fff06488105375717149c4b73a749795/cmd2-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "17d347b488744220322d698b1bec6783", "sha256": "05d255245b0e36575ce61cab932fd230cc1eb92271d4df7dd758b8951facba2f" }, "downloads": -1, "filename": "cmd2-0.5.4-py2.4.egg", "has_sig": false, "md5_digest": "17d347b488744220322d698b1bec6783", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 33391, "upload_time": "2009-06-02T13:38:43", "url": "https://files.pythonhosted.org/packages/5b/06/fafc08a01e39257bd332c7ed363ad047711d6196fad059f38d14e5194022/cmd2-0.5.4-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "66efa75707858a2950132776b9db9a44", "sha256": "167b8c0b88a91c466ec1accadea606bd1fc8c0d2974576545e3b81d0029578ff" }, "downloads": -1, "filename": "cmd2-0.5.4-py2.5.egg", "has_sig": false, "md5_digest": "66efa75707858a2950132776b9db9a44", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 32907, "upload_time": "2009-06-02T13:38:24", "url": "https://files.pythonhosted.org/packages/b8/cc/6977a482826a111fa75d11cf6e009aa1936250122b8afe1f4eceb341389e/cmd2-0.5.4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "39c27c606abbaa6fe27121eecff8c214", "sha256": "903927da1827c7fc4fdd3c739e75fcbf6da7e97583fc16a03d26f3b02d93d1b3" }, "downloads": -1, "filename": "cmd2-0.5.4-py2.6.egg", "has_sig": false, "md5_digest": "39c27c606abbaa6fe27121eecff8c214", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 32875, "upload_time": "2009-06-02T13:36:59", "url": "https://files.pythonhosted.org/packages/0b/ed/b92669c4c5de7e1b918b598fd68d48eff34f528177db860687c291582291/cmd2-0.5.4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "4218834a35258d03e8455f7962d2d232", "sha256": "0022bd453e640b8868612c3da87f5e2780a35a5625a5760c5fb28fdb59cdc6a4" }, "downloads": -1, "filename": "cmd2-0.5.4.tar.gz", "has_sig": false, "md5_digest": "4218834a35258d03e8455f7962d2d232", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16542, "upload_time": "2009-06-02T13:37:01", "url": "https://files.pythonhosted.org/packages/a3/f8/22b5c9d90bc7214a15ae529c48628270dc1705c961969e712b46c1972880/cmd2-0.5.4.tar.gz" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "5520eb24a3661b06dd797032359ea150", "sha256": "3f66063bfde1fc123cc61f555568e156e6546b9c938a2035db228ee3da7ce2c1" }, "downloads": -1, "filename": "cmd2-0.5.5-py2.6.egg", "has_sig": false, "md5_digest": "5520eb24a3661b06dd797032359ea150", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 32921, "upload_time": "2009-08-08T06:17:23", "url": "https://files.pythonhosted.org/packages/e3/40/966cc0fc138593c07220b34c2e715eb1c2d1419caeb77fca3d3734b9db16/cmd2-0.5.5-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "a49c7eaf49de2c383713c03a72e1778a", "sha256": "1d9d4e59b88049160d3d5d2ef6fde892e51c539665bea81819b75bcf2d980857" }, "downloads": -1, "filename": "cmd2-0.5.5.tar.gz", "has_sig": false, "md5_digest": "a49c7eaf49de2c383713c03a72e1778a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16544, "upload_time": "2009-08-08T06:17:20", "url": "https://files.pythonhosted.org/packages/ea/96/b26ba378ce2f4113b7bc51202e2de0dda910bf954c1be783b348469a1aeb/cmd2-0.5.5.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "6323d129abfd97669e0fca22a050a0ea", "sha256": "cb450cd32287916bf7a98056e116d687665f1fd694f44a999f0a9fd78f67dd3e" }, "downloads": -1, "filename": "cmd2-0.6.0-py2.6.egg", "has_sig": false, "md5_digest": "6323d129abfd97669e0fca22a050a0ea", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 120280, "upload_time": "2010-02-18T22:32:29", "url": "https://files.pythonhosted.org/packages/a3/aa/729a88910fae1d173f9b829a4e6cf700630c482e69080a9971a28b9ffb5a/cmd2-0.6.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "ccacc96f02cb57a9b009c7563c6e0218", "sha256": "dedfdb263d67d71993037ca4244f84900e63f5214efc8105e274e6e8e74a2e9d" }, "downloads": -1, "filename": "cmd2-0.6.0-py3.1.egg", "has_sig": false, "md5_digest": "ccacc96f02cb57a9b009c7563c6e0218", "packagetype": "bdist_egg", "python_version": "3.1", "requires_python": null, "size": 122817, "upload_time": "2010-02-19T17:26:09", "url": "https://files.pythonhosted.org/packages/14/9c/587ebd5ebe622c17be0a90791b603c98355cab646ff52253a9bc70b282e4/cmd2-0.6.0-py3.1.egg" }, { "comment_text": "Python 3.1 - some changes from 2.x", "digests": { "md5": "7895fd5661271290bc780110b2fce3ca", "sha256": "ff0003563a7879caba14db95088c992d15df85c39795f54006c5a03674ba6ef8" }, "downloads": -1, "filename": "cmd2-0.6.0.py3.tar.gz", "has_sig": false, "md5_digest": "7895fd5661271290bc780110b2fce3ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53086, "upload_time": "2010-02-19T17:26:32", "url": "https://files.pythonhosted.org/packages/0a/2f/6e9ada06a4f3d9be6b19380a5ab0aa2a14bdfdd00438a790d921561d7000/cmd2-0.6.0.py3.tar.gz" }, { "comment_text": "", "digests": { "md5": "8733ce4d7098a79183039bc80b2e35dc", "sha256": "6349d02f4a3756982c99d0f99f9c258bbe6a7a786f95f5905ceb0921c31d552e" }, "downloads": -1, "filename": "cmd2-0.6.0.tar.gz", "has_sig": false, "md5_digest": "8733ce4d7098a79183039bc80b2e35dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53013, "upload_time": "2010-02-18T22:32:27", "url": "https://files.pythonhosted.org/packages/7c/bb/799b4db72b3c27598dcb1aaae5b908640bff1f131d85b303b4c6ae024c3c/cmd2-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "ab008f22bb87f10442952f97d3a6eb93", "sha256": "307690eb054fdff4440c76c68351e284a9fd54b3633e7c2f4575576f3316b31a" }, "downloads": -1, "filename": "cmd2-0.6.1-py2.5.egg", "has_sig": false, "md5_digest": "ab008f22bb87f10442952f97d3a6eb93", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 74133, "upload_time": "2010-03-03T22:23:56", "url": "https://files.pythonhosted.org/packages/81/38/e6408f76c4bc5ce4549ac9350e25b7a16dd0d9ab1dbab61cf58b72e3d115/cmd2-0.6.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "4f2f46403b0c8d0e95ce0b5e3a68f317", "sha256": "a5bbd0fbf6a3e67ad27a42a3f5caae408b7e98559e0d29b83df42e181b5732d9" }, "downloads": -1, "filename": "cmd2-0.6.1-py2.6.egg", "has_sig": false, "md5_digest": "4f2f46403b0c8d0e95ce0b5e3a68f317", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 120120, "upload_time": "2010-03-03T16:41:49", "url": "https://files.pythonhosted.org/packages/ec/74/0c22bde87d04c21ab4adca1cd0b0c895e988581c7f0db9e0fbf60da1aeea/cmd2-0.6.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "5d52f0df10dccc228287287b0a8d5eb6", "sha256": "3098d73f6ec567d738bc4d36edaf44e06925bef142a82c05dc131887a076d568" }, "downloads": -1, "filename": "cmd2-0.6.1-py3.1.egg", "has_sig": false, "md5_digest": "5d52f0df10dccc228287287b0a8d5eb6", "packagetype": "bdist_egg", "python_version": "3.1", "requires_python": null, "size": 122848, "upload_time": "2010-03-03T16:43:15", "url": "https://files.pythonhosted.org/packages/03/ac/5884834b6fb9a6ab8de55b64e0f59f300723190fb0ec8b38bbe6dbc338d5/cmd2-0.6.1-py3.1.egg" }, { "comment_text": "", "digests": { "md5": "5177057eabd5eb24bb5c6c51702ab93a", "sha256": "9d8494dff9084177ba420d60c790a6476e4687aba257a2254e89c8476c9f1a5f" }, "downloads": -1, "filename": "cmd2-0.6.1.tar.gz", "has_sig": false, "md5_digest": "5177057eabd5eb24bb5c6c51702ab93a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52507, "upload_time": "2010-03-05T20:47:43", "url": "https://files.pythonhosted.org/packages/9a/41/911b08a8f97c369ed319b6feb4a32f4a8754dac05bda094331a0a69ab170/cmd2-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "4c1804bdb53acd313ef83d150ed1cc46", "sha256": "4ddf12324cbbb93dd12006ea5dcb6a100f01e9464bdf873c24d8cb29b4d10e92" }, "downloads": -1, "filename": "cmd2-0.6.2-py2.6.egg", "has_sig": false, "md5_digest": "4c1804bdb53acd313ef83d150ed1cc46", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 120930, "upload_time": "2010-11-09T11:25:23", "url": "https://files.pythonhosted.org/packages/ef/bf/5c6a127f2c463e2af2bfda4c6eb67d143ceca7b0d243f12a733400a40edd/cmd2-0.6.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "9a02232c0d432790de0dc644a6f86a80", "sha256": "d564cc5f18b5f4f743ad16f0f7c3dcc1bfcf873545b171111a233777ce3bd6b4" }, "downloads": -1, "filename": "cmd2-0.6.2-py2.7.egg", "has_sig": false, "md5_digest": "9a02232c0d432790de0dc644a6f86a80", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 41458, "upload_time": "2010-11-09T11:25:48", "url": "https://files.pythonhosted.org/packages/82/5f/2e67356386f85397607a4dd7067d653dc14f88b25e1d848e7f599e7b1148/cmd2-0.6.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "9c8ef817059da7f4adddf72e48b3cd6a", "sha256": "d70399c9f106a77f0a7095d36310522b47f17320c8871164037e2c2e5628afb2" }, "downloads": -1, "filename": "cmd2-0.6.2.tar.gz", "has_sig": false, "md5_digest": "9c8ef817059da7f4adddf72e48b3cd6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20555, "upload_time": "2010-11-09T11:25:15", "url": "https://files.pythonhosted.org/packages/24/43/f51a881bfb88d4ff75ecbf2e8e940ad61fbef7903b8a2cc42e389d20b3c9/cmd2-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "b968b6be01ae8ab4df7143ddb68d3d69", "sha256": "7f2a0ae3e1f09de3655521f902f3c70ca14f760349d0443468590edd744a18ac" }, "downloads": -1, "filename": "cmd2-0.6.3-py2.5.egg", "has_sig": false, "md5_digest": "b968b6be01ae8ab4df7143ddb68d3d69", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 41620, "upload_time": "2011-07-29T01:21:19", "url": "https://files.pythonhosted.org/packages/d0/ec/673ff23382f5f8d0631d2b5e01bca5ca5ae5775f403227758b41731113b9/cmd2-0.6.3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "ab907aaad305c195dc98d9f4fe634ad6", "sha256": "23383e73530371282e58aeb285eb40583b0f34fa3c0daeb1c88b2ac83675805f" }, "downloads": -1, "filename": "cmd2-0.6.3-py2.6.egg", "has_sig": false, "md5_digest": "ab907aaad305c195dc98d9f4fe634ad6", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 41590, "upload_time": "2011-07-29T01:16:38", "url": "https://files.pythonhosted.org/packages/81/c7/5347ae546fad531f9fa2dae0fd8d9f55379872ca56229ac0fb8b00982361/cmd2-0.6.3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "d9fa07766d1c351c1ef1089358209cb7", "sha256": "c25884ef68cac0693a85f07ac71b91ff9a481f939562c7731a8250f267bee997" }, "downloads": -1, "filename": "cmd2-0.6.3-py3.2.egg", "has_sig": false, "md5_digest": "d9fa07766d1c351c1ef1089358209cb7", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 18464, "upload_time": "2011-07-29T01:18:08", "url": "https://files.pythonhosted.org/packages/9d/e5/f7ce63cc9807e6c87257b2b3a31a9c17d61851d27abd640218b39a8fc357/cmd2-0.6.3-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "df8fab481e08d3a173a69ecec45fe844", "sha256": "90521571c0dfe1d6174276c6753edbb7ff5a3de13d0b17e9784a19ba396285ab" }, "downloads": -1, "filename": "cmd2-0.6.3.tar.gz", "has_sig": false, "md5_digest": "df8fab481e08d3a173a69ecec45fe844", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20351, "upload_time": "2011-07-29T01:16:33", "url": "https://files.pythonhosted.org/packages/14/fa/5f7e251cc1c53917fb4cfbba58eae2ab2560e5e9cc1b96eb605b7d280462/cmd2-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "de8ca6cbdd3d5d06385c0364413e5072", "sha256": "a52744f25ab20e4f4a2ebbdc0ba71afffbbddad24445fe044e9f6a3d3415fb91" }, "downloads": -1, "filename": "cmd2-0.6.4-py2.7.egg", "has_sig": false, "md5_digest": "de8ca6cbdd3d5d06385c0364413e5072", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 41994, "upload_time": "2012-05-27T03:25:13", "url": "https://files.pythonhosted.org/packages/9a/36/444a140db0d0518c034db4f906603a422e53c3f80d1e3dc6725cb8c9c0e0/cmd2-0.6.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "60a07255bbcb4342888b1574f46e56ea", "sha256": "ff52cb800d931bbd0ce4b05bac0b024cf34ec3a04f66eadcb7d3f7dda42429ba" }, "downloads": -1, "filename": "cmd2-0.6.4.tar.gz", "has_sig": false, "md5_digest": "60a07255bbcb4342888b1574f46e56ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21147, "upload_time": "2012-05-27T03:25:12", "url": "https://files.pythonhosted.org/packages/ea/79/d6ab60259ce58f89fb082284088f6ce677851a4b51b892348fb9be4ed952/cmd2-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "39be716b4b203304c72a2a585ec5d0de", "sha256": "52ee3823733c44a9b03a216e209d5cf749c960d6b88e320b8dfb0f6bf335f480" }, "downloads": -1, "filename": "cmd2-0.6.5-py3.2.egg", "has_sig": false, "md5_digest": "39be716b4b203304c72a2a585ec5d0de", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 44440, "upload_time": "2013-02-28T05:21:10", "url": "https://files.pythonhosted.org/packages/aa/90/a9aa5bf3ce78fa19ae4ac8639636e28de4896bf0aa2b21214d357f7208d5/cmd2-0.6.5-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "608a814ae5283147887b8a6545abe062", "sha256": "125345705aaecfecc1ee9b622b59a299338ea9e5e1af3240e033e8ab7e1afbed" }, "downloads": -1, "filename": "cmd2-0.6.5.tar.gz", "has_sig": false, "md5_digest": "608a814ae5283147887b8a6545abe062", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21186, "upload_time": "2013-02-28T05:21:05", "url": "https://files.pythonhosted.org/packages/e0/48/f2abd47d1e88eac7f8d0f5a2aa2215b2f550f45820c868bff4eb929884a2/cmd2-0.6.5.tar.gz" } ], "0.6.5.1": [ { "comment_text": "", "digests": { "md5": "0e1ab8097b5fcb46515ff6e19fa58b4b", "sha256": "9f80648282696cf8f7d8584a6d2ed382650519f98b3e517ee88fb19f5babc71a" }, "downloads": -1, "filename": "cmd2-0.6.5.1-py2.6.egg", "has_sig": false, "md5_digest": "0e1ab8097b5fcb46515ff6e19fa58b4b", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 42197, "upload_time": "2013-03-18T16:45:56", "url": "https://files.pythonhosted.org/packages/66/43/9f0cdf360b63884c8eb0d036efa18018b8f27efaa2b285ca406a21772379/cmd2-0.6.5.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "ffceb23ec292b757aa6108c154b10d45", "sha256": "e686f3a6505319a06092bd53f8a85571b3ad9bf03a9d625a274be1e1bb7f888a" }, "downloads": -1, "filename": "cmd2-0.6.5.1-py2.7.egg", "has_sig": false, "md5_digest": "ffceb23ec292b757aa6108c154b10d45", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 42008, "upload_time": "2013-03-18T16:48:28", "url": "https://files.pythonhosted.org/packages/8b/c0/4e6cb5cd7389fbb9a0066699f9e0f85ffd8fc9dcee7e0241009e1dcf2916/cmd2-0.6.5.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d5e83bc70971536c37f0176c92b2dd62", "sha256": "392425b12d9e74be9c48bb990c305ed06dfe8a39f6c7f0394e5c9dfbffd05d56" }, "downloads": -1, "filename": "cmd2-0.6.5.1-py3.2.egg", "has_sig": false, "md5_digest": "d5e83bc70971536c37f0176c92b2dd62", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 44390, "upload_time": "2013-03-18T16:45:41", "url": "https://files.pythonhosted.org/packages/70/c0/36471fd5859af4dd69545b7d4aa513e3cdefbe6126924985e397e85244b3/cmd2-0.6.5.1-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "44a8f40eabcba2cbefe7ea7560a8abfc", "sha256": "20474c5ff69e6ab4a38da29f2f1368126c9dc904f21d79e001663b9047ecb794" }, "downloads": -1, "filename": "cmd2-0.6.5.1.tar.gz", "has_sig": false, "md5_digest": "44a8f40eabcba2cbefe7ea7560a8abfc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21180, "upload_time": "2013-03-18T16:45:36", "url": "https://files.pythonhosted.org/packages/ad/f9/71bd02cb7eea7696449a27009d22b900c00ab725d67e525df5bf249deaf7/cmd2-0.6.5.1.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "cb90b3e95eebe6253984e2060c8a193f", "sha256": "22845c68c659d0b5a78bb1c39c56346eec89fec24777ea0d473aa45a2536b0eb" }, "downloads": -1, "filename": "cmd2-0.6.6-py2.7.egg", "has_sig": false, "md5_digest": "cb90b3e95eebe6253984e2060c8a193f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 42007, "upload_time": "2013-08-06T11:51:24", "url": "https://files.pythonhosted.org/packages/16/aa/078a163bd45ba7d801acd98403bab308eb80b63f8bd852ef0e4a4c8dce13/cmd2-0.6.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a405fb9cbe9624153696e6fef552aa63", "sha256": "702a6965bc110e0ae176507d041024e03a39bdaf11de607b1391e11df1cc831c" }, "downloads": -1, "filename": "cmd2-0.6.6-py3.3.egg", "has_sig": false, "md5_digest": "a405fb9cbe9624153696e6fef552aa63", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 43741, "upload_time": "2013-08-06T11:51:11", "url": "https://files.pythonhosted.org/packages/12/22/12d9ee3923cf3e18d996c9b35c942fe14a0fef3187e2459999a608af36d7/cmd2-0.6.6-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "0eb71313f86aa4643447fe9c8f923e1a", "sha256": "538a9b129e7f4fc88ee15f320e02e7b514f80a4ebe539e8922638a6cb739fff8" }, "downloads": -1, "filename": "cmd2-0.6.6.tar.gz", "has_sig": false, "md5_digest": "0eb71313f86aa4643447fe9c8f923e1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20533, "upload_time": "2013-08-06T11:51:08", "url": "https://files.pythonhosted.org/packages/9d/1a/059255f402223d2900bb5da683aae7755d2f27b371b3c25fbd9eb41c2d62/cmd2-0.6.6.tar.gz" } ], "0.6.6.1": [ { "comment_text": "", "digests": { "md5": "2688c9bc42abe70e97da64e64808b9ad", "sha256": "90c67d0ffcadb232fec6b8568d2502c5eb968ecfbd678f49b9f2f9984d68e7a3" }, "downloads": -1, "filename": "cmd2-0.6.6.1-py2.7.egg", "has_sig": false, "md5_digest": "2688c9bc42abe70e97da64e64808b9ad", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 42041, "upload_time": "2013-08-14T20:45:32", "url": "https://files.pythonhosted.org/packages/4f/db/b9505ff64804d0617e98d087c4d4a575f7edea257a7e692b2d0ccf55794e/cmd2-0.6.6.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "652f5d68169c758ba700a61bd7714a4c", "sha256": "0b051e6b5f4500f823f996c77991363fe1d5c0b790002eb9922c7b39921cd981" }, "downloads": -1, "filename": "cmd2-0.6.6.1.tar.gz", "has_sig": false, "md5_digest": "652f5d68169c758ba700a61bd7714a4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20538, "upload_time": "2013-08-14T20:45:29", "url": "https://files.pythonhosted.org/packages/f1/68/9c2658d991103be3a5a5b668b5d490ecd4b77c065f3e4b2bb34134133f85/cmd2-0.6.6.1.tar.gz" } ], "0.6.7": [ { "comment_text": "", "digests": { "md5": "10adeed6fb33ae86d768b682f828fbbf", "sha256": "85b0ce8823af12a362972c3b692c4776a47e2e82a838b963119c2108fa1866df" }, "downloads": -1, "filename": "cmd2-0.6.7-py2.7.egg", "has_sig": false, "md5_digest": "10adeed6fb33ae86d768b682f828fbbf", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 43693, "upload_time": "2013-09-21T01:30:18", "url": "https://files.pythonhosted.org/packages/33/69/256850c8545aaaa3df60baec6ab9c97390bd7d491233a7fd89ead3d33782/cmd2-0.6.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "0cabbb2d0c50b9b3d4b7aa565b1fd0a8", "sha256": "4a6bd50cd56879d2a04ede6771f7573b992f8a404519f62a221bb7da9e28e302" }, "downloads": -1, "filename": "cmd2-0.6.7-py3.3.egg", "has_sig": false, "md5_digest": "0cabbb2d0c50b9b3d4b7aa565b1fd0a8", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 45425, "upload_time": "2013-09-21T01:31:25", "url": "https://files.pythonhosted.org/packages/d9/1f/bbd6b6e8006e7dee55fb1060cede2f5e49c5be1a7730197ffcab1c9887ce/cmd2-0.6.7-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "842df29ff2f72d64d7f0d917039c0e51", "sha256": "8e98c7a1cfd106183559240b269e7cd9fe97e8342b5c05295f591aab6fd2f4f0" }, "downloads": -1, "filename": "cmd2-0.6.7.tar.gz", "has_sig": false, "md5_digest": "842df29ff2f72d64d7f0d917039c0e51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20558, "upload_time": "2013-09-21T01:30:06", "url": "https://files.pythonhosted.org/packages/03/d0/44659622cf83812b6cc04570ba6d90a028de94c44f8b80f5d6b646392003/cmd2-0.6.7.tar.gz" } ], "0.6.8": [ { "comment_text": "", "digests": { "md5": "84157548282036e98c6c152104b258c9", "sha256": "d7947529d543e5562d8cb485d10f762fc6b91f8b8f2bb5ee0f76ea90df66c10d" }, "downloads": -1, "filename": "cmd2-0.6.8-py2.7.egg", "has_sig": false, "md5_digest": "84157548282036e98c6c152104b258c9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 42135, "upload_time": "2014-12-09T02:25:36", "url": "https://files.pythonhosted.org/packages/51/75/b5a32e98b3a1346e9efdf3fc9af2d8ec0fec6debd1baa0b816082fd8816e/cmd2-0.6.8-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c32c9a897e010c977b50c1ddc13f09fe", "sha256": "ac780d8c31fc107bf6b4edcbcea711de4ff776d59d89bb167f8819d2d83764a8" }, "downloads": -1, "filename": "cmd2-0.6.8.tar.gz", "has_sig": false, "md5_digest": "c32c9a897e010c977b50c1ddc13f09fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21483, "upload_time": "2014-12-09T02:25:34", "url": "https://files.pythonhosted.org/packages/20/65/6e5518c6bbfe9fe33be1364a6e83d372f837019dfdb31b207b2db3d84865/cmd2-0.6.8.tar.gz" } ], "0.6.9": [ { "comment_text": "", "digests": { "md5": "cf39b5a34955d263b42a7ffc9d3e536d", "sha256": "ef09745c91dbc13344db6d81f4dea4c844bf2fabf3baf91fab1bb54e4b3bb328" }, "downloads": -1, "filename": "cmd2-0.6.9.tar.gz", "has_sig": false, "md5_digest": "cf39b5a34955d263b42a7ffc9d3e536d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 367057, "upload_time": "2016-10-03T10:40:59", "url": "https://files.pythonhosted.org/packages/97/80/d5c6efd4a1467865fd25c203fbe3a107f241b09f30cc7f8d9a3e3bef8abd/cmd2-0.6.9.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "ee92ff1b73765d64bf230e94512d0b7a", "sha256": "5ab76a1f07dd5fd1cc3c15ba4080265f33b80c7fd748d71bd69a51d60b30f51a" }, "downloads": -1, "filename": "cmd2-0.7.0.tar.gz", "has_sig": false, "md5_digest": "ee92ff1b73765d64bf230e94512d0b7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 371786, "upload_time": "2017-02-23T18:51:23", "url": "https://files.pythonhosted.org/packages/9b/58/e88fda298b521e6073d4dd7f305cf661d805d1c06fd86f44ccc2f271a800/cmd2-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "032f5e58cd1563d86a9e2fb31b188859", "sha256": "b003921d60f0ae4680791dd5416fc46cca626e503d893394c5e194ac4a1f4961" }, "downloads": -1, "filename": "cmd2-0.7.1.tar.gz", "has_sig": false, "md5_digest": "032f5e58cd1563d86a9e2fb31b188859", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28626, "upload_time": "2017-05-22T17:42:23", "url": "https://files.pythonhosted.org/packages/71/a0/fd8912a2dccc3c7e758faf4a22917c6bf070eeaac966b8ef5df4ece680e1/cmd2-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "4a5b5aab407bdeb49634789f9a42902b", "sha256": "d06301cc578a83531261121c0b11d79d29d0a80aca01ed6752c20c4cfcda2dd9" }, "downloads": -1, "filename": "cmd2-0.7.2.tar.gz", "has_sig": false, "md5_digest": "4a5b5aab407bdeb49634789f9a42902b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55571, "upload_time": "2017-05-22T20:46:31", "url": "https://files.pythonhosted.org/packages/3c/68/509a329d2d9d0104d3c2806cd534ce534f5e1e7c552f443b11d02c77d3cc/cmd2-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "846a008b51211e64a930245fb29d87c9", "sha256": "cff622a8d932528ad2434a8be5f69ae5df66908e2146f792aee581c79e8d9b33" }, "downloads": -1, "filename": "cmd2-0.7.3.tar.gz", "has_sig": false, "md5_digest": "846a008b51211e64a930245fb29d87c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58908, "upload_time": "2017-06-23T03:44:39", "url": "https://files.pythonhosted.org/packages/8f/41/444cb674c243bd82acdc12e55384c20ae84e94d8dc5e7b226d3f65daa3dc/cmd2-0.7.3.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "81c9b43067799e6d56431fdaf664d9cf", "sha256": "c8e305effb691b9a37ad1ec23f12ab61a55f6bf8008367cf6cb6ff3b48ed5ed0" }, "downloads": -1, "filename": "cmd2-0.7.4.tar.gz", "has_sig": false, "md5_digest": "81c9b43067799e6d56431fdaf664d9cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64040, "upload_time": "2017-07-03T21:41:37", "url": "https://files.pythonhosted.org/packages/00/70/7f68f54ca2a9e1e9ca10acce45686a7061b24c891aa29f3c92a25a747820/cmd2-0.7.4.tar.gz" } ], "0.7.5": [ { "comment_text": "", "digests": { "md5": "9f758f3a6a20f1220d60f6320bb839b3", "sha256": "7a47afafc5ad45649a2998df8d96f39d8e1d0686f55c785285889e45151ff75f" }, "downloads": -1, "filename": "cmd2-0.7.5.tar.gz", "has_sig": false, "md5_digest": "9f758f3a6a20f1220d60f6320bb839b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64939, "upload_time": "2017-07-08T19:40:32", "url": "https://files.pythonhosted.org/packages/99/18/0bfe8240ffaebd28b1bce5a48170404e32bc1de6e640c8e7f37f1e522edb/cmd2-0.7.5.tar.gz" } ], "0.7.6": [ { "comment_text": "", "digests": { "md5": "71f862cb2817b207c9cecec7382324d6", "sha256": "fcf116b44a46188bbae2ba852a5c2354c069b798feda314a452cb927054d2f86" }, "downloads": -1, "filename": "cmd2-0.7.6.tar.gz", "has_sig": false, "md5_digest": "71f862cb2817b207c9cecec7382324d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66778, "upload_time": "2017-08-11T21:35:58", "url": "https://files.pythonhosted.org/packages/e6/34/118c4d669fa704732d22344b6a014922c552b794317f6f048012455cbdfe/cmd2-0.7.6.tar.gz" } ], "0.7.7": [ { "comment_text": "", "digests": { "md5": "576b78add6d652b48dcf9362cece88ef", "sha256": "b4e2fb9fc656adccc4d01dfd55ab5a9b05890e961950543f692e7885725c2d72" }, "downloads": -1, "filename": "cmd2-0.7.7.tar.gz", "has_sig": false, "md5_digest": "576b78add6d652b48dcf9362cece88ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69882, "upload_time": "2017-08-25T14:28:48", "url": "https://files.pythonhosted.org/packages/be/79/eb0adb48d8193656a64d679824b9a6a4985faf62875f2f2efe3006695419/cmd2-0.7.7.tar.gz" } ], "0.7.8": [ { "comment_text": "", "digests": { "md5": "afa5c55fd94bb4a38a01232a511585eb", "sha256": "e132db7d1f5a2faf2310606ee4b2e49c7b4e1e5ed533f1e4ca9474c51475eb0f" }, "downloads": -1, "filename": "cmd2-0.7.8.tar.gz", "has_sig": false, "md5_digest": "afa5c55fd94bb4a38a01232a511585eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71778, "upload_time": "2017-11-09T00:49:01", "url": "https://files.pythonhosted.org/packages/88/58/751575405f01a5b157a0f8317a315a685c82a8fa9ef40941a8fab0c3f529/cmd2-0.7.8.tar.gz" } ], "0.7.9": [ { "comment_text": "", "digests": { "md5": "eeb80d5c29715b4ac39ecc032842a25f", "sha256": "f518d30c641483c8d6c246afae6e4447f816f8300befc6a11c476eeb62a496e6" }, "downloads": -1, "filename": "cmd2-0.7.9.tar.gz", "has_sig": false, "md5_digest": "eeb80d5c29715b4ac39ecc032842a25f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71298, "upload_time": "2018-01-04T19:53:56", "url": "https://files.pythonhosted.org/packages/bf/cb/fd078109ca375c151eb902a39d0148e94f6cb807c21109359e3462f018bc/cmd2-0.7.9.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "0988674436fde36bbfc5cd650f4808ac", "sha256": "4b3a9d9f305039ca94deb93e0a54ba896f12d1aae7206c6283fe02c6dbb0b7ba" }, "downloads": -1, "filename": "cmd2-0.8.0.tar.gz", "has_sig": false, "md5_digest": "0988674436fde36bbfc5cd650f4808ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75041, "upload_time": "2018-02-01T13:29:13", "url": "https://files.pythonhosted.org/packages/1b/81/03496b414d965ce949f6be7c6b8fc8d82a21b6cb5b213ea67f656be2fea8/cmd2-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "701b916ffac99137bea413205106f993", "sha256": "d09976f9ad2327883c2d07b5acb42e66ad52b17e352873c22041ed124bfe8aba" }, "downloads": -1, "filename": "cmd2-0.8.1.tar.gz", "has_sig": false, "md5_digest": "701b916ffac99137bea413205106f993", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 89299, "upload_time": "2018-03-10T03:59:21", "url": "https://files.pythonhosted.org/packages/93/85/d07ef389832a5db9f9e4272fb721e64de6dc26ee1e82c2bba1a94a259dcb/cmd2-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "22b77e457feb431d7dc7989217d4b363", "sha256": "2102f0816e7be787575239343ed1dc5c458916a822c717d5c2caaac3a2042217" }, "downloads": -1, "filename": "cmd2-0.8.2.tar.gz", "has_sig": false, "md5_digest": "22b77e457feb431d7dc7989217d4b363", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 170152, "upload_time": "2018-03-21T20:06:05", "url": "https://files.pythonhosted.org/packages/f2/2b/9832ae0562fc7f48b8c5dc1fd80a0fba8a87abc3f7c2fd50b0b5857bd75d/cmd2-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "d148b6f9da0211877926a4948a291127", "sha256": "c6f47292ab28dc8ec0541b90bd076067ec236d4ee4d2cee7ca35c891101d5516" }, "downloads": -1, "filename": "cmd2-0.8.3-py3-none-any.whl", "has_sig": false, "md5_digest": "d148b6f9da0211877926a4948a291127", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 50357, "upload_time": "2018-04-10T14:42:48", "url": "https://files.pythonhosted.org/packages/df/c5/2a96e28ef51c41b3116b8fd447a70955b14cab6c02c965f711d0e08cb2a0/cmd2-0.8.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a508575373fd1b392d3d41842e9c9f32", "sha256": "4b09250c90b5177458198dc987c960c26bb26a513c3076d63fcfacea898d8502" }, "downloads": -1, "filename": "cmd2-0.8.3.tar.gz", "has_sig": false, "md5_digest": "a508575373fd1b392d3d41842e9c9f32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106049, "upload_time": "2018-04-09T16:46:37", "url": "https://files.pythonhosted.org/packages/47/82/fb23095c3d386570944f552be884c542e04dc1552b2b792749cc809c148b/cmd2-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "317319128823a0fa4a52c8c0a1cf4239", "sha256": "1d5dde413872de87b8504749ffde114878a7a38bbfa87784b2b7709f25dfd668" }, "downloads": -1, "filename": "cmd2-0.8.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "317319128823a0fa4a52c8c0a1cf4239", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 50335, "upload_time": "2018-04-10T17:02:27", "url": "https://files.pythonhosted.org/packages/a7/80/0f4f166d94bd15b81a3557657212bf0132cd455fb6fa829b2bd233f1ffe8/cmd2-0.8.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f71cd1e3c8e3bbb3199f625353d667df", "sha256": "d04393cd76ca475ef6708dd0c2ac35ac7daf66500f26907718f3f60ddef32f4d" }, "downloads": -1, "filename": "cmd2-0.8.4.tar.gz", "has_sig": false, "md5_digest": "f71cd1e3c8e3bbb3199f625353d667df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106142, "upload_time": "2018-04-10T17:02:26", "url": "https://files.pythonhosted.org/packages/e0/b4/28a569cc2df970a012717bf24756876b452b876cbae2de75e8b41dbee8fa/cmd2-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "308d9a95bb5b9a2172d435f7c7e4c22e", "sha256": "d8ddf10d6d0bb9b389401f61aabb36d166ba6050630afa3d88f8448a634f1399" }, "downloads": -1, "filename": "cmd2-0.8.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "308d9a95bb5b9a2172d435f7c7e4c22e", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 51483, "upload_time": "2018-04-15T18:41:07", "url": "https://files.pythonhosted.org/packages/ee/02/faa35704449a68f18db39ee9a047e32c8b569e672daadfef3501259fe6bb/cmd2-0.8.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "976b3e34d3aa084e27abd39e94416010", "sha256": "2ae9c397bcb8c4ca2a068002407238e56acfce3ed55e67bde35988a100adcdee" }, "downloads": -1, "filename": "cmd2-0.8.5.tar.gz", "has_sig": false, "md5_digest": "976b3e34d3aa084e27abd39e94416010", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108612, "upload_time": "2018-04-15T18:41:04", "url": "https://files.pythonhosted.org/packages/5c/ec/63ac612859b7b243432891e2fc5f60016fd95e41af30ba8747978eb68f10/cmd2-0.8.5.tar.gz" } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "61b424fdbaa27566aaf51dbce36e9796", "sha256": "c635097c43974da969bfc1a2c43b57382501dee66fce2289bb2227a2d659a2d5" }, "downloads": -1, "filename": "cmd2-0.8.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "61b424fdbaa27566aaf51dbce36e9796", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 51061, "upload_time": "2018-05-27T23:01:27", "url": "https://files.pythonhosted.org/packages/88/1e/250cb2718e6c1b33713ea46526df24156e8e51c9494b549da196dfbcf9a9/cmd2-0.8.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "31231e073dc5ecdc4cf4f3c0f5f2299e", "sha256": "ef4a4166882066314d6e8e8362b515e5b9839f401d1f32d6aa6ac871af24980b" }, "downloads": -1, "filename": "cmd2-0.8.6.tar.gz", "has_sig": false, "md5_digest": "31231e073dc5ecdc4cf4f3c0f5f2299e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110554, "upload_time": "2018-05-27T23:01:26", "url": "https://files.pythonhosted.org/packages/c6/5e/02f55ac6827d663c767a06cd508699964bd19f15c80e2c26be1189c979bf/cmd2-0.8.6.tar.gz" } ], "0.8.6.1": [ { "comment_text": "", "digests": { "md5": "40bb29dbbd1c65b7147c63cee9b3ed67", "sha256": "c559540ec848caac637ad8f193851e4f745825aa369b99a0bff19d3b1263d7b7" }, "downloads": -1, "filename": "cmd2-0.8.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "40bb29dbbd1c65b7147c63cee9b3ed67", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 51083, "upload_time": "2018-05-28T21:24:50", "url": "https://files.pythonhosted.org/packages/18/8e/535272d534e22b366e1e9eee5872b2dc83ec5319073b51b94056e68df0d4/cmd2-0.8.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "54867398fd36144fc5288652ae64aef4", "sha256": "6418c49e03b7a296d3a3e08e4bd14e48aa577a98cf048327861a732e411cba02" }, "downloads": -1, "filename": "cmd2-0.8.6.1.tar.gz", "has_sig": false, "md5_digest": "54867398fd36144fc5288652ae64aef4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 110494, "upload_time": "2018-05-28T21:24:51", "url": "https://files.pythonhosted.org/packages/5c/5e/05e90caf39c3818c9ce3056cdbb11bdacd74a4e734f775d7421c6837342e/cmd2-0.8.6.1.tar.gz" } ], "0.8.7": [ { "comment_text": "", "digests": { "md5": "249984e0f09bb01886dfc336e1a0d116", "sha256": "e455b874ea69129434803a80918e4489c5fbd214bc32b3eb087bfbe093ce3a93" }, "downloads": -1, "filename": "cmd2-0.8.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "249984e0f09bb01886dfc336e1a0d116", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 51066, "upload_time": "2018-05-28T22:02:15", "url": "https://files.pythonhosted.org/packages/3e/a0/839e37a31e7dfb349cbacdbb514054a71054010bc91185a1738e45485815/cmd2-0.8.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4e713c984a79924a07ec5bf9bfd82bca", "sha256": "f9e0dadbfa600afcc532c95a7cb958a8daf66d58ebcab1d3c138bb7d0379a3e1" }, "downloads": -1, "filename": "cmd2-0.8.7.tar.gz", "has_sig": false, "md5_digest": "4e713c984a79924a07ec5bf9bfd82bca", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 110473, "upload_time": "2018-05-28T22:02:17", "url": "https://files.pythonhosted.org/packages/1a/f5/95f5c93367676b5120abcf15f127c0b67229bcc3e507dd02bc2cc06241f7/cmd2-0.8.7.tar.gz" } ], "0.8.7rc1": [ { "comment_text": "", "digests": { "md5": "993d89664c6c1877a51fd4fb5a65c160", "sha256": "dce56483e428012588681ea1f7876d12935df63a6190fe8b020d3bb4e9d93256" }, "downloads": -1, "filename": "cmd2-0.8.7rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "993d89664c6c1877a51fd4fb5a65c160", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 51096, "upload_time": "2018-05-28T20:52:36", "url": "https://files.pythonhosted.org/packages/76/56/715b842b373e284ed6044ccd99e1b8ee12f4278e3dd808145c550d5476ac/cmd2-0.8.7rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "03c9d69e6b67d6855d34ff040e8beb25", "sha256": "56d642ab7eaaafc5e043b92be135847faf7bcdb8611cad2823ba8ea53218bbad" }, "downloads": -1, "filename": "cmd2-0.8.7rc1.tar.gz", "has_sig": false, "md5_digest": "03c9d69e6b67d6855d34ff040e8beb25", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 110506, "upload_time": "2018-05-28T20:52:38", "url": "https://files.pythonhosted.org/packages/63/ee/1515abb0119fbd1d2cc8a2ea1192a20f646455b49ec6292b007f42a8d9ad/cmd2-0.8.7rc1.tar.gz" } ], "0.8.8": [ { "comment_text": "", "digests": { "md5": "2f06090dca674081dd6690130382da5d", "sha256": "44495f075a4e45a14157ed9035794a06e79567912b08f25d4151db4fc1e8fbcb" }, "downloads": -1, "filename": "cmd2-0.8.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2f06090dca674081dd6690130382da5d", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 51692, "upload_time": "2018-06-29T04:10:28", "url": "https://files.pythonhosted.org/packages/f9/6a/0fc7efe26074a214b3b4d26a5a48d54a3c3919b440d5606c99021ed00c44/cmd2-0.8.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1f555bb656d361d9b0212b07e232752f", "sha256": "b08bc5088fdd131d659354e6b4f8cf7c01a70566f68aed146e00d296a24b687b" }, "downloads": -1, "filename": "cmd2-0.8.8.tar.gz", "has_sig": false, "md5_digest": "1f555bb656d361d9b0212b07e232752f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 535336, "upload_time": "2018-06-29T04:10:26", "url": "https://files.pythonhosted.org/packages/e8/ee/e9d450ae62cc0bb535c1f9e3f67530abfdb7892a68761d11819b0da65467/cmd2-0.8.8.tar.gz" } ], "0.8.9": [ { "comment_text": "", "digests": { "md5": "cd8222d21268c062dc17274a4163a86c", "sha256": "ce779b8bcb6aab05569d6c728eaa093c442bb7478a4998f23f1339e845a33090" }, "downloads": -1, "filename": "cmd2-0.8.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cd8222d21268c062dc17274a4163a86c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 53706, "upload_time": "2018-08-21T02:52:55", "url": "https://files.pythonhosted.org/packages/e9/40/a71caa2aaff10c73612a7106e2d35f693e85b8cf6e37ab0774274bca3cf9/cmd2-0.8.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "878976772c305486dfbca3aff4b4e779", "sha256": "145cb677ebd0e3cae546ab81c30f6c25e0b08ba0f1071df854d53707ea792633" }, "downloads": -1, "filename": "cmd2-0.8.9.tar.gz", "has_sig": false, "md5_digest": "878976772c305486dfbca3aff4b4e779", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 112543, "upload_time": "2018-08-21T02:52:54", "url": "https://files.pythonhosted.org/packages/21/48/d48fe56f794e9a3feef440e4fb5c80dd4309575e13e132265fc160e82033/cmd2-0.8.9.tar.gz" } ], "0.9.0.1": [ { "comment_text": "", "digests": { "md5": "ccbf15ab0b625c1c7d9af036733a7622", "sha256": "a81a0e5b311bbfac7dc5b3e55fe989b51770266ffd4b264021741e4e376131b5" }, "downloads": -1, "filename": "cmd2-0.9.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "ccbf15ab0b625c1c7d9af036733a7622", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 70338, "upload_time": "2018-05-28T21:35:18", "url": "https://files.pythonhosted.org/packages/c1/13/698276b6cf78ddd02189e7c3436da326fa4c3a2d7bbec9578c094f235a99/cmd2-0.9.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5331aabc811d9c8c43d1dd69850c4013", "sha256": "137c29b79263321f3f5f336f70c258f981657985734a05133d4efe06c44b3412" }, "downloads": -1, "filename": "cmd2-0.9.0.1.tar.gz", "has_sig": false, "md5_digest": "5331aabc811d9c8c43d1dd69850c4013", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 135541, "upload_time": "2018-05-28T21:35:20", "url": "https://files.pythonhosted.org/packages/2b/5f/e06db2e96b1cc30f9898734415b4f7b50aad9ecf2ebe19c918e72a667651/cmd2-0.9.0.1.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "613f8827feaf2a689df89ed708642680", "sha256": "519ca2892a56211b9a624cc34e7d34325de0f3c20412413726867e86c66cd6f2" }, "downloads": -1, "filename": "cmd2-0.9.1-py3-none-any.whl", "has_sig": false, "md5_digest": "613f8827feaf2a689df89ed708642680", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 70316, "upload_time": "2018-05-28T22:07:13", "url": "https://files.pythonhosted.org/packages/21/17/76a4dc6ac0e0281d87387fd2cbb9cc92ece379c590d9acb7a1693e4aebd8/cmd2-0.9.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "740e98af2ea7456a0b9d2302985e1721", "sha256": "89ac1e88eb7627acb74d1ae5d18dc01f9ddea4ec1c82caac8360f4f89323fcf2" }, "downloads": -1, "filename": "cmd2-0.9.1.tar.gz", "has_sig": false, "md5_digest": "740e98af2ea7456a0b9d2302985e1721", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 135577, "upload_time": "2018-05-28T22:07:15", "url": "https://files.pythonhosted.org/packages/98/b9/d0f52184579ab8cdff09bd7e786f24de14b3c8a6120ecf94f2dd33143cf4/cmd2-0.9.1.tar.gz" } ], "0.9.10": [ { "comment_text": "", "digests": { "md5": "405675525c7146ea05d1a23d37129102", "sha256": "907210320faf77a951b993b8c5d6e161640656e6ea24f185c64a5333ae9917db" }, "downloads": -1, "filename": "cmd2-0.9.10-py3-none-any.whl", "has_sig": false, "md5_digest": "405675525c7146ea05d1a23d37129102", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 86825, "upload_time": "2019-02-22T18:06:20", "url": "https://files.pythonhosted.org/packages/d6/9d/ed576b7bae064280181b9a043e116c73ec19a6885eb93c14ac2e5ff55fc0/cmd2-0.9.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "58920e71c29700293d0c53a281d91097", "sha256": "00d68374abe02363a417160e5836022be5c8f8bdac1da5dd101fadb6f8e96619" }, "downloads": -1, "filename": "cmd2-0.9.10.tar.gz", "has_sig": false, "md5_digest": "58920e71c29700293d0c53a281d91097", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 508776, "upload_time": "2019-02-22T18:06:22", "url": "https://files.pythonhosted.org/packages/b0/21/24b4c9769e4752e199933e6e37dea65398b6b796aced902fd78ef3c1fac6/cmd2-0.9.10.tar.gz" } ], "0.9.11": [ { "comment_text": "", "digests": { "md5": "a74dda225355cd9ea1684b2200ac8da0", "sha256": "a409b48824272d1c03f08db63245e55085cae0ed8ea7509d5a36101e3232fcb9" }, "downloads": -1, "filename": "cmd2-0.9.11-py3-none-any.whl", "has_sig": false, "md5_digest": "a74dda225355cd9ea1684b2200ac8da0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 83630, "upload_time": "2019-03-13T13:11:14", "url": "https://files.pythonhosted.org/packages/28/ca/35731e97fb6615e0e448482a4020e9cd8e38f22f1eb66d9209f8055d31eb/cmd2-0.9.11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "041a52ca794002cebdc30ba833fad8fa", "sha256": "34a335b05f149d1b23e5657d597e7121b74ddf2e07d1c58f39855ade0e2a5242" }, "downloads": -1, "filename": "cmd2-0.9.11.tar.gz", "has_sig": false, "md5_digest": "041a52ca794002cebdc30ba833fad8fa", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 504912, "upload_time": "2019-03-13T13:11:16", "url": "https://files.pythonhosted.org/packages/e6/83/555bf188026779e74e0f8929ab039327bbaac3161f2d61804947473d03d0/cmd2-0.9.11.tar.gz" } ], "0.9.12": [ { "comment_text": "", "digests": { "md5": "bc6f813fa7c1d33b2eebe3495ec1f526", "sha256": "04518902e374d1b981d0ab64f95d9b8b9521850f489871d31737343896c6de0f" }, "downloads": -1, "filename": "cmd2-0.9.12-py3-none-any.whl", "has_sig": false, "md5_digest": "bc6f813fa7c1d33b2eebe3495ec1f526", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 92832, "upload_time": "2019-04-23T01:52:10", "url": "https://files.pythonhosted.org/packages/9d/7c/fc946c24dfe4b12ffdcd099216471c413bbcf48f94f86b91b4ea44ccbaa6/cmd2-0.9.12-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0ac7aa59759ab737172a05de4dfe5d14", "sha256": "4cffd3b697cee0786101522bb520458eeedd5ddb2ce120f0f981d61961dcfe92" }, "downloads": -1, "filename": "cmd2-0.9.12.tar.gz", "has_sig": false, "md5_digest": "0ac7aa59759ab737172a05de4dfe5d14", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 517084, "upload_time": "2019-04-23T01:52:12", "url": "https://files.pythonhosted.org/packages/ef/02/3d8693f779de1f573a4f28c8efbec3356a78c6bf4dd057fb150b7f71e8b1/cmd2-0.9.12.tar.gz" } ], "0.9.13": [ { "comment_text": "", "digests": { "md5": "72a435112385fae61d569f1832d524f2", "sha256": "64313143a977d92573fe507bce5670c165e5ed04b2afe7e641d1bc8add6785b1" }, "downloads": -1, "filename": "cmd2-0.9.13-py3-none-any.whl", "has_sig": false, "md5_digest": "72a435112385fae61d569f1832d524f2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 95670, "upload_time": "2019-06-15T03:04:29", "url": "https://files.pythonhosted.org/packages/ab/1c/b2c24ce097294b05746a439e607aa98cfc2d615375b859a27652f8595cce/cmd2-0.9.13-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "52f28a8c692fd6607a1191c40fa7be48", "sha256": "b873ade57ebf6c42a9d4e8c705fc2b16777e9d2e53fec5b113914dc65f2eae38" }, "downloads": -1, "filename": "cmd2-0.9.13.tar.gz", "has_sig": false, "md5_digest": "52f28a8c692fd6607a1191c40fa7be48", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 527124, "upload_time": "2019-06-15T03:04:32", "url": "https://files.pythonhosted.org/packages/0c/98/3a877e3430ed77261aa4f5d8195420fcd52a602e643280948ce50e6b00b2/cmd2-0.9.13.tar.gz" } ], "0.9.14": [ { "comment_text": "", "digests": { "md5": "69f8f9c3dc5d2bbd8150142e963ce97c", "sha256": "a57d80a0de678a927bd774e3c13e396fd45418547bc9e9b587a9c3e8cb43227e" }, "downloads": -1, "filename": "cmd2-0.9.14-py3-none-any.whl", "has_sig": false, "md5_digest": "69f8f9c3dc5d2bbd8150142e963ce97c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 98251, "upload_time": "2019-06-29T19:21:26", "url": "https://files.pythonhosted.org/packages/39/e7/bd69c2c3e471ae6b408ba7bd1fa5ecfa6bd4884177efea3e7d0d07c8b0b7/cmd2-0.9.14-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f5c805e777dcdb1cf83b728343e6d95f", "sha256": "2361cb0448e2bf94a9cd9bd630f80f53032d62c3afda82fc8ead270409e39466" }, "downloads": -1, "filename": "cmd2-0.9.14.tar.gz", "has_sig": false, "md5_digest": "f5c805e777dcdb1cf83b728343e6d95f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 530199, "upload_time": "2019-06-29T19:21:29", "url": "https://files.pythonhosted.org/packages/cb/ce/718d8b6c0992d86f31f3b43843dde9e7d49f67c6d98eff2b9ff5be6d7b7b/cmd2-0.9.14.tar.gz" } ], "0.9.15": [ { "comment_text": "", "digests": { "md5": "55c611a248d38ec6f0f367f776fc7879", "sha256": "4c29841f7cf4ee0552a59726f902701c81cc0f9a714794ff610fe07ca06c1f4b" }, "downloads": -1, "filename": "cmd2-0.9.15-py3-none-any.whl", "has_sig": false, "md5_digest": "55c611a248d38ec6f0f367f776fc7879", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 101078, "upload_time": "2019-07-25T02:11:25", "url": "https://files.pythonhosted.org/packages/98/38/bd03a35eeb13e2db113cfc65e37fbbe53586f141f55cfefc3a706a1de34d/cmd2-0.9.15-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ab1eccb005cd9fe7886625a28160a57d", "sha256": "fcbd6741fe4408e8b7f9941b941090920094051da23c0cf738812f753f1b7e4c" }, "downloads": -1, "filename": "cmd2-0.9.15.tar.gz", "has_sig": false, "md5_digest": "ab1eccb005cd9fe7886625a28160a57d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 550232, "upload_time": "2019-07-25T02:11:28", "url": "https://files.pythonhosted.org/packages/b0/5f/e4a1fd0eef02df2f766223e93e1a3bf8d2bdf8d1e32b4050c1355b2a3086/cmd2-0.9.15.tar.gz" } ], "0.9.16": [ { "comment_text": "", "digests": { "md5": "202764fa7341da4b8193f78dcea84156", "sha256": "afebd649dda771b1de893e8df0a5f6085da5f0dcf7f63e18b247b3284f9365ce" }, "downloads": -1, "filename": "cmd2-0.9.16-py3-none-any.whl", "has_sig": false, "md5_digest": "202764fa7341da4b8193f78dcea84156", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 101171, "upload_time": "2019-08-08T02:00:05", "url": "https://files.pythonhosted.org/packages/01/ba/c054c80b1383a8aae75a91161394be978817c2ef262520cb398dda3a3fca/cmd2-0.9.16-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "df35bb2dca8f5e1f6090e1f0aa02960a", "sha256": "4b78379d53aff811d1deac720bbe71661769822a5fb2d830cd730656d180fb3d" }, "downloads": -1, "filename": "cmd2-0.9.16.tar.gz", "has_sig": false, "md5_digest": "df35bb2dca8f5e1f6090e1f0aa02960a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 550919, "upload_time": "2019-08-08T02:00:08", "url": "https://files.pythonhosted.org/packages/ef/77/7a13dbfc91018ad4d7ad07345c636e374a7655a17ac5b3c8c1248c4e722c/cmd2-0.9.16.tar.gz" } ], "0.9.17": [ { "comment_text": "", "digests": { "md5": "3b7561b5c0d6088ee83cac9ffe56366f", "sha256": "e912a343e1761be5755aabf8d732382c10419a69436927d8d40fbb7ec584f9d5" }, "downloads": -1, "filename": "cmd2-0.9.17-py3-none-any.whl", "has_sig": false, "md5_digest": "3b7561b5c0d6088ee83cac9ffe56366f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 102534, "upload_time": "2019-09-24T02:53:54", "url": "https://files.pythonhosted.org/packages/dd/c8/8aaaa75275b1a4f529453af96866e9eeab5e51cd86ed693c3dc8a0bd2a18/cmd2-0.9.17-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c030c7364422609d16028fe1ea023bfe", "sha256": "77bea602eb3b553a573188fa9514234bb1e44269d830a0ef8c4357f47aa9e46a" }, "downloads": -1, "filename": "cmd2-0.9.17.tar.gz", "has_sig": false, "md5_digest": "c030c7364422609d16028fe1ea023bfe", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 553819, "upload_time": "2019-09-24T02:53:59", "url": "https://files.pythonhosted.org/packages/2a/d4/1e8aea00b9760886ab09ed58aee04232954b44127cf3ccb7ac7f3bcef7cd/cmd2-0.9.17.tar.gz" } ], "0.9.18": [ { "comment_text": "", "digests": { "md5": "38d759c9e1b3c01e06bd87cc16e71728", "sha256": "0e449ddfb64315e9f42437a2a0d352b648a49d97f2e70ce031e93caa49b35853" }, "downloads": -1, "filename": "cmd2-0.9.18-py3-none-any.whl", "has_sig": false, "md5_digest": "38d759c9e1b3c01e06bd87cc16e71728", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 102943, "upload_time": "2019-10-01T19:37:39", "url": "https://files.pythonhosted.org/packages/1c/a5/af3096c3494719864742a7ff35c3d568619cf2b938bae88dc88dbea62d4b/cmd2-0.9.18-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f7a51dc68ad377ebc6a84408044dc1a2", "sha256": "840cdbf50e83761fea69ca5beadcba7569ab03734e3ee42b0dbf7f6f90e1213d" }, "downloads": -1, "filename": "cmd2-0.9.18.tar.gz", "has_sig": false, "md5_digest": "f7a51dc68ad377ebc6a84408044dc1a2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 555054, "upload_time": "2019-10-01T19:37:42", "url": "https://files.pythonhosted.org/packages/d1/98/229cd5c83393304c083d29842824499f950825a296beb45a3e77c3941bb5/cmd2-0.9.18.tar.gz" } ], "0.9.19": [ { "comment_text": "", "digests": { "md5": "2fc90da8fc136e2a9ab078b20a280229", "sha256": "9f0e6d3b91e618a729a27c4f5818482c71efb03e59ba666b27809e04a8f9d49b" }, "downloads": -1, "filename": "cmd2-0.9.19-py3-none-any.whl", "has_sig": false, "md5_digest": "2fc90da8fc136e2a9ab078b20a280229", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 102988, "upload_time": "2019-10-14T18:05:56", "url": "https://files.pythonhosted.org/packages/a8/d9/e31e255a67f5da8a835bcb2129c8beb1875b820c522e6487608735340c3f/cmd2-0.9.19-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "20f3f76b2aaf36a17372717b469ca969", "sha256": "c81284083d993af18b8fef57d89d854d49d051d4c2c8a8e12d0281e369ac3682" }, "downloads": -1, "filename": "cmd2-0.9.19.tar.gz", "has_sig": false, "md5_digest": "20f3f76b2aaf36a17372717b469ca969", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 555158, "upload_time": "2019-10-14T18:05:59", "url": "https://files.pythonhosted.org/packages/9c/2b/263241eb120357090fcb2acc5245cf528207a73f3c41eb75655f0862f5cd/cmd2-0.9.19.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "f3f75ea4ab73070c4971b8cceb6710b0", "sha256": "247a350d9b6e83efbe00efa0511ec02a7c8d139e36a46218520c7f30fb99bdea" }, "downloads": -1, "filename": "cmd2-0.9.2-py3-none-any.whl", "has_sig": false, "md5_digest": "f3f75ea4ab73070c4971b8cceb6710b0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 72564, "upload_time": "2018-06-29T04:26:52", "url": "https://files.pythonhosted.org/packages/f9/58/8172310d026a6c7c6d45c73243df75f78a47afe5d868e87b745d195c87af/cmd2-0.9.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bfe0900a2288283a40f0ee7533486a2f", "sha256": "e7b6b4b76272a051c943c3c709cd760142af16fbc9218e0ed3c22b28ea38d0a8" }, "downloads": -1, "filename": "cmd2-0.9.2.tar.gz", "has_sig": false, "md5_digest": "bfe0900a2288283a40f0ee7533486a2f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 142378, "upload_time": "2018-06-29T04:26:53", "url": "https://files.pythonhosted.org/packages/af/ef/72533f969c4f46eefc19d6908dfe06e385e5cd4b88f115ac343fb5fea587/cmd2-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "962711451d00823e096257971235610a", "sha256": "c259b4f59bd54484e95fb6dc1b02420103ea6543d8f1ceb6971fc6a1f6d46087" }, "downloads": -1, "filename": "cmd2-0.9.3-py3-none-any.whl", "has_sig": false, "md5_digest": "962711451d00823e096257971235610a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 72375, "upload_time": "2018-07-12T17:58:19", "url": "https://files.pythonhosted.org/packages/35/21/e4c5c5a5a78c85b23286cfd35a0446003cba77eeb5dbc3cd703d5e250e12/cmd2-0.9.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "13f99bab076b9cd650551f2ff5bd58c4", "sha256": "cffc94ad46425f80dfb243f53f456b11cea3f45e683504a60b64618a6d28b417" }, "downloads": -1, "filename": "cmd2-0.9.3.tar.gz", "has_sig": false, "md5_digest": "13f99bab076b9cd650551f2ff5bd58c4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 143643, "upload_time": "2018-07-12T17:58:20", "url": "https://files.pythonhosted.org/packages/3a/90/0f55984795242d29ddd010ca597880b1b19f65973c8c533f6012a91fc1a5/cmd2-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "fa6179895d5bae5d833afb1bc7568fdb", "sha256": "0861ad79b60825a32e3ff726f9877ec89a9d31db60a5ff3167c3ea876221d2cb" }, "downloads": -1, "filename": "cmd2-0.9.4-py3-none-any.whl", "has_sig": false, "md5_digest": "fa6179895d5bae5d833afb1bc7568fdb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 75433, "upload_time": "2018-08-21T03:23:35", "url": "https://files.pythonhosted.org/packages/4c/72/8d6638256ae3eea143d94239e98c94d68a8453a226a0cf25a0cc306a7dd5/cmd2-0.9.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c4d46317b0c582e1d50e18bcfd77f65d", "sha256": "0037dcf92331c63ae43e7e644536e646fff8be2fd5a83da06b3482f910f929c6" }, "downloads": -1, "filename": "cmd2-0.9.4.tar.gz", "has_sig": false, "md5_digest": "c4d46317b0c582e1d50e18bcfd77f65d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 423672, "upload_time": "2018-08-21T03:23:37", "url": "https://files.pythonhosted.org/packages/85/e8/e413541e77b400477204aa9c858b3604abf88f820cf2c30b2d9454449041/cmd2-0.9.4.tar.gz" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "122892597aab2058bb9ab523eff52c7d", "sha256": "baafd59be1245fa909be30925b83b4f0af46863ba3f72c4e29a72ce7f9834534" }, "downloads": -1, "filename": "cmd2-0.9.5-py3-none-any.whl", "has_sig": false, "md5_digest": "122892597aab2058bb9ab523eff52c7d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 86430, "upload_time": "2018-10-11T18:43:32", "url": "https://files.pythonhosted.org/packages/5f/c9/f45aeb4b0c24413f00084d9e46f90a52717acaa9fc3fb2a9ce67b90d334b/cmd2-0.9.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4f042de69ca3d17e85b255a992b2c276", "sha256": "47a303cf8ffa40c969ade84a58448833b03b8b51e31a9e67198c9123353da436" }, "downloads": -1, "filename": "cmd2-0.9.5.tar.gz", "has_sig": false, "md5_digest": "4f042de69ca3d17e85b255a992b2c276", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 507424, "upload_time": "2018-10-11T18:43:34", "url": "https://files.pythonhosted.org/packages/bf/9f/c3dc63edc7c44eda8a833b994d27bfa9f470886a92e0052d50376c3baefb/cmd2-0.9.5.tar.gz" } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "de03eb1af2c116660bdaaa01c7b51cc7", "sha256": "428da6fe88ef6e85bc1af88794ccf41d210d7f3c5c6b36958fc8ac0520236288" }, "downloads": -1, "filename": "cmd2-0.9.6-py3-none-any.whl", "has_sig": false, "md5_digest": "de03eb1af2c116660bdaaa01c7b51cc7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 86742, "upload_time": "2018-10-13T23:18:06", "url": "https://files.pythonhosted.org/packages/ca/21/bcad9e336ca318614d52b25375f20286e6a6522e30ec2422be520f6ebedd/cmd2-0.9.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "276482b7d5ecabdbd7a3d17e3616e3bf", "sha256": "5c4d92c089d014dfb750a9d05cefd231e2dca437cc25edf535de7a63cdb9e908" }, "downloads": -1, "filename": "cmd2-0.9.6.tar.gz", "has_sig": false, "md5_digest": "276482b7d5ecabdbd7a3d17e3616e3bf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 504037, "upload_time": "2018-10-13T23:18:08", "url": "https://files.pythonhosted.org/packages/21/80/a93427ed96b700d08200520fe318438ae6c257103941cd18ca1a8325a49a/cmd2-0.9.6.tar.gz" } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "00a1e3ee8ecc8e794cf332fab3a5512b", "sha256": "d2d1f4294f9ccf5b8dc96c030f649dbc14a1090224486c3eb332f4af135a252f" }, "downloads": -1, "filename": "cmd2-0.9.7-py3-none-any.whl", "has_sig": false, "md5_digest": "00a1e3ee8ecc8e794cf332fab3a5512b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 86857, "upload_time": "2019-01-09T02:22:51", "url": "https://files.pythonhosted.org/packages/36/cf/25c3151c531f13988605e6792922152bd5d0dc0e907d02006767ca7668ed/cmd2-0.9.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cd451670c17e97e22ee0f5a5f1718bbc", "sha256": "b04a3421be2ae35e7e8347e29c2f3960eed38d0163e312845147d5d828a09379" }, "downloads": -1, "filename": "cmd2-0.9.7.tar.gz", "has_sig": false, "md5_digest": "cd451670c17e97e22ee0f5a5f1718bbc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 508600, "upload_time": "2019-01-09T02:22:53", "url": "https://files.pythonhosted.org/packages/3c/d7/8c484ddb7f8232c125595aaa670b3911b09449d825f9ff8ee7d8dda17266/cmd2-0.9.7.tar.gz" } ], "0.9.8": [ { "comment_text": "", "digests": { "md5": "7dc699b672edee82ea15cc040ea98f17", "sha256": "88a7fac6b630ed235f3d6a15dc85853ad7a0205322d7a64e8df0693631e4a857" }, "downloads": -1, "filename": "cmd2-0.9.8-py3-none-any.whl", "has_sig": false, "md5_digest": "7dc699b672edee82ea15cc040ea98f17", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 86904, "upload_time": "2019-02-07T02:48:08", "url": "https://files.pythonhosted.org/packages/d6/33/dbf0d2380ef9fce79e5b75f358a9de16b66b29598df610c24d49c4c0cd86/cmd2-0.9.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b1aefbea4f5b3b19b96f5aed596aba17", "sha256": "22c3461af56769e74225e3aeecab0e98ef86ab8d9b4ded29ba84722449fe7608" }, "downloads": -1, "filename": "cmd2-0.9.8.tar.gz", "has_sig": false, "md5_digest": "b1aefbea4f5b3b19b96f5aed596aba17", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 509373, "upload_time": "2019-02-07T02:48:10", "url": "https://files.pythonhosted.org/packages/b5/e6/084625564c071fd9580dff31e486319b9d2c80d7e50cc6254d655ec7b093/cmd2-0.9.8.tar.gz" } ], "0.9.9": [ { "comment_text": "", "digests": { "md5": "d7a77ce69ebbd8bfe95be55ade86d3f7", "sha256": "c1109b2628e900890155803a4d05e2b101724c742253a1f712795a2eeae29dc5" }, "downloads": -1, "filename": "cmd2-0.9.9-py3-none-any.whl", "has_sig": false, "md5_digest": "d7a77ce69ebbd8bfe95be55ade86d3f7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 86811, "upload_time": "2019-02-22T02:21:17", "url": "https://files.pythonhosted.org/packages/b0/ff/0ac59c1a3851496624ed9277f86ce4cbe6e0f0823b00b421131e40719167/cmd2-0.9.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3825c4264be741d993d15fc874167abb", "sha256": "9d47320bc87ad325c87c436b78c1c235d945c0fa2cc420013ea2c224b0acdbea" }, "downloads": -1, "filename": "cmd2-0.9.9.tar.gz", "has_sig": false, "md5_digest": "3825c4264be741d993d15fc874167abb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 508764, "upload_time": "2019-02-22T02:21:19", "url": "https://files.pythonhosted.org/packages/93/9d/bb7474740d0b6c6c9294e9e0fa0cc1bec71fcbce9281b3ac38449dff6da9/cmd2-0.9.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2fc90da8fc136e2a9ab078b20a280229", "sha256": "9f0e6d3b91e618a729a27c4f5818482c71efb03e59ba666b27809e04a8f9d49b" }, "downloads": -1, "filename": "cmd2-0.9.19-py3-none-any.whl", "has_sig": false, "md5_digest": "2fc90da8fc136e2a9ab078b20a280229", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 102988, "upload_time": "2019-10-14T18:05:56", "url": "https://files.pythonhosted.org/packages/a8/d9/e31e255a67f5da8a835bcb2129c8beb1875b820c522e6487608735340c3f/cmd2-0.9.19-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "20f3f76b2aaf36a17372717b469ca969", "sha256": "c81284083d993af18b8fef57d89d854d49d051d4c2c8a8e12d0281e369ac3682" }, "downloads": -1, "filename": "cmd2-0.9.19.tar.gz", "has_sig": false, "md5_digest": "20f3f76b2aaf36a17372717b469ca969", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 555158, "upload_time": "2019-10-14T18:05:59", "url": "https://files.pythonhosted.org/packages/9c/2b/263241eb120357090fcb2acc5245cf528207a73f3c41eb75655f0862f5cd/cmd2-0.9.19.tar.gz" } ] }