{ "info": { "author": "Adrien Gavignet", "author_email": "adrien.gavignet@gmail.com", "bugtrack_url": null, "classifiers": [ "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "# yogit\n\n[![Build Status](https://dev.azure.com/hasboeuf/yogit/_apis/build/status/hasboeuf.yogit?branchName=master)](https://dev.azure.com/hasboeuf/yogit/_build/latest?definitionId=1&branchName=master)\n[![Build Status](https://travis-ci.org/hasboeuf/yogit.svg?branch=master)](https://travis-ci.org/hasboeuf/yogit)\n![License](https://img.shields.io/github/license/mashape/apistatus.svg)\n[![PyPI version](https://badge.fury.io/py/yogit.svg)](https://pypi.org/project/yogit/)\n[![Downloads](https://pepy.tech/badge/yogit)](https://pepy.tech/project/yogit)\n\nCommand line utility for git daily work.\n\n## Requirements\n\n* `Python3` and `pip3`\n* `yogit` is tested with Python `3.5`, `3.6`, `3.7`\n* `yogit` is mostly tested on `Linux` but also works on `macOS` and `Windows` (if using [Windows Terminal](https://github.com/microsoft/terminal)).\n* For now only GitHub API is supported\n\n## Continuous integration\n\n* [Azure Pipelines](https://dev.azure.com/hasboeuf/yogit)\n* [TravisCI](https://travis-ci.org/hasboeuf/yogit)\n\n## Installation\n\n* `pip3 install yogit`\n* `yogit account setup`\n\n`yogit` internal files are stored in `~/.yogit` folder.\n\n### Auto completion\n\n`yogit` supports auto-completion. To activate it, you need to setup your shell.\n\n* For Bash, edit your `.bashrc` and add `eval \"$(_YOGIT_COMPLETE=source yogit)\"`\n* For Zsh, edit your `.zshrc` and add `eval \"$(_YOGIT_COMPLETE=source_zsh yogit)\"`\n\n## Principle\n\n`yogit` is able to:\n\n* Show pull requests\n* Show pull request reviews\n* Show branches\n* Show contributions\n* Show organization's information\n* Help in writing a daily scrum report and post it on Slack\n\nSee documentation below for more details.\n\n## Documentation\n\n### Usage\n\n`yogit --help`\n\n### Account\n\n`yogit account setup`: Setup yogit (include GitHub integration and optionnaly Slack integration to fully enjoy `yogit scrum report` command)\n\n`yogit account usage`: Account API usage\n\n### Pull request\n\n`yogit pr list [--orga TEXT] [--label TEXT]`: List your opened pull requests. If `--orga` is set, results will be expanded to this specific organization. If `--label` is set, results will be filtered by pull request labels, you can set multiple `--label`.\n\n### Review\n\n`yogit review list`: List your reviews on opened pull requests\n\n`yogit review requested [--missed]`: List pull requests where your review is requested. If `--missed` is set, only closed pull requests will be listed.\n\n### Branch\n\n`yogit branch list [--dangling]`: List your branches. If `--dangling` is set, only branches without associated pull request will be listed.\n\n### Contributions\n\n`yogit contrib list [--from TEXT] [--to TEXT]`: List your GitHub contributions within a range of dates.\n\nA contribution is either a pull request or pull request review.\n\nBy default this command is listing today's contributions.\n\n`yogit contrib stats`: Show some GitHub statistics.\n\n### Organization\n\n`yogit orga list`: List organizations you belong to.\n\n`yogit orga member list [--orga TEXT]`: List members of one organization you belong to.\n\n`yogit orga member pickone [--orga TEXT]`: Randomly pick one member of one organization you belong to.\n\n### SCRUM\n\n`yogit scrum report [--date TEXT]`: Generate your daily activity report\n\nIf Slack integration is setup, report can be published on Slack. Note that report is composed of one or more sections, first section will published as a message, next section will be published as a reply of the first one.\n\nTemplate of the report can be changed by editing `~/.yogit/scrum_report.yaml`\n\nYou might need to install `xcopy` to fully enjoy this command.\n\n\n# Changelog\n\n## 1.13.0\n\n* Improve `yogit scrum report`: list contributions before completing the report\n* Slack post now handles correctly #channel mentions (member mentions is not working yet)\n\n## 1.12.3\n\n* Fix config file loading: do not raise an error when file does not exist\n\n## 1.12.2\n\n* Fix scrum report template migration of `yogit 1.12.0`. If you encountered the bug, remove `~/.yogit/scrum_report.yaml` to get the default one back\n\n## 1.12.1\n\n* Fix `yogit orga member ...` command: GitHub API became less permissive about param types\n\n## 1.12.0\n\n* Add `--label` filter to `yogit pr list` command\n* Add Slack integration: thanks @thomascarpentier for this contribution sponsored by Genymobile for #hacktoberfest. It allows `yogit scrum report` to publish the report on Slack on your behalf. To configure it: `yogit account setup`\n\n## 1.11.0\n\n* Change `yogit review requested` output: print pull request title, don't print repository url anymore\n* Add `--missed` option to `yogit review requested` command\n\n## 1.10.0\n\n* Add `yogit br` becomes `yogit branch` command\n* Add `yogit rv` becomes `yogit review` command\n\n## 1.9.0\n\n* Add `yogit orga list` command\n* Add `--orga` discrimator option to `yogit orga member list`\n* Add `--orga` discrimator option to `yogit orga member pickone`\n* Improve doc regarding auto completion\n\n## 1.8.0\n\n* Add `yogit orga member list` command\n* Add `yogit orga member pickone` command\n* Add `--dangling` option to `yogit br list`\n* `yogit ct` command is renamed to `yogit contrib`\n* Improve update warning wording\n* Improve `yogit --version` wording\n\n## 1.7.2\n\n* Fix `yogit` upgrade from `1.6.0`\n\n## 1.7.1\n\n* Shit happens\n\n## 1.7.0\n\n* Add `yogit ct stats` command\n\n## 1.6.0\n\n* Add `yogit ct list` command\n* Add `--date` arg to `yogit scrum report` command\n* Add indentation ability to `yogit scrum report`\n* Print pretty bullet points in generated scrum report\n* Improve documentation\n\n## 1.5.1\n\n* Replace `yaspin` by `Halo` dep to handle spinner: better handling of pipes and redirects\n\n## 1.5.0\n\n* Tried `yogit` on Windows Terminal and workaround a spinner issue\n* Print count little by little if request is big\n\n## 1.4.1\n\n* Fix missing `packaging` dependency\n\n## 1.4.0\n\n* See if pull requests are conflicted in `yogit pr list`\n* Improve `yogit scrum report` UX and make it robust to network access failure\n* Shorten PR titles in tabulated results (max 50 chars)\n\n## 1.3.0\n\n* Add update available check\n\n## 1.2.1\n\n* Improve help\n\n## 1.2.0\n\n* Add ability to list your current reviews and see outdated ones with `yogit rv list`\n* Dedicated wording when there is no result\n* Add \"Count: X\" statement right after result list\n* Show a spinner during request time\n* Use bold and emojis to make outputs fancier\n\n## 1.1.1\n\n* Reinforce `scrum report` command (better error handling)\n\n## 1.1.0\n\n* Add abilitiy to list pull requests of an organization `yogit pr list --orga TEXT`\n\n## 1.0.4\n\n* Fix typo in scrum report, thx @genygilles\n\n## 1.0.3\n\n* Fix unauthorized error due to too old PyYAML version\n\n## 1.0.2\n\n* Support pagination for branch listing (fix request timeout)\n\n## 1.0.1\n\n* Be more specific on GitHub required scopes\n* Improve code regarding account setup flow\n* Fix sort of pull request list\n\n## 1.0.0\n\n* Project bootstrap", "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/hasboeuf/yogit", "keywords": "git github utility branch pull requests", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "yogit", "package_url": "https://pypi.org/project/yogit/", "platform": "", "project_url": "https://pypi.org/project/yogit/", "project_urls": { "Homepage": "https://github.com/hasboeuf/yogit" }, "release_url": "https://pypi.org/project/yogit/1.13.0/", "requires_dist": null, "requires_python": "", "summary": "Command line utility for GitHub daily work.", "version": "1.13.0", "yanked": false, "yanked_reason": null }, "last_serial": 6657433, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "44411698858b67590624e1b704fea83a", "sha256": "02db5b10ad16d4bfc9736cbd4b0d27fa6bff9b4000c9658ae0139c06f01ca8b9" }, "downloads": -1, "filename": "yogit-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "44411698858b67590624e1b704fea83a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 15315, "upload_time": "2019-07-14T17:44:33", "upload_time_iso_8601": "2019-07-14T17:44:33.470901Z", "url": "https://files.pythonhosted.org/packages/a5/b8/26f2fb0f4490fc94c4d3a522eac57598fd84effcbef933b203963a81423a/yogit-1.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc56cba67177541454a5e032ab3a962d", "sha256": "5eda49fc135996e48bffc3b1f46a932258f35eb3b3d5ba81a9a701857cf5b0a9" }, "downloads": -1, "filename": "yogit-1.0.0.tar.gz", "has_sig": false, "md5_digest": "bc56cba67177541454a5e032ab3a962d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12207, "upload_time": "2019-07-14T17:44:35", "upload_time_iso_8601": "2019-07-14T17:44:35.590515Z", "url": "https://files.pythonhosted.org/packages/29/ab/4ef864275b3525749aae7d3c2a3ada2d3ab58c8c59785ed5b36288f0e10e/yogit-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "81a53262db0cece9e1ba96338de1ba0b", "sha256": "08250f37b85a7ee016fae8add6340eb11b09e5b1520de6b05b5a64ccedfc0289" }, "downloads": -1, "filename": "yogit-1.0.1.tar.gz", "has_sig": false, "md5_digest": "81a53262db0cece9e1ba96338de1ba0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9715, "upload_time": "2019-07-15T21:03:30", "upload_time_iso_8601": "2019-07-15T21:03:30.712751Z", "url": "https://files.pythonhosted.org/packages/4b/28/fe6278bc33fc980a9f00bcead732df09cd715c870ab770812d89f5eeb844/yogit-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "239f7d42c4a0d488867f83f16117bad3", "sha256": "84b5f19d341dacd84da9d80062e53571a5edf3da3792aa837f959b797765b6bf" }, "downloads": -1, "filename": "yogit-1.0.2.tar.gz", "has_sig": false, "md5_digest": "239f7d42c4a0d488867f83f16117bad3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9963, "upload_time": "2019-07-15T23:54:27", "upload_time_iso_8601": "2019-07-15T23:54:27.486586Z", "url": "https://files.pythonhosted.org/packages/fc/db/e90af846c32d01dddae4a8499c98b69d7dda9bebc0d12d766006fa67c790/yogit-1.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "6ac8e71e4b45800c12a417216deaca71", "sha256": "59f00a77210e6efa564d516bd647dca438d18841e52e8e691d6d8f5a29e6bed4" }, "downloads": -1, "filename": "yogit-1.0.3.tar.gz", "has_sig": false, "md5_digest": "6ac8e71e4b45800c12a417216deaca71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10065, "upload_time": "2019-07-16T11:53:18", "upload_time_iso_8601": "2019-07-16T11:53:18.141490Z", "url": "https://files.pythonhosted.org/packages/e6/f4/b04c14bd6e97fee8621270ab319414c5c2efb145d3b3933120f9dd82563f/yogit-1.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "8a0d0223d64a2d94bd8b8d0dd6e5c9bb", "sha256": "3d87e99fe62802175ba76b8752bab616c6576b470c4e403ef82845c4a9aca308" }, "downloads": -1, "filename": "yogit-1.0.4.tar.gz", "has_sig": false, "md5_digest": "8a0d0223d64a2d94bd8b8d0dd6e5c9bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9351, "upload_time": "2019-07-16T13:04:43", "upload_time_iso_8601": "2019-07-16T13:04:43.381396Z", "url": "https://files.pythonhosted.org/packages/be/c8/716eac17d6deff5a2c9aad5175b7a1dd5fd8c67bf43f4beaee897d5629f1/yogit-1.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "f30b3037e6efcadb2b97e7fe2efba781", "sha256": "114c5e2dbe1c90ea81390f14a0c382123b20a7f197dead3ee89937cf6a4818a3" }, "downloads": -1, "filename": "yogit-1.1.0.tar.gz", "has_sig": false, "md5_digest": "f30b3037e6efcadb2b97e7fe2efba781", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9699, "upload_time": "2019-07-17T10:24:53", "upload_time_iso_8601": "2019-07-17T10:24:53.297236Z", "url": "https://files.pythonhosted.org/packages/e2/04/526ae2b5e9860ba00d9320d45c79ebf80f4d6b3cd616696cb074dd048d33/yogit-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "86384381f1ef8a49db703f18d1c0d38e", "sha256": "05ce74c949625dfa2cb66c0ff9b8644e764fdde00ecc1fe44727429c66d6bd44" }, "downloads": -1, "filename": "yogit-1.1.1.tar.gz", "has_sig": false, "md5_digest": "86384381f1ef8a49db703f18d1c0d38e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9726, "upload_time": "2019-07-17T17:36:56", "upload_time_iso_8601": "2019-07-17T17:36:56.696782Z", "url": "https://files.pythonhosted.org/packages/09/43/16e6f0699250f2d713f7b06866a436a5da5da75cb899c15adaf1c33bb747/yogit-1.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.10.0": [ { "comment_text": "", "digests": { "md5": "bca11d6a441f859dfa41f6db1078e766", "sha256": "bb500814a655300852f2b265d6bac8eecae7fd15bdbb2de036e4e80c6d31451d" }, "downloads": -1, "filename": "yogit-1.10.0.tar.gz", "has_sig": false, "md5_digest": "bca11d6a441f859dfa41f6db1078e766", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16205, "upload_time": "2019-09-09T21:34:57", "upload_time_iso_8601": "2019-09-09T21:34:57.239285Z", "url": "https://files.pythonhosted.org/packages/94/0f/335d6c84e12939a4d26f874fd5be79ed1dae7fd345b94cffc02daa32b6b2/yogit-1.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.11.0": [ { "comment_text": "", "digests": { "md5": "632ae9d4cd5e8750a2d4f1a3abdc2e5e", "sha256": "314b8970698124d96ded6ff970260f0bc7656456e743485de1630dfef5b592db" }, "downloads": -1, "filename": "yogit-1.11.0.tar.gz", "has_sig": false, "md5_digest": "632ae9d4cd5e8750a2d4f1a3abdc2e5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16412, "upload_time": "2019-10-14T08:37:50", "upload_time_iso_8601": "2019-10-14T08:37:50.478560Z", "url": "https://files.pythonhosted.org/packages/33/74/423c50e6de3dd5794b64bd66b7265bf27306c74d4c32293864f4ec002cb0/yogit-1.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.12.0": [ { "comment_text": "", "digests": { "md5": "4b3534d68441e49fbfb106d974ecaec3", "sha256": "d85dfb36a6b64391778e05bb24da0118fbc9c3306a22963fd780bdffb7735438" }, "downloads": -1, "filename": "yogit-1.12.0.tar.gz", "has_sig": false, "md5_digest": "4b3534d68441e49fbfb106d974ecaec3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18857, "upload_time": "2019-10-21T00:01:48", "upload_time_iso_8601": "2019-10-21T00:01:48.074458Z", "url": "https://files.pythonhosted.org/packages/a4/4e/d3f496fa963db59e551f107753368a8552dd8a2a4e45c25d8971d8b97424/yogit-1.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.12.1": [ { "comment_text": "", "digests": { "md5": "0f155c1650aa8b9dc14b7f0dc94f6cf9", "sha256": "31052f3a187d0d4b47f320825e95c274992805f7932907c38ffa25ba8ad5fb0f" }, "downloads": -1, "filename": "yogit-1.12.1.tar.gz", "has_sig": false, "md5_digest": "0f155c1650aa8b9dc14b7f0dc94f6cf9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18905, "upload_time": "2019-10-22T17:27:30", "upload_time_iso_8601": "2019-10-22T17:27:30.610788Z", "url": "https://files.pythonhosted.org/packages/a4/8f/4b099ba381a57e2d19357b6eb3e4714b4e419211a180951451d8926712c3/yogit-1.12.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.12.2": [ { "comment_text": "", "digests": { "md5": "8f968bb22ba4af4168f12f093c5d2012", "sha256": "be65aea225c06a31d7d7dc9b1183ca51439cb4f4e513d5b43312c975e98e97f5" }, "downloads": -1, "filename": "yogit-1.12.2.tar.gz", "has_sig": false, "md5_digest": "8f968bb22ba4af4168f12f093c5d2012", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18993, "upload_time": "2019-10-22T19:12:34", "upload_time_iso_8601": "2019-10-22T19:12:34.403179Z", "url": "https://files.pythonhosted.org/packages/9f/b6/6703807bd97280b3ad271ac7f264f79dfd522454ccc97966fa3a4a2d8c10/yogit-1.12.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.12.3": [ { "comment_text": "", "digests": { "md5": "9818160e1389d96afdf3cb9275f369de", "sha256": "59face0537f7953384acc3deedc10c0d1164bcccae5a4e0acfcff2eb11caba84" }, "downloads": -1, "filename": "yogit-1.12.3.tar.gz", "has_sig": false, "md5_digest": "9818160e1389d96afdf3cb9275f369de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19069, "upload_time": "2019-10-22T21:23:32", "upload_time_iso_8601": "2019-10-22T21:23:32.494343Z", "url": "https://files.pythonhosted.org/packages/6d/13/12805effabec5b4c5f3ac16740c74d0c7607b6b8c7c7c328d43481fd71aa/yogit-1.12.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.13.0": [ { "comment_text": "", "digests": { "md5": "9ca73d35b35ea7cbcec5d67aa8c2ff5d", "sha256": "725394b2d9cfca4900f2f6c63848f47bf484069f959ee874e7973809d5c7c29f" }, "downloads": -1, "filename": "yogit-1.13.0.tar.gz", "has_sig": false, "md5_digest": "9ca73d35b35ea7cbcec5d67aa8c2ff5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19313, "upload_time": "2020-02-19T00:31:37", "upload_time_iso_8601": "2020-02-19T00:31:37.244085Z", "url": "https://files.pythonhosted.org/packages/2e/62/05b886d501f77673607fd434c5bfc9e74d7a72b3f5595a45fe3717475f8f/yogit-1.13.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "0ac0e204d8f3c5b9cd5f15bbf0af6825", "sha256": "35f003671339f37eff3e6124ee2419c7d906010091224d37d90a3a104efbcc41" }, "downloads": -1, "filename": "yogit-1.2.0.tar.gz", "has_sig": false, "md5_digest": "0ac0e204d8f3c5b9cd5f15bbf0af6825", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10376, "upload_time": "2019-07-23T00:27:51", "upload_time_iso_8601": "2019-07-23T00:27:51.578457Z", "url": "https://files.pythonhosted.org/packages/45/92/ecd112a419822a696db1d1e3a4d18a59c047a6efebffaea62c671129d54f/yogit-1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "5a9deb839d613c3a99060570d8ab05e0", "sha256": "43fff5f8b42c9f8706d3952576de06ab9569fd3ed3d24fbc23e629d18967e0b8" }, "downloads": -1, "filename": "yogit-1.2.1.tar.gz", "has_sig": false, "md5_digest": "5a9deb839d613c3a99060570d8ab05e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10586, "upload_time": "2019-07-23T11:12:17", "upload_time_iso_8601": "2019-07-23T11:12:17.410809Z", "url": "https://files.pythonhosted.org/packages/c8/96/903db70f60d80479806e85d1139d94335583511457cd66af37a103e12c20/yogit-1.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "b2784c28d8d20586ae9e36af7a6426d7", "sha256": "73d4e82d66c5b9ca6aa42776fa645e3ec8ea22304fcc6bf9343d85f61476092d" }, "downloads": -1, "filename": "yogit-1.3.0.tar.gz", "has_sig": false, "md5_digest": "b2784c28d8d20586ae9e36af7a6426d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11245, "upload_time": "2019-07-23T20:26:27", "upload_time_iso_8601": "2019-07-23T20:26:27.763614Z", "url": "https://files.pythonhosted.org/packages/9e/26/ed2b1c9f6c05dd408320a21b1dc465c3a71e801304e16ca1124d49098bfd/yogit-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "329c5f74cd9551230293d15a2863618a", "sha256": "5193fcdd421c0a3ffd73e20eea436f5263500a31bc0aa49008a5df863da9fc33" }, "downloads": -1, "filename": "yogit-1.4.0.tar.gz", "has_sig": false, "md5_digest": "329c5f74cd9551230293d15a2863618a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11464, "upload_time": "2019-07-23T23:02:13", "upload_time_iso_8601": "2019-07-23T23:02:13.335920Z", "url": "https://files.pythonhosted.org/packages/7a/b1/5c3d1105f02b9e528e2a6dda19cad43dd00df8e7f28da6c22966fc207e9f/yogit-1.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "31ad2cf857fb73523e5324ee6e4c6e34", "sha256": "15d1b2510e856067dbc447d2346c5db1d05c18418f66aac8ecc2fe29f125c730" }, "downloads": -1, "filename": "yogit-1.4.1.tar.gz", "has_sig": false, "md5_digest": "31ad2cf857fb73523e5324ee6e4c6e34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11478, "upload_time": "2019-07-23T23:30:43", "upload_time_iso_8601": "2019-07-23T23:30:43.048113Z", "url": "https://files.pythonhosted.org/packages/b7/2e/c0ead150cb06e4ca2e764063409c1bb353648d9df9a331bcdc84f28dc487/yogit-1.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "3318a499f0b2ead5395c0547b1e791d4", "sha256": "c27774bd04ab5929734c6178c46718166f38f5de9c63beddc289ccd4df45faa5" }, "downloads": -1, "filename": "yogit-1.5.0.tar.gz", "has_sig": false, "md5_digest": "3318a499f0b2ead5395c0547b1e791d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11733, "upload_time": "2019-07-25T08:44:09", "upload_time_iso_8601": "2019-07-25T08:44:09.358781Z", "url": "https://files.pythonhosted.org/packages/be/0c/f64fa65783c827c7a635c86ae1b5fb472730163e6b0e97e24d36a250ba7a/yogit-1.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "6cf10f8760a8fde0d6350c853d75ccaf", "sha256": "ded77ea32ace69bdc22071921108f8acc5238266637d2fe23ab5c4109c96c57b" }, "downloads": -1, "filename": "yogit-1.5.1.tar.gz", "has_sig": false, "md5_digest": "6cf10f8760a8fde0d6350c853d75ccaf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11663, "upload_time": "2019-07-25T15:29:34", "upload_time_iso_8601": "2019-07-25T15:29:34.918356Z", "url": "https://files.pythonhosted.org/packages/b3/bd/06155da9098b0c85bcac19cdb4a45f675533594e7816a479f067a28fde45/yogit-1.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "56184025cda3dfe5957742d73a20ac31", "sha256": "b6e9d1c0eba58279389e7222dfc628690f586b7d8488acf900af1b8eb62a5b70" }, "downloads": -1, "filename": "yogit-1.6.0.tar.gz", "has_sig": false, "md5_digest": "56184025cda3dfe5957742d73a20ac31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12953, "upload_time": "2019-08-19T23:11:03", "upload_time_iso_8601": "2019-08-19T23:11:03.287673Z", "url": "https://files.pythonhosted.org/packages/85/69/5328ca3bfcb125193ecb2c4d8c1ee8b9e63fac8ddc77f93981c441642117/yogit-1.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "28464c6b264e0bdb3aadf32b2c09fa0b", "sha256": "8e891d392875610985576b372a5430a39997a4bad2571ba10d83d50d310eb658" }, "downloads": -1, "filename": "yogit-1.7.0.tar.gz", "has_sig": false, "md5_digest": "28464c6b264e0bdb3aadf32b2c09fa0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14029, "upload_time": "2019-08-20T23:09:00", "upload_time_iso_8601": "2019-08-20T23:09:00.634976Z", "url": "https://files.pythonhosted.org/packages/0a/f9/d1d24ef767b185271e62feb5668c45c6c036c6790c25a285dbd920ece305/yogit-1.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "1302670f4b0c31b77f149b51dbb3e132", "sha256": "8cf398a913bfcfe0d395583814424f481fb5383d27cd2707c0fab395e8b5db1d" }, "downloads": -1, "filename": "yogit-1.7.1.tar.gz", "has_sig": false, "md5_digest": "1302670f4b0c31b77f149b51dbb3e132", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14095, "upload_time": "2019-08-21T07:35:06", "upload_time_iso_8601": "2019-08-21T07:35:06.978211Z", "url": "https://files.pythonhosted.org/packages/8c/22/39b6987383f0921a7e3eb4026ea7b8ff2d8c4c95abc9960003cb74728942/yogit-1.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "40fba3d8be70afd7736ebd6df1722cf1", "sha256": "accb37ca435c86fc08014b39134f6d9e9b12f5944378b818b09b9e9e7bd79a68" }, "downloads": -1, "filename": "yogit-1.7.2.tar.gz", "has_sig": false, "md5_digest": "40fba3d8be70afd7736ebd6df1722cf1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14319, "upload_time": "2019-08-21T07:49:57", "upload_time_iso_8601": "2019-08-21T07:49:57.851564Z", "url": "https://files.pythonhosted.org/packages/be/2e/7122b21ab3c88e2a53b9d1916daf5808b477d0d0398abd90f5243972019b/yogit-1.7.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "c2b6b06d23cfcfb03568b0e94cff2e70", "sha256": "bc4eef99c239f69aa98e0dab2df640f295b566edb280926298f108ea1dba0825" }, "downloads": -1, "filename": "yogit-1.8.0.tar.gz", "has_sig": false, "md5_digest": "c2b6b06d23cfcfb03568b0e94cff2e70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15595, "upload_time": "2019-08-23T00:09:10", "upload_time_iso_8601": "2019-08-23T00:09:10.023475Z", "url": "https://files.pythonhosted.org/packages/3c/c1/6956c138206f445635991d49f2bd6dd427ee7f2256d48c48dcd6e4f2756e/yogit-1.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "95d6435fc391d795a51d55cc891f1720", "sha256": "25d7578be99e409968b92eebd7870da08d29ffbc0ab02fc9edf3e6a556f231de" }, "downloads": -1, "filename": "yogit-1.9.0.tar.gz", "has_sig": false, "md5_digest": "95d6435fc391d795a51d55cc891f1720", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16134, "upload_time": "2019-08-25T23:04:29", "upload_time_iso_8601": "2019-08-25T23:04:29.842919Z", "url": "https://files.pythonhosted.org/packages/7c/1e/41ba951337fc2a9165c5517bd3e9881861a404bc7f9bf79231df9e74cb93/yogit-1.9.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9ca73d35b35ea7cbcec5d67aa8c2ff5d", "sha256": "725394b2d9cfca4900f2f6c63848f47bf484069f959ee874e7973809d5c7c29f" }, "downloads": -1, "filename": "yogit-1.13.0.tar.gz", "has_sig": false, "md5_digest": "9ca73d35b35ea7cbcec5d67aa8c2ff5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19313, "upload_time": "2020-02-19T00:31:37", "upload_time_iso_8601": "2020-02-19T00:31:37.244085Z", "url": "https://files.pythonhosted.org/packages/2e/62/05b886d501f77673607fd434c5bfc9e74d7a72b3f5595a45fe3717475f8f/yogit-1.13.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }