{ "info": { "author": "Andre de Sousa Costa Filho", "author_email": "andre.filho001@outlook.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Natural Language :: Portuguese", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "

\n \n

Commit Helper

\n

\n\n

\n \n \"Build\n \n \n \"Maintainability\"\n \n \"codebeat\n \n \"Codacy\n \n \n \n \n \n

\n\n## What does it do?\nThe commit-helper do exactly what it's name suggest: helps you create and maintain your commit policy by tailoring your commit message into a commit convention.\n\n## Why should I use this?\nKeeping a commit policy may sound like an easy thing to do, but in reality we both know that it isn't.\n\nSometimes we, the developers, go _full-loco_ while programming and make mistakes when commiting. That's fine, everyone makes mistakes. But, what if those mistakes could be avoided?\n\n## Screenshots\n\n### Initial commit\n\n\n\n### Normal commit\n\n\n\n### Commit without generating a configuration file\n\n\n\n### Co-authored commit\n\n\n\n### Fast commit\n\n\n\n### Debugging and commiting\n\n\n\n### All-in-one commit\n\n\n\n### Help\n\n\n\n### Getting help for writing in a convention\n\n\n\n## Installation\n\nIn order to install one of our older versions, check our [previous releases](PREVIOUS_VERSIONS). To install the latest (pip) version, just follow the commands below:\n\n```bash\n$ pip3 install commit-helper\n```\n\n## Updating your current version\n\nIf you already have one of our `pip` releases installed in your machine and want to update to the latest version, use the command:\n\n```bash\n$ pip3 install --upgrade commit-helper\n```\n\n## Usage and configuration\n\nThis program has a cli that you can take advantage of. Running `commit --help`\nwill show you the usage and options for your commit. All of them are optional\nfor the sake of not losing your precious time.\n\n```bash\n $ commit -h\nusage: commit [-h] [-t TAG] [-m MESSAGE] [-ct CONTEXT] [-ca CO_AUTHOR] [-nf]\n [-c {angular,karma,tagged,symphony,message}] [-d]\n\nA commit formatter tool to help you follow commit conventions.\n\noptional arguments:\n -h, --help show this help message and exit\n -t TAG, --tag TAG Pass your commit tag directly\n -m MESSAGE, --message MESSAGE\n Pass your commit message directly\n -ct CONTEXT, --context CONTEXT\n Pass your commit context directly\n -ca CO_AUTHOR, --co-author CO_AUTHOR\n Make your friend an co-author to the commit\n -nf, --no-file Disables the creation of a commiter.yml or commit-helper.yml file\n -c {angular,karma,tagged,symphony,message}, --convention {angular,karma,tagged,symphony,message}\n Selects a convention to be used for the commit.\n Required if there's no commiter.yml or commit-helper.yml file.\n -d, --debug Toggles debug option\n\n```\n\nSo, if you want to write a co-authored commit, you should use:\n\n```bash\n$ commit --co-author \"foo bar doritous \"\n```\n\nOr if you are using this for the first time in your project:\n\n```bash\n$ commit --convention tagged\n```\n\nTo work even more smoothly, have in your working directory a file named **commiter.yml or commit-helper.yml**. In this file you must pass the commit convention that you want to use, following the example:\n\n```yaml\nconvention: angular # tag(context): commit message\n\n# or\n\nconvention: karma # tag(context): commit message\n\n# or\n\nconvention: tagged # TAG: commit message\n\n# or\n\nconvention: symphony # [Tag] commit message\n\n# and if you're feeling adventurous\n\nconvention: none # Commit message\n```\n\nIn case that you or your organization does already have a commit convention that is not listed above, you can configure it in the commiter.yml or commit-helper.yml file as following:\n\n```yaml\nconvention: custom\n# considering a commit message like '{add} (stuff) ~> in file foo.br'\ncommit_pattern: '{tag} (context) ~> message'\n# tag, message and context are reserved words that will be replaced in your commit message\ncontext: true # this is a must have field! If your pattern doesn't have one, assign false to it\n```\n\nSupported conventions available:\n\n - angular\n - karma\n - tagged\n - symphony\n - atom\n - only message (no convention)\n - a custom one that you may create :)\n\n ## Troubleshooting\n If after you've installed commit-helper the `commit` or `commit-helper` commands are not usable at the command line, check if `$HOME/.local/bin` is on your PATH. If not, add it on your .bashrc file by running:\n ``` bash\n$ echo \"export PATH=$HOME/.local/bin:$PATH\" >> .bashrc\n ```\n\n## Project's maintainers\n| **Name** | **Username** |\n| :--------: | :-----: |\n| Andr\u00e9 de Sousa Costa Filho | @andre-filho |\n\n## Our collaborators\n| **Name** | **Username** |\n| :------: | :----------: |\n| Arthur Jos\u00e9 Benedito de Oliveira Assis | @arthur0496 |\n| Matheus Richard Torres Gomes de Melo | @MatheusRich |\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/andre-filho/commit-helper", "keywords": "commit,helper,git,version,versioning", "license": "GNU", "maintainer": "", "maintainer_email": "", "name": "commit-helper", "package_url": "https://pypi.org/project/commit-helper/", "platform": "", "project_url": "https://pypi.org/project/commit-helper/", "project_urls": { "Homepage": "https://github.com/andre-filho/commit-helper" }, "release_url": "https://pypi.org/project/commit-helper/3.4.18/", "requires_dist": [ "colorama (>=0.4.1)", "colored (>=1.3.93)", "pyyaml (>=4.2b1)", "argparse (>=1.2.0)" ], "requires_python": "", "summary": "A python program that helps you write commits following commit conventions", "version": "3.4.18" }, "last_serial": 5303956, "releases": { "3.0.2": [ { "comment_text": "", "digests": { "md5": "22550a0713beb0be82c73181a69bdb77", "sha256": "fd08831ac65c41b26aefac41f23b01a57fde3905fd52ba6b5f97f39475e7074a" }, "downloads": -1, "filename": "commit_helper-3.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "22550a0713beb0be82c73181a69bdb77", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21640, "upload_time": "2018-10-24T17:01:18", "url": "https://files.pythonhosted.org/packages/8c/67/3d34867bcf77947c686de5f5fc34a27e61e4d5670374e24d71246abe90a8/commit_helper-3.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dedfa543a344baaf7fd7511203f87e99", "sha256": "9919aeebd49f65fed7791ec7daaac0fb98f95f3e36de597084ae2babf4c4a3c6" }, "downloads": -1, "filename": "commit-helper-3.0.2.tar.gz", "has_sig": false, "md5_digest": "dedfa543a344baaf7fd7511203f87e99", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5842, "upload_time": "2018-10-24T17:01:20", "url": "https://files.pythonhosted.org/packages/cd/0b/264c548d8246971e9e14e8c280242403a9a8fbffa8662d861f5c5c6b9193/commit-helper-3.0.2.tar.gz" } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "56801684f2ea2eeaef45294a2ce57000", "sha256": "7ea7f3d3f56953e41ea3e4d4a786bcbb5e244f1ee191214a7d72dfae588c23ee" }, "downloads": -1, "filename": "commit_helper-3.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "56801684f2ea2eeaef45294a2ce57000", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22663, "upload_time": "2018-11-07T23:19:45", "url": "https://files.pythonhosted.org/packages/2c/aa/46655c979ed7ce90346b2a86cec21aea25e4a12edb033c39c400026530d2/commit_helper-3.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "31ae15f906bf1e378fef8f2c6a78397b", "sha256": "d97391fe8ca769ffd6dae98fd8f08a6682d3835e125457bbec2a301b943b98b9" }, "downloads": -1, "filename": "commit-helper-3.1.2.tar.gz", "has_sig": false, "md5_digest": "31ae15f906bf1e378fef8f2c6a78397b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8443, "upload_time": "2018-11-07T23:19:47", "url": "https://files.pythonhosted.org/packages/c7/a5/91d2b9e382908ffec9a8027f33ba67d2f85e4805d27075f17b15af1df8ed/commit-helper-3.1.2.tar.gz" } ], "3.2.2": [ { "comment_text": "", "digests": { "md5": "d543758ddd3bd39e95b953193d101d48", "sha256": "a637e5e2523bb53c2f33b87a7f521e92e7646ac2f9d7b276d80c7ebec4c0d61f" }, "downloads": -1, "filename": "commit_helper-3.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "d543758ddd3bd39e95b953193d101d48", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23537, "upload_time": "2018-11-08T23:17:20", "url": "https://files.pythonhosted.org/packages/4d/b5/e5be3e63598b0c29beea434297c3f78761516ae5d8292d1e11a6f140a469/commit_helper-3.2.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b68c26e355c3f9158fc726b7f57ea48b", "sha256": "de57da2bd5be7b8475ec277158ce6c5fe0c639ccf5359c8d88caa6bd2dadf191" }, "downloads": -1, "filename": "commit-helper-3.2.2.tar.gz", "has_sig": false, "md5_digest": "b68c26e355c3f9158fc726b7f57ea48b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9409, "upload_time": "2018-11-08T23:17:21", "url": "https://files.pythonhosted.org/packages/25/0e/5cc9c467d6b3860f2a672b6254e37483f6360a5fe4a9d3ea133952409697/commit-helper-3.2.2.tar.gz" } ], "3.3.2": [ { "comment_text": "", "digests": { "md5": "b14689ad091ebb81719c8740c36ba237", "sha256": "1841d15d0cd84146c8797df85ef1d89ee65a73342c7e94e0cd53d564f0e1ec6d" }, "downloads": -1, "filename": "commit_helper-3.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "b14689ad091ebb81719c8740c36ba237", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23855, "upload_time": "2018-11-11T15:00:01", "url": "https://files.pythonhosted.org/packages/1b/65/376135ea08023a1c604b9f3591d03bc568719823bec83bab2e3a704d038d/commit_helper-3.3.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f646a22fcfb851ae4b65738fabd952cf", "sha256": "a9eb61ba974fee851ca920220fd2a7ac0f69dc8b14571745a9245ec9261f99ea" }, "downloads": -1, "filename": "commit-helper-3.3.2.tar.gz", "has_sig": false, "md5_digest": "f646a22fcfb851ae4b65738fabd952cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9684, "upload_time": "2018-11-11T15:00:04", "url": "https://files.pythonhosted.org/packages/50/a7/6402135cad65e522a5e4d7ab9b9771454fd826c5c4db2b0c780d056549ca/commit-helper-3.3.2.tar.gz" } ], "3.3.3": [ { "comment_text": "", "digests": { "md5": "88f7122ec7629169796485840996f662", "sha256": "7e0c17c778ade027a39908c224d8a216646239c8b27850a30255bfda3ca89398" }, "downloads": -1, "filename": "commit_helper-3.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "88f7122ec7629169796485840996f662", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23883, "upload_time": "2018-11-13T17:25:36", "url": "https://files.pythonhosted.org/packages/f7/47/e8fed7e62b73866a1f6b2a59c06c55878d39a53c993d51d5557a5f57ca30/commit_helper-3.3.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9e17477186b2568e24a16ee8bf05f871", "sha256": "b99ab08fdc8438b98e86e92fe42d5bf7d4bbb2462cb542240893f68f261d4cb6" }, "downloads": -1, "filename": "commit-helper-3.3.3.tar.gz", "has_sig": false, "md5_digest": "9e17477186b2568e24a16ee8bf05f871", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9728, "upload_time": "2018-11-13T17:25:41", "url": "https://files.pythonhosted.org/packages/d2/79/dc33e12c65b936f2cf6b26fa8057f67dd43325f84438aa23a2bc99afd8f2/commit-helper-3.3.3.tar.gz" } ], "3.3.4": [ { "comment_text": "", "digests": { "md5": "2b6f75f2ab0b9433dd065a70ad5ba80e", "sha256": "5f3e5c87b8dcf13cb3735e5bd94ec67ca28857f41c8d2e3b0cf90c9cece327e4" }, "downloads": -1, "filename": "commit_helper-3.3.4-py3-none-any.whl", "has_sig": false, "md5_digest": "2b6f75f2ab0b9433dd065a70ad5ba80e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23806, "upload_time": "2018-11-16T03:20:41", "url": "https://files.pythonhosted.org/packages/11/3e/51cdb3c08bcb54110094676b1501127b71ec0e21ad686aa459b8cf2f8a59/commit_helper-3.3.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "22c940efd2291530c4414e22d259ae07", "sha256": "cc668f5d2fae1f2d07c5326bb5f6ecc576981d61dc69b43ba11903adfe864c9a" }, "downloads": -1, "filename": "commit-helper-3.3.4.tar.gz", "has_sig": false, "md5_digest": "22c940efd2291530c4414e22d259ae07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9767, "upload_time": "2018-11-16T03:20:45", "url": "https://files.pythonhosted.org/packages/e2/0c/5110c77af63391dea1926b27088068fcf79c33e3bc72b67c835f2da0e107/commit-helper-3.3.4.tar.gz" } ], "3.4.13": [ { "comment_text": "", "digests": { "md5": "cc4eda2533e3a371ba0d8d0aa7af1fd8", "sha256": "2cf0b9475086478d250c901a56d605bcc5e3075118027756c6445b25fb6d7c38" }, "downloads": -1, "filename": "commit_helper-3.4.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cc4eda2533e3a371ba0d8d0aa7af1fd8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27345, "upload_time": "2018-12-30T17:34:53", "url": "https://files.pythonhosted.org/packages/67/ae/5a78c46b3b47107f1e0e2ba6b1a64e2c7b915350b0cef2df629e969d18ff/commit_helper-3.4.13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "93b3a1fc864a3dcaa0886acc75a3f66c", "sha256": "02ab7a8dafc12e1a659e52fdf9cacce228de5514ee2b34297d3084b6805640d7" }, "downloads": -1, "filename": "commit-helper-3.4.13.tar.gz", "has_sig": false, "md5_digest": "93b3a1fc864a3dcaa0886acc75a3f66c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13326, "upload_time": "2018-12-30T17:34:55", "url": "https://files.pythonhosted.org/packages/4c/bc/b0b1561411a1f976d3ade363b561ebf32e111e7cb895ed922f1e32f6c88d/commit-helper-3.4.13.tar.gz" } ], "3.4.15": [ { "comment_text": "", "digests": { "md5": "c7869bde95da5a62984520fa7d56c46a", "sha256": "53ec16b858d5650262bd51df27481f1b2a8cb2fe047996dd031f9d766c3cd0a3" }, "downloads": -1, "filename": "commit_helper-3.4.15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c7869bde95da5a62984520fa7d56c46a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27344, "upload_time": "2019-04-19T12:54:21", "url": "https://files.pythonhosted.org/packages/a7/86/70ac6aa7aa10d1ec558d6f41cb2631ef5590601e7222ba8cd5d62db4d885/commit_helper-3.4.15-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3d328f41192b1f1c3a6216148b8e3cd6", "sha256": "c4c7ec9d5df1f48fe161057d537ee916df0942dde3c54c17295bd69a7a60e9ce" }, "downloads": -1, "filename": "commit-helper-3.4.15.tar.gz", "has_sig": false, "md5_digest": "3d328f41192b1f1c3a6216148b8e3cd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25680, "upload_time": "2019-04-19T12:54:23", "url": "https://files.pythonhosted.org/packages/b0/d9/bba204dcfb5423b325d9adfe6e210933b01b682a3dd7fadf5715d2cb6dea/commit-helper-3.4.15.tar.gz" } ], "3.4.16": [ { "comment_text": "", "digests": { "md5": "ee2f26c29b37ee92d759e1c264be4d2d", "sha256": "b8313e79efaf99e9ed60186bd567a472b5e200f4c1ad02ad088da89494ac2c43" }, "downloads": -1, "filename": "commit_helper-3.4.16-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ee2f26c29b37ee92d759e1c264be4d2d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27343, "upload_time": "2019-04-19T14:49:41", "url": "https://files.pythonhosted.org/packages/9c/bb/9150e2dc9652b3ee8a9de2d89190a3cc432d26f58ea4a74c42de7b8f3f9c/commit_helper-3.4.16-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "41b24ae6ab6cb5062605547469deca31", "sha256": "32e38b82c5a5e622c06b5f7f6c748a2f4bf641a68f753602f7da6a6eb26612ba" }, "downloads": -1, "filename": "commit-helper-3.4.16.tar.gz", "has_sig": false, "md5_digest": "41b24ae6ab6cb5062605547469deca31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25684, "upload_time": "2019-04-19T14:49:42", "url": "https://files.pythonhosted.org/packages/1f/b3/a69477dbb146238b7fd27c14b346aaff3531501ccd564633ebd8ad9d8fa6/commit-helper-3.4.16.tar.gz" } ], "3.4.18": [ { "comment_text": "", "digests": { "md5": "263bc53e3c46d11ca03c3e88edb69806", "sha256": "9fbcba5aa0d5bf5e0629fbded1ba1efe559660dad25ff007827191187971288b" }, "downloads": -1, "filename": "commit_helper-3.4.18-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "263bc53e3c46d11ca03c3e88edb69806", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27192, "upload_time": "2019-05-22T18:31:13", "url": "https://files.pythonhosted.org/packages/49/75/f3d395c4cd18d93742bb22f3e326729ae4388a21d47105988a4d600fa347/commit_helper-3.4.18-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "233c35f2a01ed436472b9db7f8638afc", "sha256": "437de596c264cbae4b4c5ed938e173b8584a24714b605406de61269ce3937d61" }, "downloads": -1, "filename": "commit-helper-3.4.18.tar.gz", "has_sig": false, "md5_digest": "233c35f2a01ed436472b9db7f8638afc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25524, "upload_time": "2019-05-22T18:31:14", "url": "https://files.pythonhosted.org/packages/64/f8/fcd37dae659ba742a5678adeeb1544ea59f5ffcab919a87e787ac033bf0e/commit-helper-3.4.18.tar.gz" } ], "3.4.4": [ { "comment_text": "", "digests": { "md5": "95c8c135b18613e508b4afcc4a94dc7f", "sha256": "ea9d916ecfb8ee21d1bdf2d2bb558c612a5cb52e3346c6ca7305b81aaa68c1e7" }, "downloads": -1, "filename": "commit_helper-3.4.4-py3-none-any.whl", "has_sig": false, "md5_digest": "95c8c135b18613e508b4afcc4a94dc7f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26908, "upload_time": "2018-11-26T14:43:08", "url": "https://files.pythonhosted.org/packages/29/7b/8a1159494f2fc4c4cd1c1139fdf2da5961f00d6b2aca93b3b1091e651808/commit_helper-3.4.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "985aa98fef678eabb9b5cea9f1487e7e", "sha256": "cdb9ec1f59f1d671a513bcb794d35b5ea98d5317e6b0a0f65f22caa82b203eb8" }, "downloads": -1, "filename": "commit-helper-3.4.4.tar.gz", "has_sig": false, "md5_digest": "985aa98fef678eabb9b5cea9f1487e7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11776, "upload_time": "2018-11-26T14:43:14", "url": "https://files.pythonhosted.org/packages/13/67/8d228f4d35cdeb0158bce19b408a8d6dc52ea68f44969e82a3e2131664a8/commit-helper-3.4.4.tar.gz" } ], "3.4.5": [ { "comment_text": "", "digests": { "md5": "309cad2c83e08d0cb5d61d432a027e7f", "sha256": "fa9df90fb89adfc75658f5c650af808313c897d363b58a2d012c94eb15758787" }, "downloads": -1, "filename": "commit_helper-3.4.5-py3-none-any.whl", "has_sig": false, "md5_digest": "309cad2c83e08d0cb5d61d432a027e7f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26921, "upload_time": "2018-11-27T18:52:00", "url": "https://files.pythonhosted.org/packages/70/7c/0ff480b5d02c995285c95450e73cbf3b5a0fa93a626e66a64b89477638cd/commit_helper-3.4.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bb8212161f66bd2990a90b591ddcf33d", "sha256": "07e03cbc172ec0ca4146e0e2dfe327feb51fdcfae91a3ca32b940f965c5825e3" }, "downloads": -1, "filename": "commit-helper-3.4.5.tar.gz", "has_sig": false, "md5_digest": "bb8212161f66bd2990a90b591ddcf33d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11829, "upload_time": "2018-11-27T18:52:01", "url": "https://files.pythonhosted.org/packages/ea/03/635a25af25bc87e6b18194ce240f56f912479c29aee45b6b1aae1437689b/commit-helper-3.4.5.tar.gz" } ], "3.4.6": [ { "comment_text": "", "digests": { "md5": "d4704e77a81c7a9d2634ceecf48adb18", "sha256": "bc7afa4e3cd8f464a926b97f51a39b34499a71028926679dcffda02f25d426fc" }, "downloads": -1, "filename": "commit-helper-3.4.6.tar.gz", "has_sig": false, "md5_digest": "d4704e77a81c7a9d2634ceecf48adb18", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12266, "upload_time": "2018-12-11T01:08:27", "url": "https://files.pythonhosted.org/packages/9b/0a/64b70714b6749b815853fde69bd5055325e5f40c856bdd649333f3a89bc4/commit-helper-3.4.6.tar.gz" } ], "3.4.7": [ { "comment_text": "", "digests": { "md5": "4c3adb3d1a3ba02438de1009db276187", "sha256": "76827715be2c6653a302ba1d6b284c4cf6eb893ba349f17d5faa17cbee208b53" }, "downloads": -1, "filename": "commit_helper-3.4.7-py3-none-any.whl", "has_sig": false, "md5_digest": "4c3adb3d1a3ba02438de1009db276187", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27099, "upload_time": "2018-12-11T01:16:18", "url": "https://files.pythonhosted.org/packages/0a/fe/f06af169ae2c51c963d8716e72d9ebb68f6c77021404ddfee1505581c9ed/commit_helper-3.4.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f3655bb87fb4bdc28e89dfac2574e9da", "sha256": "ee971d66662520b3ba5969df52781c1e76209985daf178ffe5f070e88bee29d1" }, "downloads": -1, "filename": "commit-helper-3.4.7.tar.gz", "has_sig": false, "md5_digest": "f3655bb87fb4bdc28e89dfac2574e9da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12138, "upload_time": "2018-12-11T01:16:21", "url": "https://files.pythonhosted.org/packages/ba/75/c24ad3525071f23b3ccc4213cc3e8209456b220c3e0807d8249d8bf365b6/commit-helper-3.4.7.tar.gz" } ], "3.4.8": [ { "comment_text": "", "digests": { "md5": "de5f4cf88d301b79eab0aede01f8dc04", "sha256": "8d52276a9b8ea591b83ffc0034170d3bad95fc2661e24d6fa6d257d30f967a84" }, "downloads": -1, "filename": "commit_helper-3.4.8-py3-none-any.whl", "has_sig": false, "md5_digest": "de5f4cf88d301b79eab0aede01f8dc04", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27100, "upload_time": "2018-12-11T13:21:47", "url": "https://files.pythonhosted.org/packages/f9/c2/a4f772c4c274a6aaf3b50ba4c9cb3ce3446df09c6acf69c22f41a594777e/commit_helper-3.4.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6a9ec9e4bbd2a51269c8039badc45985", "sha256": "de3ca681a10c3aab1b5fbd26fc0b580ed0b141a0fb88f8129a2d61afa664e1d4" }, "downloads": -1, "filename": "commit-helper-3.4.8.tar.gz", "has_sig": false, "md5_digest": "6a9ec9e4bbd2a51269c8039badc45985", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12267, "upload_time": "2018-12-11T13:13:36", "url": "https://files.pythonhosted.org/packages/3e/90/d1f60311861ff1ab6c0602bb451b91405f46b071467e7360d5051e8be816/commit-helper-3.4.8.tar.gz" } ], "3.4.9": [ { "comment_text": "", "digests": { "md5": "cf16983b6fdadc6622fb10935181b938", "sha256": "40880886646b20e70094e229475f1453b76850002013588d001266c2a4ed7fb3" }, "downloads": -1, "filename": "commit_helper-3.4.9-py3-none-any.whl", "has_sig": false, "md5_digest": "cf16983b6fdadc6622fb10935181b938", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27100, "upload_time": "2018-12-11T13:22:20", "url": "https://files.pythonhosted.org/packages/fb/f7/747b983bf243f9ab5d6dccf90eae4cc654e5e123aa5b8182ae4e505c8e29/commit_helper-3.4.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "64df2934b5a3406bde7d96d202780b57", "sha256": "fafafe4dd61a67b3e28f22cfde2089427f9ace777dc1f98c46d03050506d5607" }, "downloads": -1, "filename": "commit-helper-3.4.9.tar.gz", "has_sig": false, "md5_digest": "64df2934b5a3406bde7d96d202780b57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12267, "upload_time": "2018-12-26T03:30:07", "url": "https://files.pythonhosted.org/packages/8f/75/c2735e7f64dd7f23ce94a7dcd341a7aed9f9e1c85d45c2cc81bdde2e1bdc/commit-helper-3.4.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "263bc53e3c46d11ca03c3e88edb69806", "sha256": "9fbcba5aa0d5bf5e0629fbded1ba1efe559660dad25ff007827191187971288b" }, "downloads": -1, "filename": "commit_helper-3.4.18-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "263bc53e3c46d11ca03c3e88edb69806", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27192, "upload_time": "2019-05-22T18:31:13", "url": "https://files.pythonhosted.org/packages/49/75/f3d395c4cd18d93742bb22f3e326729ae4388a21d47105988a4d600fa347/commit_helper-3.4.18-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "233c35f2a01ed436472b9db7f8638afc", "sha256": "437de596c264cbae4b4c5ed938e173b8584a24714b605406de61269ce3937d61" }, "downloads": -1, "filename": "commit-helper-3.4.18.tar.gz", "has_sig": false, "md5_digest": "233c35f2a01ed436472b9db7f8638afc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25524, "upload_time": "2019-05-22T18:31:14", "url": "https://files.pythonhosted.org/packages/64/f8/fcd37dae659ba742a5678adeeb1544ea59f5ffcab919a87e787ac033bf0e/commit-helper-3.4.18.tar.gz" } ] }