{ "info": { "author": "Michele Cardone", "author_email": "michele.cardone82@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "==================================================\nRedmine to JIRA Importers plugin\n==================================================\n\n\n.. image:: https://img.shields.io/pypi/v/redmine2jira.svg\n :target: https://pypi.python.org/pypi/redmine2jira\n\n.. image:: https://travis-ci.org/wandering-tales/redmine2jira.svg?branch=master\n :target: https://travis-ci.org/wandering-tales/redmine2jira\n\n.. image:: https://readthedocs.org/projects/redmine2jira/badge/?version=latest\n :target: https://redmine2jira.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n.. image:: https://pyup.io/repos/github/wandering-tales/redmine2jira/shield.svg\n :target: https://pyup.io/repos/github/wandering-tales/redmine2jira/\n :alt: Updates\n\n.. image:: https://pyup.io/repos/github/wandering-tales/redmine2jira/python-3-shield.svg\n :target: https://pyup.io/repos/github/wandering-tales/redmine2jira/\n :alt: Python 3\n\nExport Redmine issues to file formats compatible with the JIRA Importers plugin (JIM).\n\n* Free software: MIT license\n* Documentation: https://redmine2jira.readthedocs.io.\n\n\nFeatures\n--------\n\nThe aim of the tool is to export Redmine issues, fetched using Redmine REST API,\nto a set of files which format is compatible with the JIRA Importers Plugin.\n\nThe output of the tool, in most of the scenarios, is a single JSON file\ncombining all the following information for each exported issue:\n\n- Standard/custom fields\n- Journal entries (Notes)\n- Status history\n- Attachments URLs\n- Hierarchy relationships\n- Relations\n- Watchers\n- Time logs\n\nCross-project issue relations\n*****************************\n\nIf the Redmine instance has configured cross-project issue relations,\nand the exported issues do not correspond to the full set of issues of the\nRedmine instance (the tool will properly detect the scenario and prompt a\nquestion if needed), the issue relations will be exported in a separate\nCSV file. Subsequently, when all the Redmine issues have been imported\nin the target Jira instance that CSV file can be finally imported\nin order to update relations on all the existing issues.\n\nJIM file format specifications\n******************************\n\nBoth the JSON and CSV files produced respectively meet their format specifications\nfor the JIRA Importers plugin (JIM). Those specifications can be respectively found\nin the following KB articles:\n\n- `Cloud / Importing data from JSON `_\n- `Cloud / Importing data from CSV `_\n- `Server (latest) / Importing data from JSON `_\n- `Server (latest) / Importing data from CSV `_\n\nHowever, it's worth to mention that all the articles, especially the one Related\nto JSON format, are more driven by examples rather than being comprehensive\nspecification documents: several details related both to the structure\nand the fields values format are omitted. Sometimes we had the need to rely\non other sources on the Internet to cope some strange scenarios.\nBesides, the import from JSON feature is not completely stable.\n\n\nPrerequisites\n-------------\n\n* TODO Users already present in Jira\n* TODO Redmine REST API Enabled\n\n\nUsage\n-----\n\nThe '--filter' option accept a HTTP GET parameter string.\nHere follows the list of the supported filter parameters:\n\n - issue_id (int or string): Single issue ID or comma-separated issue ID's\n - project_id (int or string): Project ID/identifier\n - subproject_id (int or string): Subproject ID/identifier\n (To be used in conjunction with 'project_id';\n you can use `project_id=X` and `subproject_id=!*`\n to get only the issues of a given project\n and none of its subprojects)\n - tracker_id (int): Tracker ID\n - query_id (int): Query ID\n - status_id (int): ['open', 'closed', '*', id]\n If the filter is not specified the default value will be 'open'.\n - assigned_to_id (int):_Assignee user ID\n (or 'me' to get issues which are assigned to the user\n whose credentials were used to access the Redmine REST API)\n - cf_x: Custom field having ID 'x'.\n The '~' sign can be used before the value to find issues\n containing a string in a custom field.\n\nNB: operators containing \">\", \"<\" or \"=\" should be hex-encoded so they're parsed correctly. Most evolved API clients will do that for you by default, but for the sake of clarity the following examples have been written with no such magic feature in mind.\n\nTo fetch issues for a date range (uncrypted filter is \"><2012-03-01|2012-03-07\") :\nGET /issues.xml?created_on=%3E%3C2012-03-01|2012-03-07\n\nTo fetch issues created after a certain date (uncrypted filter is \">=2012-03-01\") :\nGET /issues.xml?created_on=%3E%3D2012-03-01\n\nOr before a certain date (uncrypted filter is \"<= 2012-03-07\") :\nGET /issues.xml?created_on=%3C%3D2012-03-07\n\nTo fetch issues created after a certain timestamp (uncrypted filter is \">=2014-01-02T08:12:32Z\") :\nGET /issues.xml?created_on=%3E%3D2014-01-02T08:12:32Z\n\nTo fetch issues updated after a certain timestamp (uncrypted filter is \">=2014-01-02T08:12:32Z\") :\nGET /issues.xml?updated_on=%3E%3D2014-01-02T08:12:32Z\n\n\nConfiguration\n-------------\n\n* TODO\n\n\nVersioning\n----------\n\nWe use `SemVer `_ for versioning.\n\n\nCredits\n-------\n\nThis package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage\n\n\n=======\nHistory\n=======\n\n0.10.0 (2018-03-14)\n-------------------\n\nNew features\n************\n\n* Implemented issue journal details export feature\n* Implemented issue category list by project feature\n* Implemented version list by project feature\n\nImprovements\n************\n\n* Added support to version resource type mappings\n* Re-engineered definitions of internal domain entities and their mappings via classes and named tuples\n* Moved definitions of internal domain entities and their mappings to 'resources' sub-package\n* Refactored issues export feature to 'IssueExporter' class\n* Improved and optimized description of resource mappings settings\n* Slightly improved configuration settings comments\n* Updated Sphinx to 1.7.1\n* Several code optimizations\n\nChanges\n*******\n\nFixes\n*****\n\n* Added Python 2 Unicode compatibility for string type\n* Used project identifier instead of its internal ID to fetch per-project static resource value mappings\n* Used lists instead of sets to achieve Json format serializer compatibility\n* Used safer method to check for journal notes existence before fetching them\n\n\n0.9.0 (2018-02-11)\n------------------\n\nImprovements\n************\n\n* Update coverage from 4.5 to 4.5.1\n\nChanges\n*******\n\n* Disable possibility to skip dynamic value mapping feature\n* Remove printing of issues referenced users at the end of export phase.\n\n As both static and dynamic value mappings are enabled for user resources,\n the final user doesn't need to be warned for something he consciously did in either case.\n\nFixes\n*****\n\n* Honor value mappings for user resources\n\n\n0.8.0 (2018-02-10)\n------------------\n\nNew features\n************\n\n* Implemented issue watchers save method\n* Implemented issue attachments save method\n* Partially implemented issue journals save method. Redmine journal notes are saved to Jira comments.\n\nFixes\n*****\n\n* Apply conversion to Confluence Wiki notation only if Textile or Markdown text formatting is enabled in settings\n\n\n0.7.0 (2018-02-10)\n------------------\n\nNew features\n************\n\n* Implemented issue custom fields save method\n\nImprovements\n************\n\n* Used tuples as dictionary keys for both resource type fields mappings and dynamic resource value mappings\n* Added comment to explain what happens when no static user-defined mapping has been found and dynamic resource value mapping feature is disabled\n* Removed leftovers of old project name \"Redmine XLS Export to Jira\"\n\nChanges\n*******\n\n* Removed 'CUSTOM_' prefix from the resource value mappings setting names\n\nFixes\n*****\n\n* Fixed setting of dynamic resource value mapping when the resource type is defined on a per-project basis\n* Removed misleading comment. When a Redmine resource type is mapped to more than one Jira resource type the final user is free to set value mappings across all possible resource type combinations.\n* Added default empty dictionary if the resource type mapping setting is not found\n* Minor docstring fixes\n\n\n0.6.2 (2018-02-08)\n------------------\n\nImprovements\n************\n\n* Add pyenv support for Tox\n\nFixes\n*****\n* Fix packages include directive in ``setup.py``\n\n\n0.6.1 (2018-02-07)\n------------------\n\nFake release to fix a problem in PyPI upload.\n\n\n0.6.0 (2018-02-07)\n------------------\n\nNew features\n************\n\n* Implemented issue project save method\n* Implemented issue standard fields save methods\n\nImprovements\n************\n\n* Renamed ``_get_resource_value_mapping`` method to ``_get_resource_mapping``.\n\n The method now returns both mapped Jira type and value, rather than only value.\n\n Updated method docstring accordingly.\n* Added Redmine general configuration section header\n\nChanges\n*******\n* Removed Python 3.3 compatibility\n* Updated encrypted PyPI password for Travis CI\n\nFixes\n*****\n\n* Replaced references to old ``CUSTOM_USERS_MAPPINGS`` setting with new ``CUSTOM_REDMINE_USER_JIRA_USER_MAPPINGS``\n* Retrieved issue user resource instance from cached users list rather than from issue lazy loaded instance\n* Disabled dynamic value mapping feature for Redmine \"User\" resource type\n\n\n0.5.0 (2018-02-06)\n------------------\n\nNew features\n************\n\n* Added dynamic resource value mapping management at runtime\n* Added dynamic resource value mapping for assignee field when it refers to a standard user\n* Added command to list issue priorities\n\nImprovements\n************\n\n* Made Redmine and Jira respective resource types explicit in the names of settings related to resource value mappings\n* Slightly improved settings related comments\n* Added labels for values printed in console output\n* Improved code readability\n* Slightly improved docstrings\n* Updated ``sphinx`` to 1.6.7\n* Updated ``coverage`` to 4.5\n\n\n0.4.0 (2018-01-26)\n------------------\n\nNew features\n************\n\n* Added dynamic project mappings management\n\nImprovements\n************\n\n* Refactored specific methods to save issue resources\n* Minor optimizations\n\n\n0.3.1 (2018-01-26)\n------------------\n\nImprovements\n************\n\n* Referenced users and groups are collected on-the-fly while exporting issues. This increases performance.\n* Minor enhancements in the console output for the completion of the export\n\nFixes\n*****\n\n* Fix recursive function used in ``list projects`` command to build the full project hierarchical name\n* Fixed a bug affecting all the ``list`` commands that caused some resource relations being included in the tables\n* Fixed another minor bug affecting all the ``list`` commands\n\n\n0.3.0 (2018-01-22)\n------------------\n\nImprovements\n************\n\n* Added early lookup of users and groups references within the issues being exported\n* Added command to list Redmine groups\n* Added option to list all Redmine users at once, including locked ones\n* Enhanced notes in configuration file\n\nChanges\n*******\n\n* Added requirements.txt for installation package requirements (useful for pyup.io)\n\n\n0.2.0 (2018-01-19)\n------------------\n\nImprovements\n************\n\n* Added PyCharm IDE configuration and Python Virtual Environments to .gitignore\n* Added configuration file with defaults and support for local configuration file\n* Minor documentation fixes\n\nChanges\n*******\n\n* Dropped out \"Redmine XLS Plugin\" in favor of Redmine REST API.\n\n Since the files exported by the plugin lack some information needed to produce files compatible with the Jira Importer Plugin (JIM),\n several calls to the Redmine REST API were needed to compensate the data. Hence to avoid the effort to merge the data coming from\n two difference sources I decided to rely solely on Redmine REST API to fetch all the needed data.\n\n This is a major project scope change that implied, in turn, the following modifications:\n\n - Renamed GitHub repository from \"redmine-xls-export2jira\" to \"redmine2jira\"\n - Renamed Python package from \"redmine_xls_export2jira\" to \"redmine2jira\"\n - Rename project description to \"Redmine to JIRA Importers plugin\"\n\n Any other reference to the \"Redmine XLS Export\" plugin has also been removed from the documentation.\n\n* Removed Python 2.7 compatibility. Added Python 3.6 compatibility.\n* Temporarily disable CLI tests\n\n\n0.1.1 (2018-01-05)\n------------------\n\nFixes\n*****\n\n* Minor fixes in docs\n\nImprovements\n************\n\n* Initial pyup.io update\n* Added pyup.io Python 3 badge\n\nChanges\n*******\n\n* Linked pyup.io\n* Removed CHANGELOG.rst\n\n\n0.1.0 (2018-01-05)\n------------------\n\n* First release on PyPI.\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/wandering-tales/redmine2jira", "keywords": "redmine2jira", "license": "MIT license", "maintainer": "", "maintainer_email": "", "name": "redmine2jira", "package_url": "https://pypi.org/project/redmine2jira/", "platform": "", "project_url": "https://pypi.org/project/redmine2jira/", "project_urls": { "Homepage": "https://github.com/wandering-tales/redmine2jira" }, "release_url": "https://pypi.org/project/redmine2jira/0.10.0/", "requires_dist": [ "Click (>=6.0)", "click-default-group (>=1.2)", "contextlib2 (==0.5.5)", "future (>=0.16.0)", "inflection (>=0.3)", "isodate (>=0.6)", "lxml (>=4.1)", "markdown (>=2.6)", "Pillow (>=5.0)", "python-redmine (<2.1,>=2.0)", "regex (>=2018.2)", "six (>=1.11)", "tabulate (>=0.8)", "textile (>=3.0)" ], "requires_python": "", "summary": "Export Redmine issues to file formats compatible with the JIRA Importers plugin (JIM)", "version": "0.10.0" }, "last_serial": 3669982, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "7f69d957cebcb639af9037a46d29304e", "sha256": "38293d4b8de6e16df76606a76c8a818771a071e59d582a95d79f6615188e05b3" }, "downloads": -1, "filename": "redmine2jira-0.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7f69d957cebcb639af9037a46d29304e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36872, "upload_time": "2018-03-14T18:54:01", "url": "https://files.pythonhosted.org/packages/9e/b8/49b91122a4322ccae2b02d32da9a3c6c1ec80d8c2d9ba03e244ed5a13503/redmine2jira-0.10.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cbdc5813eeaae952d1cf950704505431", "sha256": "56c2713dd106965c4ccbd826f27a8802b371c2c1c023a95a37a31bbddc51db66" }, "downloads": -1, "filename": "redmine2jira-0.10.0.tar.gz", "has_sig": false, "md5_digest": "cbdc5813eeaae952d1cf950704505431", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42026, "upload_time": "2018-03-14T18:54:03", "url": "https://files.pythonhosted.org/packages/a1/ef/46f591e8c88c74acaf41bed42a7f40b125c4734a10ed80594429ad80122f/redmine2jira-0.10.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "847505bccbdef9f89886b7842cb3dcd0", "sha256": "156b966aaeb35d3eca956410d3a5067678c9daebd6bbbc81106dc7e93b1d6706" }, "downloads": -1, "filename": "redmine2jira-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "847505bccbdef9f89886b7842cb3dcd0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12246, "upload_time": "2018-01-19T14:36:43", "url": "https://files.pythonhosted.org/packages/1d/36/07f20ff61bacf486287f394b43036aefcb7924a5e71250da6266d948a141/redmine2jira-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a7663eab1d438d9cbe6cd08c6beb1fbc", "sha256": "ce2645135350f0c0fb9c096b301cd5192223fd03e82a796a0f6523f4d3faeb88" }, "downloads": -1, "filename": "redmine2jira-0.2.0.tar.gz", "has_sig": false, "md5_digest": "a7663eab1d438d9cbe6cd08c6beb1fbc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18076, "upload_time": "2018-01-19T14:36:45", "url": "https://files.pythonhosted.org/packages/7f/ba/0419aa7d56ce25aa891a96534acf28b98cda217d3ec9b5d7cb9d058bf32a/redmine2jira-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "d5167ebead4d7fe72377869020efd00d", "sha256": "3eec49cdbf450ad3d80d418339d912a1037963d2a47685e885287dd531b1997b" }, "downloads": -1, "filename": "redmine2jira-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d5167ebead4d7fe72377869020efd00d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14972, "upload_time": "2018-01-21T23:36:13", "url": "https://files.pythonhosted.org/packages/82/1f/9f2914276661c5a2f4afdac38e10640aadd343336d3c4e8344e4609d8076/redmine2jira-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a9d4a6677cf2dcecf03e7d97dfa6f94c", "sha256": "3891d618411d43166af6af102fbf8aae9228834d6b6f886771f694c94f87d1ce" }, "downloads": -1, "filename": "redmine2jira-0.3.0.tar.gz", "has_sig": false, "md5_digest": "a9d4a6677cf2dcecf03e7d97dfa6f94c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20498, "upload_time": "2018-01-21T23:36:14", "url": "https://files.pythonhosted.org/packages/a7/e5/d72fcf0d68fcb1ea784d05dfb4515e6ac63da8374d2a00dd3e02aebde33b/redmine2jira-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "1a8af4d60a3e46a1392ca911f722eb3e", "sha256": "88bfcb8221fa30c38a590f6db555005af43a9ff61017039192b4299a1c0f7959" }, "downloads": -1, "filename": "redmine2jira-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1a8af4d60a3e46a1392ca911f722eb3e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15719, "upload_time": "2018-01-26T12:24:16", "url": "https://files.pythonhosted.org/packages/3e/4f/a21330d795f3b5f4adef21e38414a0a2f83930b65c1c18594ce64a7ec33e/redmine2jira-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aa4f26f58608ba9e9afc3a05c0e9bbb1", "sha256": "64d97bb95d501829599f84f003dda7485341c5f7f03b5f77bec6c0e3d0340fc2" }, "downloads": -1, "filename": "redmine2jira-0.3.1.tar.gz", "has_sig": false, "md5_digest": "aa4f26f58608ba9e9afc3a05c0e9bbb1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21133, "upload_time": "2018-01-26T12:24:26", "url": "https://files.pythonhosted.org/packages/9b/79/219f7625a401a1e3a7d7d4c933c1e6f0a0ed4445fbe019d6c976d20b6d7c/redmine2jira-0.3.1.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "a2c7427ca828d81389f329ae98f3dc2c", "sha256": "2716ecb38ebf62104fd40ec8c3e16c107b71ed31d3028f203ce7e0d1b1365715" }, "downloads": -1, "filename": "redmine2jira-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a2c7427ca828d81389f329ae98f3dc2c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16643, "upload_time": "2018-01-26T16:06:37", "url": "https://files.pythonhosted.org/packages/ce/a3/cbe8a6470fe41b41606580703e31b441d39563f3113e53bbf4453b3c13dc/redmine2jira-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b39b6ed2077fcfab7f0f3d94217b7bbb", "sha256": "a248eabb322defa558ac11e6836a6b76530c82711ba2abaa9b4fc85dc115590e" }, "downloads": -1, "filename": "redmine2jira-0.4.0.tar.gz", "has_sig": false, "md5_digest": "b39b6ed2077fcfab7f0f3d94217b7bbb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23301, "upload_time": "2018-01-26T16:06:40", "url": "https://files.pythonhosted.org/packages/46/96/ef9e10c885a87f6378b2d56b158e679a38887638ff10b641e7558778ad5b/redmine2jira-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "797eee626c5a9f6659c0de723fae1939", "sha256": "d70a4be847df16f1b24182605bd1d1dc4bcfce626f725f304e97a5feee41b596" }, "downloads": -1, "filename": "redmine2jira-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "797eee626c5a9f6659c0de723fae1939", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19601, "upload_time": "2018-02-06T17:20:33", "url": "https://files.pythonhosted.org/packages/d5/6f/7f8dfd881d407d26b5a6ad4c46ff74fe1c59c0abe0e4a8ff90a5466c791d/redmine2jira-0.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "801c4be3da9cef837d60d92b2d75bf01", "sha256": "6ff02b464d61248cc4460c9c7e8c36cb17f881089c6569106be612ed1d4a53d3" }, "downloads": -1, "filename": "redmine2jira-0.5.0.tar.gz", "has_sig": false, "md5_digest": "801c4be3da9cef837d60d92b2d75bf01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26526, "upload_time": "2018-02-06T17:20:34", "url": "https://files.pythonhosted.org/packages/62/28/09403f69dc4905cf04a7cd180e4687b280806e8fb3389b48b5d1e4b87d31/redmine2jira-0.5.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "2fdf9284216ef5964c695176669712ff", "sha256": "e2adf42d6856308647f0dfadf99827c71534761c8c419c9ed18a1fb767aec1f8" }, "downloads": -1, "filename": "redmine2jira-0.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2fdf9284216ef5964c695176669712ff", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11020, "upload_time": "2018-02-07T19:26:21", "url": "https://files.pythonhosted.org/packages/05/13/4573ae3606a5c83f536d92a3b79c5ce2d9c937719ecf14c813a3e6ccccbf/redmine2jira-0.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "16053e060d524433ef913966abf5834a", "sha256": "b55366538064317285ac4cc2b77140aebc63ba9041257736bb4df605fa0a1588" }, "downloads": -1, "filename": "redmine2jira-0.6.1.tar.gz", "has_sig": false, "md5_digest": "16053e060d524433ef913966abf5834a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18632, "upload_time": "2018-02-07T19:26:24", "url": "https://files.pythonhosted.org/packages/5c/bf/1a14bb28aab4f327e977ede4f061c2cba54d4d7a29f44621ccd4acd712f4/redmine2jira-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "4fb6296544a8e0d67259e0a334bb0536", "sha256": "2fa3822673d8649f859928ff7e469c874108407760e0e09dc3b4ea8c0a2c5d3f" }, "downloads": -1, "filename": "redmine2jira-0.6.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4fb6296544a8e0d67259e0a334bb0536", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22396, "upload_time": "2018-02-08T15:44:09", "url": "https://files.pythonhosted.org/packages/81/63/c9aa04ef05536bb365588189924bdba57a9e3afff831af7831aff31292c2/redmine2jira-0.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9a9211f46b2cb40ed4008bd8f22dd604", "sha256": "7b8cc48e84df49c614d213985746d9b18a6c3491df6d8640324b68bd7890dcd1" }, "downloads": -1, "filename": "redmine2jira-0.6.2.tar.gz", "has_sig": false, "md5_digest": "9a9211f46b2cb40ed4008bd8f22dd604", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28686, "upload_time": "2018-02-08T15:44:10", "url": "https://files.pythonhosted.org/packages/f9/2b/29ac352c232ddc184e6e74606abf1cc973b451186fb32ff8df514ef0db52/redmine2jira-0.6.2.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "055e56f8e911814452df3f7c0e825c8d", "sha256": "f4cdfd400538398b3536b03af538784d9d857641c4f677c060b51e880ae97855" }, "downloads": -1, "filename": "redmine2jira-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "055e56f8e911814452df3f7c0e825c8d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24081, "upload_time": "2018-02-10T00:14:49", "url": "https://files.pythonhosted.org/packages/70/f8/af9ecfc60bc8191aaf45a3160a939e5696a6183b9ad61289bb3b5c3e85d8/redmine2jira-0.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6c5b29a288be08ec3fa51e3cc4b9bb96", "sha256": "75fc7940396c8b2b52dcc4ad5e27c2ed6fe75a24e49cc4e1f25e90e1868af82b" }, "downloads": -1, "filename": "redmine2jira-0.7.0.tar.gz", "has_sig": false, "md5_digest": "6c5b29a288be08ec3fa51e3cc4b9bb96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30174, "upload_time": "2018-02-10T00:14:51", "url": "https://files.pythonhosted.org/packages/fb/4b/ad1c68e57b4186dfffdd9559056aa1c7c3913dba0384805b8746bbc733b1/redmine2jira-0.7.0.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "76ccbce17da299d331db46bb87520e93", "sha256": "d02b8ba48bf0fdbae100088e7974f42746f14ac6ee7408f2e06ca6d8bf522ab0" }, "downloads": -1, "filename": "redmine2jira-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "76ccbce17da299d331db46bb87520e93", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25179, "upload_time": "2018-02-10T22:04:10", "url": "https://files.pythonhosted.org/packages/d2/f2/d4d8fbd5893652551c356a7797e26ef4ae82f6f1580d75519be7898fcb82/redmine2jira-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "da5c44247318bec7c7c97f12771d8879", "sha256": "631a421aef9babf8f5a5bcaa504dc36b60596a2ed2155358606843a293f8c3f0" }, "downloads": -1, "filename": "redmine2jira-0.8.0.tar.gz", "has_sig": false, "md5_digest": "da5c44247318bec7c7c97f12771d8879", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31118, "upload_time": "2018-02-10T22:04:12", "url": "https://files.pythonhosted.org/packages/0b/4c/008578a93b09e4e06db56d1d995041ef3981647289401c3a0530de5dd19b/redmine2jira-0.8.0.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "9b9c38fb81565e0639a39fec9d030851", "sha256": "8f40bf74c0942ba0cb50e0dcbfe8c00101ea9faaf640f732b150d89b219e3d9d" }, "downloads": -1, "filename": "redmine2jira-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9b9c38fb81565e0639a39fec9d030851", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24728, "upload_time": "2018-02-11T13:53:55", "url": "https://files.pythonhosted.org/packages/68/eb/0ec724cbdd9779ec1cef985dfc3604f6bd2bdb715b1555b44f6174b98f2e/redmine2jira-0.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2111a12a9099458cf0f24d8882268d95", "sha256": "e8c9804211b1190476296bc66cfb066b6192e5c704919fbf17a8ae1949418691" }, "downloads": -1, "filename": "redmine2jira-0.9.0.tar.gz", "has_sig": false, "md5_digest": "2111a12a9099458cf0f24d8882268d95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30635, "upload_time": "2018-02-11T13:53:56", "url": "https://files.pythonhosted.org/packages/1e/4d/b308ea8c152c10c6b7921f19d0c28a734f193ac8a4e9c8ce04dd0b4e3c74/redmine2jira-0.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7f69d957cebcb639af9037a46d29304e", "sha256": "38293d4b8de6e16df76606a76c8a818771a071e59d582a95d79f6615188e05b3" }, "downloads": -1, "filename": "redmine2jira-0.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7f69d957cebcb639af9037a46d29304e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36872, "upload_time": "2018-03-14T18:54:01", "url": "https://files.pythonhosted.org/packages/9e/b8/49b91122a4322ccae2b02d32da9a3c6c1ec80d8c2d9ba03e244ed5a13503/redmine2jira-0.10.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cbdc5813eeaae952d1cf950704505431", "sha256": "56c2713dd106965c4ccbd826f27a8802b371c2c1c023a95a37a31bbddc51db66" }, "downloads": -1, "filename": "redmine2jira-0.10.0.tar.gz", "has_sig": false, "md5_digest": "cbdc5813eeaae952d1cf950704505431", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42026, "upload_time": "2018-03-14T18:54:03", "url": "https://files.pythonhosted.org/packages/a1/ef/46f591e8c88c74acaf41bed42a7f40b125c4734a10ed80594429ad80122f/redmine2jira-0.10.0.tar.gz" } ] }