{ "info": { "author": "Dong Zhou", "author_email": "zhou.dong@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Software Development :: Version Control :: Git", "Topic :: Terminals", "Topic :: Utilities" ], "description": "[![PyPi version](https://img.shields.io/pypi/v/gita.svg?color=blue)](https://pypi.org/project/gita/)\n[![Build Status](https://travis-ci.org/nosarthur/gita.svg?branch=master)](https://travis-ci.org/nosarthur/gita)\n[![codecov](https://codecov.io/gh/nosarthur/gita/branch/master/graph/badge.svg)](https://codecov.io/gh/nosarthur/gita)\n[![licence](https://img.shields.io/pypi/l/gita.svg)](https://github.com/nosarthur/gita/blob/master/LICENSE)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/gita.svg)](https://pypistats.org/packages/gita)\n[![Chinese](https://img.shields.io/badge/-\u4e2d\u6587-lightgrey.svg)](https://github.com/nosarthur/gita/blob/master/doc/README_CN.md)\n\n```\n _______________________________\n( ____ \\__ __|__ __( ___ )\n| ( \\/ ) ( ) ( | ( ) |\n| | | | | | | (___) |\n| | ____ | | | | | ___ |\n| | \\_ ) | | | | | ( ) |\n| (___) |__) (___ | | | ) ( |\n(_______)_______/ )_( |/ \\| v0.10\n```\n\n# Gita: a command-line tool to manage multiple git repos\n\nThis tool does two things\n\n- display the status of multiple git repos such as branch, modification, commit message side by side\n- delegate git commands/aliases from any working directory\n\nIf several repos compile together, it helps to see their status together too.\nI also hate to change directories to execute git commands.\n\n![gita screenshot](https://github.com/nosarthur/gita/raw/master/doc/screenshot.png)\n\nHere the branch color distinguishes 5 situations between local and remote branches:\n\n- white: local has no remote\n- green: local is the same as remote\n- red: local has diverged from remote\n- purple: local is ahead of remote (good for push)\n- yellow: local is behind remote (good for merge)\n\nThe choice of purple for ahead and yellow for behind is motivated by\n[blueshift](https://en.wikipedia.org/wiki/Blueshift) and [redshift](https://en.wikipedia.org/wiki/Redshift),\nusing green as baseline.\n\nThe additional status symbols denote\n\n- `+`: staged changes\n- `*`: unstaged changes\n- `_`: untracked files/folders\n\nThe bookkeeping sub-commands are\n\n- `gita add `: add repo(s) to `gita`\n- `gita rm `: remove repo(s) from `gita` (won't remove files from disk)\n- `gita ll`: display the status of all repos\n- `gita ls`: display the names of all repos\n- `gita ls `: display the absolute path of one repo\n- `gita rename `: rename a repo\n- `gita info`: display the used and unused information items\n- `gita -v`: display gita version\n\nRepo paths are saved in `$XDG_CONFIG_HOME/gita/repo_path` (most likely `~/.config/gita/repo_path`).\n\nThe delegating sub-commands are of two formats\n\n- `gita [repo-name(s)]`: optional repo input, and no input means all repos.\n- `gita `: required repo name(s) input\n\nBy default, only `fetch` and `pull` take optional input.\n\nIf more than one repos are specified, the git command will run asynchronously,\nwith the exception of `log`, `difftool` and `mergetool`, which require non-trivial user input.\n\n## Customization\n\nCustom delegating sub-commands can be defined in `$XDG_CONFIG_HOME/gita/cmds.yml`\n(most likely `~/.config/gita/cmds.yml`).\nAnd they shadow the default ones if name collisions exist.\n\nDefault delegating sub-commands are defined in\n[cmds.yml](https://github.com/nosarthur/gita/blob/master/gita/cmds.yml).\nFor example, `gita stat ` is registered as\n\n```yaml\nstat:\n cmd: diff --stat\n help: show edit statistics\n```\n\nwhich executes `git diff --stat`.\n\nIf the delegated git command is a single word, the `cmd` tag can be omitted.\nSee `push` for an example.\nTo disable asynchronous execution, set the `disable_async` tag to be `true`.\nSee `difftool` for an example.\n\nIf you want a custom command to behave like `gita fetch`, i.e., to apply\ncommand to all repos if nothing is specified,\nset the `allow_all` option to be `true`.\nFor example, the following snippet creates a new command\n`gita comaster [repo-name(s)]` with optional repo name input.\n\n```yaml\ncomaster:\n cmd: checkout master\n allow_all: true\n help: checkout the master branch\n```\n\nAnother customization is the information items displayed by `gita ll`.\nThe used and unused information items are shown with `gita info` and one can\ncreate `$XDG_CONFIG_HOME/gita/info.yml` to customize it. For example, the\ndefault information items setting corresponds to\n\n```yaml\n- branch\n- commit_msg\n```\n\nTo create your own information items, define a dictionary called `extra_info_items`\nin `$XDG_CONFIG_HOME/gita/extra_repo_info.yml`. It should map strings to functions,\nwhere the strings are the information item names and the functions take repo path\nas input. A trivial example is shown below.\n\n```python\ndef get_delim(path: str) -> str:\n return '|'\n\nextra_info_items = {'delim': get_delim}\n```\n\nIf it works, you will see these extra items in the 'Unused' section of the\n`gita info` output. To use them, edit `$XDG_CONFIG_HOME/gita/extra_repo_info.yml`.\n\n## Superman mode\n\nThe superman mode delegates any git command/alias.\nUsage:\n\n```\ngita super [repo-name(s)] \n```\n\nHere `repo-name(s)` is optional, and absence means all repos.\nFor example,\n\n- `gita super checkout master` puts all repos on the master branch\n- `gita super frontend-repo backend-repo commit -am 'implement a new feature'`\n executes `git commit -am 'implement a new feature'` for `frontend-repo` and `backend-repo`\n\n## Requirements\n\nGita requires Python 3.6 or higher, due to the use of\n[f-string](https://www.python.org/dev/peps/pep-0498/)\nand [asyncio module](https://docs.python.org/3.6/library/asyncio.html).\n\nUnder the hood, gita uses subprocess to run git commands/aliases.\nThus the installed git version may matter.\nI have git `1.8.3.1`, `2.17.2`, and `2.20.1` on my machines, and\ntheir results agree.\n\n## Installation\n\nTo install the latest version, run\n\n```\npip3 install -U gita\n```\n\nIf development mode is preferred,\ndownload the source code and run\n\n```\npip3 install -e \n```\n\nIn either case, calling `gita` in terminal may not work,\nthen you can put the following line in the `.bashrc` file.\n\n```\nalias gita=\"python3 -m gita\"\n```\n\nWindows users may need to enable the ANSI escape sequence in terminal, otherwise\nthe branch color won't work.\nSee [this stackoverflow post](https://stackoverflow.com/questions/51680709/colored-text-output-in-powershell-console-using-ansi-vt100-codes) for details.\n\n## Auto-completion\n\nDownload\n[.gita-completion.bash](https://github.com/nosarthur/gita/blob/master/.gita-completion.bash)\nand source it in `.bashrc`.\n\n## Contributing\n\nTo contribute, you can\n\n- report/fix bugs\n- request/implement features\n- star/recommend this project\n\nTo run tests locally, simply `pytest`.\nMore implementation details are in\n[design.md](https://github.com/nosarthur/gita/blob/master/doc/design.md).\n\nYou can also make donation to me on [patreon](https://www.patreon.com/nosarthur).\nAny amount is greatly appreciated!\n\n## Contributors\n\nnosarthur, mc0239, dgrant, samibh, bestwbr, TpOut, PabloCastellano\n\n## Other multi-repo tools\n\nI haven't tried them but I heard good things about them.\n\n- [myrepos](https://myrepos.branchable.com/)\n- [repo](https://source.android.com/setup/develop/repo)", "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/nosarthur/gita", "keywords": "git,manage multiple repositories", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "gita", "package_url": "https://pypi.org/project/gita/", "platform": "linux", "project_url": "https://pypi.org/project/gita/", "project_urls": { "Homepage": "https://github.com/nosarthur/gita" }, "release_url": "https://pypi.org/project/gita/0.10.3/", "requires_dist": null, "requires_python": "~=3.6", "summary": "Manage multiple git repos", "version": "0.10.3" }, "last_serial": 5537988, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "36f16440a23c7ae171af8104501aaf7d", "sha256": "a1364fa4aa8918a21542f70ca05dc90c2c60a8e0f4fc494e62fd2f3d41789ef4" }, "downloads": -1, "filename": "gita-0.10.0.tar.gz", "has_sig": false, "md5_digest": "36f16440a23c7ae171af8104501aaf7d", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 13498, "upload_time": "2019-06-14T21:26:11", "url": "https://files.pythonhosted.org/packages/5e/55/99133236ab95dc94844dadfe617c089b07f8a774610380a19b6876a4bcd8/gita-0.10.0.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "ca93297cb481d5092b65f29b80ea35a2", "sha256": "7baa47a450923a175fc759ee01081c6ce8f186ff1607e598efe121406cbfb2a6" }, "downloads": -1, "filename": "gita-0.10.1.tar.gz", "has_sig": false, "md5_digest": "ca93297cb481d5092b65f29b80ea35a2", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 13198, "upload_time": "2019-06-17T03:17:02", "url": "https://files.pythonhosted.org/packages/ef/36/78f4b5d97238593908823e018c9617efb158075ad5d1ac6d20310b67bafb/gita-0.10.1.tar.gz" } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "7519f25c0d19b51726652c88b3a130cc", "sha256": "f2ffc788649a8696271551200713765a790e9b21a5971812198818f83bf7e137" }, "downloads": -1, "filename": "gita-0.10.2.tar.gz", "has_sig": false, "md5_digest": "7519f25c0d19b51726652c88b3a130cc", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 13504, "upload_time": "2019-06-21T20:01:31", "url": "https://files.pythonhosted.org/packages/59/08/91d5acdddc165072c426108e6ad42098b2a6bf7496313285bf3628c01c41/gita-0.10.2.tar.gz" } ], "0.10.3": [ { "comment_text": "", "digests": { "md5": "73cb4075e8c211dda82041b3364a2553", "sha256": "3787a296b66f68a82decd9e3ee40a89b08c06314fd718eace78001de103a0b48" }, "downloads": -1, "filename": "gita-0.10.3.tar.gz", "has_sig": false, "md5_digest": "73cb4075e8c211dda82041b3364a2553", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 13612, "upload_time": "2019-07-16T02:44:34", "url": "https://files.pythonhosted.org/packages/38/0b/f98600d12a1f3579c56a91030ac30af37b23607c3faf2c4dd9b24ee812cd/gita-0.10.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "109a5fbbc972722336dabadd6974f226", "sha256": "a83da4d5c6cf5171805d8b9e4878898be8a59ec004ce2f572cc16f39fe4e9921" }, "downloads": -1, "filename": "gita-0.4.tar.gz", "has_sig": false, "md5_digest": "109a5fbbc972722336dabadd6974f226", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3835, "upload_time": "2018-05-09T23:35:07", "url": "https://files.pythonhosted.org/packages/aa/01/fab6e85f51df589ed38e4844677a208e9e0423c0c5c801bd818a32458cee/gita-0.4.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "9dff876be8ca97200b8e7d1e4956fe02", "sha256": "fb45843e397756da811c970d1df46e61c7c12c599bd97ced6598bc87cefb7720" }, "downloads": -1, "filename": "gita-0.4.1.tar.gz", "has_sig": false, "md5_digest": "9dff876be8ca97200b8e7d1e4956fe02", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4096, "upload_time": "2018-05-10T00:08:05", "url": "https://files.pythonhosted.org/packages/48/f8/7ed3bd3ce54e32358c0767158f23c29fd57d937ee99b803d34451b5984b9/gita-0.4.1.tar.gz" } ], "0.4.10": [ { "comment_text": "", "digests": { "md5": "cee5f6eb9c1f6c8d2b160615d44842c2", "sha256": "0713e1ef42c300343200100e45aa6ccbc93e782e846d6b20dd39d1aa0754e82d" }, "downloads": -1, "filename": "gita-0.4.10.tar.gz", "has_sig": false, "md5_digest": "cee5f6eb9c1f6c8d2b160615d44842c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4584, "upload_time": "2019-01-22T03:17:39", "url": "https://files.pythonhosted.org/packages/85/e8/bf378a6a439d0051a665f7e9158c476e83912934f1f06962e895a34df069/gita-0.4.10.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "8231531466ce0dce115e9b1fefb6e641", "sha256": "c9e8479b0e95cfceee4a7f72b8e6dd12db1458c380e5639ccf47cfd9b3fac560" }, "downloads": -1, "filename": "gita-0.4.2.tar.gz", "has_sig": false, "md5_digest": "8231531466ce0dce115e9b1fefb6e641", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4088, "upload_time": "2018-05-22T01:51:03", "url": "https://files.pythonhosted.org/packages/fe/46/52620a4fcc2da2373e4b27954b05e348f2d77ea7300f67c8c295900659fc/gita-0.4.2.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "5eff7189a35413b124ee53626378adc9", "sha256": "cc30e758820b99cd963c7e895c52bbeef6cf555ab258a3aef416f0f4b9133546" }, "downloads": -1, "filename": "gita-0.4.4.tar.gz", "has_sig": false, "md5_digest": "5eff7189a35413b124ee53626378adc9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4205, "upload_time": "2019-01-12T16:38:55", "url": "https://files.pythonhosted.org/packages/8a/e5/9e8846541bbc7d2331e43f75445f711a9e579222062126ebc558055dcc5f/gita-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "d9447d374dad6067b080c1937a47b1c4", "sha256": "276273fa246758303cb644959214c393062446a63a533bd5fe87e826bfd872cc" }, "downloads": -1, "filename": "gita-0.4.5.tar.gz", "has_sig": false, "md5_digest": "d9447d374dad6067b080c1937a47b1c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4187, "upload_time": "2019-01-12T16:50:53", "url": "https://files.pythonhosted.org/packages/9c/cb/4505524383268e0963c7fb70272a1bafddad380367794b122fef18ab11e1/gita-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "1a6225c65ec71e8b8dfa45a2580e2f06", "sha256": "ec9f0d236789c21624563a4ba30f6af461cba09dd18f4e84c53aed9cbdfeb2a8" }, "downloads": -1, "filename": "gita-0.4.6.tar.gz", "has_sig": false, "md5_digest": "1a6225c65ec71e8b8dfa45a2580e2f06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4311, "upload_time": "2019-01-14T01:56:27", "url": "https://files.pythonhosted.org/packages/2f/13/d2a87b0209e8b85910138759d4a275eaa10e3f4387657e880ab539e1e7c8/gita-0.4.6.tar.gz" } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "af9e347da29528577c71b78995a436c1", "sha256": "edbacc8af5cf653786e61668d76832e3313d8d061da6934d60b0ebaa55c01084" }, "downloads": -1, "filename": "gita-0.4.7.tar.gz", "has_sig": false, "md5_digest": "af9e347da29528577c71b78995a436c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4245, "upload_time": "2019-01-15T02:08:42", "url": "https://files.pythonhosted.org/packages/e2/34/6ddcce34a2235ac1fcf0fe9065cc49bb03d42b54ceeae67ffa943b277bce/gita-0.4.7.tar.gz" } ], "0.4.8": [ { "comment_text": "", "digests": { "md5": "32a605468f727b9a65e98d2f81de5d35", "sha256": "8893e90be2dbe866033f592027170efa603b9dc1bdcc224c221e92fd84a90372" }, "downloads": -1, "filename": "gita-0.4.8.tar.gz", "has_sig": false, "md5_digest": "32a605468f727b9a65e98d2f81de5d35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4402, "upload_time": "2019-01-20T04:18:38", "url": "https://files.pythonhosted.org/packages/e1/7d/1a3e0ba3cd8e04739a4f1008d16bc2fc57c228360b32f3db1721cc9ce017/gita-0.4.8.tar.gz" } ], "0.4.9": [ { "comment_text": "", "digests": { "md5": "b9e0918da9955612c592ea48f8ff9959", "sha256": "effb0f4c1d31b310ca1875046e0cec19ba49f1255cbbac65a618496c92cbebe2" }, "downloads": -1, "filename": "gita-0.4.9.tar.gz", "has_sig": false, "md5_digest": "b9e0918da9955612c592ea48f8ff9959", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4514, "upload_time": "2019-01-21T01:29:04", "url": "https://files.pythonhosted.org/packages/3c/0e/df11ce4219bb23ac957b6ed33e8dc375718e63343c4dee6590697804c6ca/gita-0.4.9.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "f9441efb6097386bb02884cdae0d38b2", "sha256": "d8566feab363ae10b71d24aeb19f0b84680428b3a6e3f5257a086046e029f357" }, "downloads": -1, "filename": "gita-0.5.1.tar.gz", "has_sig": false, "md5_digest": "f9441efb6097386bb02884cdae0d38b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4681, "upload_time": "2019-01-24T03:44:45", "url": "https://files.pythonhosted.org/packages/8e/02/ba121b9fb3131224d1a4db1ff28c0fb83ad162a089943c72c842be8d57a8/gita-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "6cc9e239a83dee1d7fbbc94be82bf903", "sha256": "7295081d647669fd70ada752b84d801a167c8aada0dfd891c1907b8463822d74" }, "downloads": -1, "filename": "gita-0.5.2.tar.gz", "has_sig": false, "md5_digest": "6cc9e239a83dee1d7fbbc94be82bf903", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4594, "upload_time": "2019-01-24T04:45:40", "url": "https://files.pythonhosted.org/packages/88/69/0a3d6bf6133d9d48b69b19f00ee2d9d30c6684df3788c3133103f5640b3c/gita-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "5c934a0663b22d2b001691b2d7557c66", "sha256": "1e0a3491f1c13f590cf5ad99d69138150011851dbe831becf072d0836ab8a5d9" }, "downloads": -1, "filename": "gita-0.5.3.tar.gz", "has_sig": false, "md5_digest": "5c934a0663b22d2b001691b2d7557c66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4799, "upload_time": "2019-01-24T05:02:58", "url": "https://files.pythonhosted.org/packages/af/ab/40a44a95d2e117ed6634bd9a8626fe2b6a3045230c61c7342d72605b4e8e/gita-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "c264ea895e60a3cb45b9e806c74fa161", "sha256": "46919348e83fd56575ee854e4879a49f0a56fd60addf028d4ab6826fe2813efc" }, "downloads": -1, "filename": "gita-0.5.4.tar.gz", "has_sig": false, "md5_digest": "c264ea895e60a3cb45b9e806c74fa161", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4838, "upload_time": "2019-01-24T05:18:19", "url": "https://files.pythonhosted.org/packages/2c/25/dfeb5af95fa0440f82e4726657419b354967c7209f36904c307a0ba07768/gita-0.5.4.tar.gz" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "f5dcd482c7684132adcf33fea1f6512e", "sha256": "1ca669c588ea6ee15487a426183d3cfc3b9fd4ef14ec02d34acb255ad7a7913e" }, "downloads": -1, "filename": "gita-0.5.5.tar.gz", "has_sig": false, "md5_digest": "f5dcd482c7684132adcf33fea1f6512e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4824, "upload_time": "2019-01-24T05:23:56", "url": "https://files.pythonhosted.org/packages/4f/94/fff0297837f3d39473703d1469a785ecb35e506e5d158d6615f771d05bfb/gita-0.5.5.tar.gz" } ], "0.5.6": [ { "comment_text": "", "digests": { "md5": "306395c7bfdaa216361cfda122560d69", "sha256": "5eb07dddd5376e3be9e9e4fabb4031b9320e80a98af7138a56796b028c8ed229" }, "downloads": -1, "filename": "gita-0.5.6.tar.gz", "has_sig": false, "md5_digest": "306395c7bfdaa216361cfda122560d69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4918, "upload_time": "2019-01-24T22:50:38", "url": "https://files.pythonhosted.org/packages/84/3c/47383c4d12260f6cfe833ccf44f096fa13a1d53822942cc4dcc805f6757f/gita-0.5.6.tar.gz" } ], "0.5.7": [ { "comment_text": "", "digests": { "md5": "8e9e4655cc33dfe9dfc411d163933966", "sha256": "3daf8c8d3332999a4e2896bfe5063086196b8cb9cf0f09fd43706a687c14c997" }, "downloads": -1, "filename": "gita-0.5.7.tar.gz", "has_sig": false, "md5_digest": "8e9e4655cc33dfe9dfc411d163933966", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5100, "upload_time": "2019-01-24T23:23:14", "url": "https://files.pythonhosted.org/packages/7d/82/705973ec4cfcdb508877e142670e137734ddc89eaa62401c3d2aa9bdb3c0/gita-0.5.7.tar.gz" } ], "0.5.8": [ { "comment_text": "", "digests": { "md5": "d2046e4c747e2928a56297b81b3aad9b", "sha256": "05736d5fe18d4cae63a74cbd47a1be9b2ca45d8ae71e598bbc502c481d5fcc1b" }, "downloads": -1, "filename": "gita-0.5.8.tar.gz", "has_sig": false, "md5_digest": "d2046e4c747e2928a56297b81b3aad9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5139, "upload_time": "2019-01-26T03:47:04", "url": "https://files.pythonhosted.org/packages/30/e7/48eda62fbd441c0db0727807272af3b8584184c46b533179b16865275a5e/gita-0.5.8.tar.gz" } ], "0.5.9": [ { "comment_text": "", "digests": { "md5": "62c9e488397ba2c5fc8ca3984bc20f3e", "sha256": "41d8beba76e70f87c676d4709a7ad3af8a2339940f5d33626d2078340f05d43d" }, "downloads": -1, "filename": "gita-0.5.9.tar.gz", "has_sig": false, "md5_digest": "62c9e488397ba2c5fc8ca3984bc20f3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5281, "upload_time": "2019-02-01T15:58:48", "url": "https://files.pythonhosted.org/packages/97/d8/4d97c431da932897eafd3ce9d425042aa7eae270bba95902672740aee9eb/gita-0.5.9.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "3ea98cb3a6553fb30d73af68b12fae2d", "sha256": "991979cbf981588146dddc97d54ebb34aa946204b364397f1c972cb5ed2f6128" }, "downloads": -1, "filename": "gita-0.6.0.tar.gz", "has_sig": false, "md5_digest": "3ea98cb3a6553fb30d73af68b12fae2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5466, "upload_time": "2019-02-03T22:20:25", "url": "https://files.pythonhosted.org/packages/ad/6f/027418e9eab8e585b9799e23eeb470ce8554ca2b265e6cae7d4517c779fa/gita-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "74e82f0a3a0df610bdc8705809690f79", "sha256": "948070ae36a40e19e0059cf80ec43d4ce78d1eaff14a3cc17edcd80924fadb57" }, "downloads": -1, "filename": "gita-0.6.1.tar.gz", "has_sig": false, "md5_digest": "74e82f0a3a0df610bdc8705809690f79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5616, "upload_time": "2019-02-03T22:41:52", "url": "https://files.pythonhosted.org/packages/2e/a1/dd0e8a03654270978cad01a5bfb70289a83ff203fad406ae032cb4b5b58f/gita-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "93970fd0d687044d3c85afca30195926", "sha256": "c20203e5c6c9604a13469296127e5c36f42e3eaad8c0b4f06dea8813cb8b59a4" }, "downloads": -1, "filename": "gita-0.6.2.tar.gz", "has_sig": false, "md5_digest": "93970fd0d687044d3c85afca30195926", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5588, "upload_time": "2019-02-03T23:41:13", "url": "https://files.pythonhosted.org/packages/87/57/a2022a8d3f1557795075f0b2466c15be3d0300804947a525f03eb954b463/gita-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "aa3065b0ab66231b0821e6095573c131", "sha256": "fa671bec666009d40124144ecfd4cf0b67e0d4060bdc2f43bdf9f58ae3eb0ca3" }, "downloads": -1, "filename": "gita-0.6.3.tar.gz", "has_sig": false, "md5_digest": "aa3065b0ab66231b0821e6095573c131", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5585, "upload_time": "2019-02-04T04:17:18", "url": "https://files.pythonhosted.org/packages/44/50/64599bcd1ba4d75fa50816770692db90e6e609e8a314b07f5383a16f58d2/gita-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "f4e2c879e2dedbfae3d76a4d4108f1d8", "sha256": "86a24db75eeaa71181696f5bcf43b8611f7f7f97b9b5d1d6609dea714d46857b" }, "downloads": -1, "filename": "gita-0.6.4.tar.gz", "has_sig": false, "md5_digest": "f4e2c879e2dedbfae3d76a4d4108f1d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5581, "upload_time": "2019-02-04T04:22:30", "url": "https://files.pythonhosted.org/packages/6b/14/e1156fd194908d6815a0b539057b0c5580b7121bf65135d3735c21187591/gita-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "a178ed9c7aaa6b8e55e4ab45aa6fa249", "sha256": "4112d014366908060b04a0a1aa22042a3546ccbd656fe101211acb09dc568eba" }, "downloads": -1, "filename": "gita-0.6.5.tar.gz", "has_sig": false, "md5_digest": "a178ed9c7aaa6b8e55e4ab45aa6fa249", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5863, "upload_time": "2019-02-05T02:35:16", "url": "https://files.pythonhosted.org/packages/6e/b8/0b80aa9ff5456ffd5b55ea137b4ecba23e6e3444ff4c0ef68668517b23a4/gita-0.6.5.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "c7e275efe1cd313c3c1e22e5440d7fcd", "sha256": "7df48234761a119104cdac4638327b1197b2741740ab4b1fb86c66012c592766" }, "downloads": -1, "filename": "gita-0.6.6.tar.gz", "has_sig": false, "md5_digest": "c7e275efe1cd313c3c1e22e5440d7fcd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5919, "upload_time": "2019-02-05T05:34:35", "url": "https://files.pythonhosted.org/packages/18/c6/d640a4681a58cebf223efa924bc04c04d3c00a8a7637d881649936e713bf/gita-0.6.6.tar.gz" } ], "0.6.7": [ { "comment_text": "", "digests": { "md5": "6fba6e3db9b99314bffd3f007e20588c", "sha256": "8d327c574e36c47ceea9d81f8417515b27109ced781f2f31424a44d4981ff053" }, "downloads": -1, "filename": "gita-0.6.7.tar.gz", "has_sig": false, "md5_digest": "6fba6e3db9b99314bffd3f007e20588c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5952, "upload_time": "2019-02-06T02:05:46", "url": "https://files.pythonhosted.org/packages/f7/23/00c43dba35d54f40b1f78b5528b9f9b534d7e16969121bba7fe9152a7e9c/gita-0.6.7.tar.gz" } ], "0.6.8": [ { "comment_text": "", "digests": { "md5": "62142c4e9dc631ac4f30777eca668ada", "sha256": "2aaa59e079e6bad803056197c7f9a83d73975e4a5938572f523b61d35e8895c7" }, "downloads": -1, "filename": "gita-0.6.8.tar.gz", "has_sig": false, "md5_digest": "62142c4e9dc631ac4f30777eca668ada", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6089, "upload_time": "2019-02-06T04:32:20", "url": "https://files.pythonhosted.org/packages/c2/59/19f88ea1861bd6c4809b247ac7b89f153655319a902a360ba91a7be05098/gita-0.6.8.tar.gz" } ], "0.6.9": [ { "comment_text": "", "digests": { "md5": "0839170740b30c24c1c087441a3b59bf", "sha256": "c188769357b2234d656f3869d3f0d87aa8db88c8307b1a3e513a04d6a675d626" }, "downloads": -1, "filename": "gita-0.6.9.tar.gz", "has_sig": false, "md5_digest": "0839170740b30c24c1c087441a3b59bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6100, "upload_time": "2019-02-06T04:47:09", "url": "https://files.pythonhosted.org/packages/10/57/dd6d238ebca579b281ed6fbb3c5a68a78d67a0bf6d53503b588c6ccf93d5/gita-0.6.9.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "f662a7e64781690d254f54a3a148e19d", "sha256": "80b28853645846cd26b0ee9e3b3574e7670af831d6b5c9248a338b0d4407046a" }, "downloads": -1, "filename": "gita-0.7.0.tar.gz", "has_sig": false, "md5_digest": "f662a7e64781690d254f54a3a148e19d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6702, "upload_time": "2019-02-07T01:17:00", "url": "https://files.pythonhosted.org/packages/7d/44/362e1e4cf8a83ce8768a3d62cdc0f9769f15fe67118112804c4978174fda/gita-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "474a1b5caa25e07a79b1f0130055cc8a", "sha256": "2989ebe82869e18462acf4461bda666f25d4db06b59e4cbdac2a3ed5d1bef354" }, "downloads": -1, "filename": "gita-0.7.1.tar.gz", "has_sig": false, "md5_digest": "474a1b5caa25e07a79b1f0130055cc8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7084, "upload_time": "2019-02-08T04:48:31", "url": "https://files.pythonhosted.org/packages/cc/ad/ed54b13f140fceeeeb0ee4351b3b1d6b20f9eeab57f7070df164ae03342e/gita-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "f781f5b0e93b9f6f5fd9165241db46d0", "sha256": "20076ca26b019af74485a9a7f7fbfda5558007253af571bc6e94ea71aa095b17" }, "downloads": -1, "filename": "gita-0.7.2.tar.gz", "has_sig": false, "md5_digest": "f781f5b0e93b9f6f5fd9165241db46d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7353, "upload_time": "2019-02-09T01:41:23", "url": "https://files.pythonhosted.org/packages/4d/47/9983db0221b8bc7250473a3a5a1e34566f4b4e3a4ac111edfd637bdc2832/gita-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "736792cc932849f27ee160c48bf91b0b", "sha256": "7968adb344a38e90bf24edfbadc01f3add753de1d1a9cd4e8d23148484939831" }, "downloads": -1, "filename": "gita-0.7.3.tar.gz", "has_sig": false, "md5_digest": "736792cc932849f27ee160c48bf91b0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7406, "upload_time": "2019-02-11T03:55:35", "url": "https://files.pythonhosted.org/packages/97/c4/0050afe8608e6d69764f65e0950720f6b33606fb5cd0dbfb581a49250917/gita-0.7.3.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "ec39f6257aed1eedf460558141b35ef7", "sha256": "581822f7d261a950e817513f5a012d50d7e87e0ef58abfb0b1744c8d0a2ff13c" }, "downloads": -1, "filename": "gita-0.7.4.tar.gz", "has_sig": false, "md5_digest": "ec39f6257aed1eedf460558141b35ef7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7469, "upload_time": "2019-02-13T05:20:08", "url": "https://files.pythonhosted.org/packages/74/a0/29e20a859160b68025d80b6ec41e7f50ee94ebe1d18d1b634a71019ef7cb/gita-0.7.4.tar.gz" } ], "0.7.5": [ { "comment_text": "", "digests": { "md5": "53b0daab590c88515b1d791baf879bae", "sha256": "8290ce6bed883f168aca82c62ff8a243e43ae9a3f69237224cff6b778df850a8" }, "downloads": -1, "filename": "gita-0.7.5.tar.gz", "has_sig": false, "md5_digest": "53b0daab590c88515b1d791baf879bae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7657, "upload_time": "2019-02-14T00:55:58", "url": "https://files.pythonhosted.org/packages/2e/ac/a6e9237ccba8740a2dc64bf0818393dffdabd9bd507b9fea7ca42a113cec/gita-0.7.5.tar.gz" } ], "0.7.6": [ { "comment_text": "", "digests": { "md5": "ed4ff076a5e94081863baf025bb03c3c", "sha256": "94809296e90ef2244aa3fa7faf2c02bf617ad16fa3d400a5f3e17698a31bc5af" }, "downloads": -1, "filename": "gita-0.7.6.tar.gz", "has_sig": false, "md5_digest": "ed4ff076a5e94081863baf025bb03c3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7715, "upload_time": "2019-02-14T21:09:31", "url": "https://files.pythonhosted.org/packages/91/af/5df8ae844189fc850e65d207a98597dd2aedfc15f8eac28cba7220148bfe/gita-0.7.6.tar.gz" } ], "0.7.7": [ { "comment_text": "", "digests": { "md5": "1328dda03601397503871494835c0bac", "sha256": "b2b78f7a82170f11dfbcce22a30640d12c8ef96d70cba40c2c465b953825f9cf" }, "downloads": -1, "filename": "gita-0.7.7.tar.gz", "has_sig": false, "md5_digest": "1328dda03601397503871494835c0bac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7715, "upload_time": "2019-02-15T03:38:51", "url": "https://files.pythonhosted.org/packages/b0/d8/fba2a68bbb6c1dc9419373ae895c053807bbaf3e7ba6f2cd047fc8fda7fb/gita-0.7.7.tar.gz" } ], "0.7.8": [ { "comment_text": "", "digests": { "md5": "c548072a1b8c280754a6fee280981abd", "sha256": "d6cbd2284571c5a62c116b5c473b38ce95eed020eb9481f5475ede193edbeef6" }, "downloads": -1, "filename": "gita-0.7.8.tar.gz", "has_sig": false, "md5_digest": "c548072a1b8c280754a6fee280981abd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7833, "upload_time": "2019-02-16T02:12:08", "url": "https://files.pythonhosted.org/packages/94/63/ff11a84fa71bba2d22cc285b78b4c50a4b2c8cafa10e31dce2b5558a13b1/gita-0.7.8.tar.gz" } ], "0.7.9": [ { "comment_text": "", "digests": { "md5": "367bbe24915d9be4457c11ffe1f405a1", "sha256": "982954176bb3c00dc93a202104b0b4ae6a30948d57b84057dcd564c749523ae1" }, "downloads": -1, "filename": "gita-0.7.9.tar.gz", "has_sig": false, "md5_digest": "367bbe24915d9be4457c11ffe1f405a1", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 8067, "upload_time": "2019-02-19T02:54:19", "url": "https://files.pythonhosted.org/packages/74/d4/e034abecfe68a2e2680d7eb1503c1694778e62f4c5c5cc9b6aa490035adb/gita-0.7.9.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "77fc9ee605f81c9feb0befb103124172", "sha256": "87e9f3f63023e90b6240fc90964e383f4f1f479772c3ca0f1bf4ee519eac6cf1" }, "downloads": -1, "filename": "gita-0.8.0.tar.gz", "has_sig": false, "md5_digest": "77fc9ee605f81c9feb0befb103124172", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 8076, "upload_time": "2019-02-20T00:59:10", "url": "https://files.pythonhosted.org/packages/3e/89/49ea2fde7eb1e14617f2f2be215431f723a015ad919d2744525f38a09a9c/gita-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "873413d64aa56227f6bffd59d72af1c2", "sha256": "eafcc47c86ae6c905fb6d874af838ef9bb2f4c81963643629189d312b57cb59e" }, "downloads": -1, "filename": "gita-0.8.1.tar.gz", "has_sig": false, "md5_digest": "873413d64aa56227f6bffd59d72af1c2", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 8217, "upload_time": "2019-02-23T17:29:40", "url": "https://files.pythonhosted.org/packages/a7/88/8256986e3e516648da098ca0436da4c0bdbf00ecc6b78873745a80549ee1/gita-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "0874ec298874314b006befb206c7e60c", "sha256": "737635b306ad3239f3309b3190477cd04e99e2f64c1168f36c06f52106b5579a" }, "downloads": -1, "filename": "gita-0.8.2.tar.gz", "has_sig": false, "md5_digest": "0874ec298874314b006befb206c7e60c", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 8251, "upload_time": "2019-02-26T12:02:22", "url": "https://files.pythonhosted.org/packages/69/e0/9509f8abc9b47e394d9f66c0eee3ed8709d1f5246cad5b5c553712005d83/gita-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "477b07ff3fae656e05967a7ef09fd235", "sha256": "7456f0a9221d57e9f06eea1530b37978fd7fd3c38380d511a7b2d9392e9763f9" }, "downloads": -1, "filename": "gita-0.8.3.tar.gz", "has_sig": false, "md5_digest": "477b07ff3fae656e05967a7ef09fd235", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 9521, "upload_time": "2019-03-05T06:28:35", "url": "https://files.pythonhosted.org/packages/2d/c0/40990daeb360124e169485fa0248f0e6086073341b4ba1bcb80a171a5a9d/gita-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "02d852557f4eb043357a42003d6e3f82", "sha256": "f4793b8b772714aa521346ef0cc8f8b4010b6b2e1a3df37bbafc7636618e5031" }, "downloads": -1, "filename": "gita-0.8.4.tar.gz", "has_sig": false, "md5_digest": "02d852557f4eb043357a42003d6e3f82", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 8479, "upload_time": "2019-03-05T06:33:44", "url": "https://files.pythonhosted.org/packages/f6/5c/8852990a3a6c6f5341af8608f1042b555a1871d9be5ad37c8e3c5d1f225d/gita-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "535824344a8ff4e8421f97bc29ba74fd", "sha256": "92276e8cbb635eeef4a0cd588054d4ccc8771bc1d4b2777984b5d2f740500f06" }, "downloads": -1, "filename": "gita-0.8.5.tar.gz", "has_sig": false, "md5_digest": "535824344a8ff4e8421f97bc29ba74fd", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 8475, "upload_time": "2019-03-15T11:34:05", "url": "https://files.pythonhosted.org/packages/ce/4f/f44f107de7b59926bed85a3930b9510a34726b02ac6b868558180e277a23/gita-0.8.5.tar.gz" } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "1fd103a5ad824a7443c0f9eaf38b92d4", "sha256": "2b16c4d4af31683e6f976dac56184c39bb9a2c728840ba658cd75cad417d9ea1" }, "downloads": -1, "filename": "gita-0.8.6.tar.gz", "has_sig": false, "md5_digest": "1fd103a5ad824a7443c0f9eaf38b92d4", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 9488, "upload_time": "2019-03-15T20:58:30", "url": "https://files.pythonhosted.org/packages/62/14/8fc80735eb49930161a4bba998cfb51644db2794e4dd1921d0fbde250089/gita-0.8.6.tar.gz" } ], "0.8.7": [ { "comment_text": "", "digests": { "md5": "d839ce6666547f03a48532fa889acb40", "sha256": "5d11053694c269132e17dda3b13019759ba057134fa943373c2358dbdef85227" }, "downloads": -1, "filename": "gita-0.8.7.tar.gz", "has_sig": false, "md5_digest": "d839ce6666547f03a48532fa889acb40", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 9634, "upload_time": "2019-03-24T03:11:18", "url": "https://files.pythonhosted.org/packages/e9/c6/c742e9f2b4e16792f33f760a23acb7740d54a62cf9ae9307934797cf3d7a/gita-0.8.7.tar.gz" } ], "0.8.8": [ { "comment_text": "", "digests": { "md5": "7548f7632b39e372ce03ee5aeaa168c0", "sha256": "474381c5221af119da4b5a1a39c9eb423be6b3fd759199d085127977acff8a95" }, "downloads": -1, "filename": "gita-0.8.8.tar.gz", "has_sig": false, "md5_digest": "7548f7632b39e372ce03ee5aeaa168c0", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 9730, "upload_time": "2019-04-02T05:02:56", "url": "https://files.pythonhosted.org/packages/91/9d/86a4667dd88d04d878d3060a640029090b185c7f395e5e52669b906eda61/gita-0.8.8.tar.gz" } ], "0.8.9": [ { "comment_text": "", "digests": { "md5": "9b5355046501eeb6255e98811bfa302d", "sha256": "7d03d4777c51a5a60f5a6cce53a6a8e795daf2cb3677c8d8d50027ebf4f0ca73" }, "downloads": -1, "filename": "gita-0.8.9.tar.gz", "has_sig": false, "md5_digest": "9b5355046501eeb6255e98811bfa302d", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 9026, "upload_time": "2019-04-07T00:22:31", "url": "https://files.pythonhosted.org/packages/eb/5e/84064f0fdc68aac709c552eba87b031292a6ab611147eb6ea919759ec608/gita-0.8.9.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "f163e4da14d84a06b0d9314094c10a5f", "sha256": "36fc7c56eadd004ef82c00673bb21252c4f563e549c2725af9eb6a93feb00e6b" }, "downloads": -1, "filename": "gita-0.9.0.tar.gz", "has_sig": false, "md5_digest": "f163e4da14d84a06b0d9314094c10a5f", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 9965, "upload_time": "2019-04-09T20:01:23", "url": "https://files.pythonhosted.org/packages/b0/2c/14801d353c447b8bcdbf4b98a9fafe90dbf56b2098edfda440c65e0a382e/gita-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "65e1d58096513d61e88c6935c39e9127", "sha256": "8d3fd761c31d8f6ec6561537f6ea361d63ffa63d32aca7125aabf62833313068" }, "downloads": -1, "filename": "gita-0.9.1.tar.gz", "has_sig": false, "md5_digest": "65e1d58096513d61e88c6935c39e9127", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 9899, "upload_time": "2019-04-09T20:15:20", "url": "https://files.pythonhosted.org/packages/f0/f3/545e167d3961f596b57e7b9b9b8853fa891e2aad2272b6f817579e753aa2/gita-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "2212c49b3dc99873a4cb1554d95bd0ea", "sha256": "208f740234768a966fdaa039e606e9c813974f22ac9f7de13b45e9cc08c6ccab" }, "downloads": -1, "filename": "gita-0.9.2.tar.gz", "has_sig": false, "md5_digest": "2212c49b3dc99873a4cb1554d95bd0ea", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 9981, "upload_time": "2019-04-10T02:05:45", "url": "https://files.pythonhosted.org/packages/97/32/cb6d59537c7f48ef04f571b40662fb339cefda72ed385a7486cefafe4c59/gita-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "40aee3bb768612372af510948923eaa0", "sha256": "7a15eef1663583f7e2f465a9e675534f94d9914f5acce8885cd0d7148666feaa" }, "downloads": -1, "filename": "gita-0.9.3.tar.gz", "has_sig": false, "md5_digest": "40aee3bb768612372af510948923eaa0", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 9158, "upload_time": "2019-05-09T00:25:43", "url": "https://files.pythonhosted.org/packages/8a/7c/d643dfd46d16c9c735e0594461ad5fd612d61a13c73f7bd76d54b981e811/gita-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "5acccf0867e7831a5775427ecddefc4b", "sha256": "353ebe9e38c30b4957fde45d213be55cc22263ee98dcdf9bc07a8d17908b7ec0" }, "downloads": -1, "filename": "gita-0.9.4.tar.gz", "has_sig": false, "md5_digest": "5acccf0867e7831a5775427ecddefc4b", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 10158, "upload_time": "2019-05-10T01:06:20", "url": "https://files.pythonhosted.org/packages/8f/35/1646a69f4657e2fd357b9686229b890dfbc39cf404ba3089350d2442b36d/gita-0.9.4.tar.gz" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "d52b6f90fbdb83e50217f287f040b5ee", "sha256": "d8b21e6e5616095d0d48017a486e52a2ea67dea83abe40dc16a8e66b3c0c10d9" }, "downloads": -1, "filename": "gita-0.9.5.tar.gz", "has_sig": false, "md5_digest": "d52b6f90fbdb83e50217f287f040b5ee", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 10161, "upload_time": "2019-05-10T01:13:40", "url": "https://files.pythonhosted.org/packages/e8/fd/51ab0b5f1e4317b3087aaf3cf2998fbcba988c87886e6ab27b086fea37a9/gita-0.9.5.tar.gz" } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "e22a204c8a1248dbc257eb1679b034d6", "sha256": "cb0b40602041ed578d1beef0b751eb799f576e111595534ce77dcd1d7e25e8fd" }, "downloads": -1, "filename": "gita-0.9.6.tar.gz", "has_sig": false, "md5_digest": "e22a204c8a1248dbc257eb1679b034d6", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 10192, "upload_time": "2019-05-11T02:54:46", "url": "https://files.pythonhosted.org/packages/7e/5b/2b920d1c84907573642ead6106918418ab769c5f8ffbb4c0d201b1cc46c1/gita-0.9.6.tar.gz" } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "af94089a25a78b12851d246a2ac09619", "sha256": "6a94414c0080acca6e2367b1ddc4047c5ca95ee29e8732cde36a182255f73065" }, "downloads": -1, "filename": "gita-0.9.7.tar.gz", "has_sig": false, "md5_digest": "af94089a25a78b12851d246a2ac09619", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 10208, "upload_time": "2019-05-11T03:11:11", "url": "https://files.pythonhosted.org/packages/a2/f3/f53c6090355df2c92a98db2d4b77cb0da2956ade941a2519ceb8cc6dfd99/gita-0.9.7.tar.gz" } ], "0.9.8": [ { "comment_text": "", "digests": { "md5": "484fbdbe627002c1c1d865669991ee3d", "sha256": "a719ee6b21e700990d97ce33efc21f18927db6cccb8175ab2bd501c9b5373538" }, "downloads": -1, "filename": "gita-0.9.8.tar.gz", "has_sig": false, "md5_digest": "484fbdbe627002c1c1d865669991ee3d", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 10584, "upload_time": "2019-06-14T04:48:53", "url": "https://files.pythonhosted.org/packages/08/74/f22a1b2f90d56fbe2c376a3b676b3863eb1f5b17712bf29abb3b48d8ec8d/gita-0.9.8.tar.gz" } ], "0.9.9": [ { "comment_text": "", "digests": { "md5": "651e3fbfe3273608b0eca8c36a1d5f0e", "sha256": "fb55dd8000773f32dca28d03164f622f2f4632925de6cdd0de79e9e86d7222ea" }, "downloads": -1, "filename": "gita-0.9.9.tar.gz", "has_sig": false, "md5_digest": "651e3fbfe3273608b0eca8c36a1d5f0e", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 10573, "upload_time": "2019-06-14T13:51:55", "url": "https://files.pythonhosted.org/packages/1d/46/236c7ff23d6debdb85880ac7785267931325f3896b58d56f306e7a592a0f/gita-0.9.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "73cb4075e8c211dda82041b3364a2553", "sha256": "3787a296b66f68a82decd9e3ee40a89b08c06314fd718eace78001de103a0b48" }, "downloads": -1, "filename": "gita-0.10.3.tar.gz", "has_sig": false, "md5_digest": "73cb4075e8c211dda82041b3364a2553", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 13612, "upload_time": "2019-07-16T02:44:34", "url": "https://files.pythonhosted.org/packages/38/0b/f98600d12a1f3579c56a91030ac30af37b23607c3faf2c4dd9b24ee812cd/gita-0.10.3.tar.gz" } ] }