{ "info": { "author": "Misza", "author_email": "misza@misza.net", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Topic :: Games/Entertainment" ], "description": "Carrot is a command-line interface for managing Minecraft mods in an MC instance.\n\nIt uses an API that indexes all mods and files on CurseForge.\n\n# Installation\n\n## From PyPI\n\nCarrot is published on [PyPI](https://pypi.org/project/carrot-mc/),\ntherefore the best way to install it is via `pip`:\n\n pip install carrot-mc\n\nThis assumes you're installing it in a virtualenv environment.\nIf you're installing it globally on Linux, you'll probably need to prepend\nthe above command with `sudo`.\n\n## From source\n\nYou can also download and build your own copy straight from source:\n\n git clone https://github.com/Misza13/carrot\n cd carrot\n python setup.py install\n\n# Usage\n\n**Important notes:**\n - All commands operate in **the current directory** and assume that you're\n currently in the `mods/` directory of your Minecraft instance.\n - Mods are referred to by their \"key\", which is the string as it is used\n in CurseForge URLs, e.g. for\n \"[Tinkers' Construct](https://minecraft.curseforge.com/projects/tinkers-construct)\"\n mod, it's `tinkers-construct`.\n\nTo get general help about the program, simply type\n\n carrot\n\nwithout any arguments (or just `-h` or `--help`) to see all available commands.\n\nTo get help on a specific command, run e.g.\n\n carrot install -h\n\nAdditional pointers on some of the commands follow.\n\n## `init` - initialize the mod repository\n\nBefore any usage, you must initialize a mod repository and select the\nMinecraft version of this instance, e.g.:\n\n carrot init --mc_version 1.12.2\n\nThis will create a `mods.json` file in the current directory that will hold\ninformation on the installed mods.\n\nBe aware that this will initialize the repository aligned with the `Beta` channel\non CurseForge. To use a different channel, use the `--channel` command, e.g.:\n\n carrot init --mc_version 1.12.2 --channel Release\n\nThe channel determines the stability of mod releases that you wish to receive.\n`Beta` is a good default and you may manually override it in other commands\nusing the same option.\n\n## `install` - install a mod\n\nIf you know the exact key of the mod, install it in the current directory using\n\n carrot install jei\n\nThe above example would install the mod \"Just Enough Items\" because `jei` is\nits exact key name. Note that it will use Minecraft version and channel\nsettings from `mods.json`. The channel can be overridden:\n\n carrot install jei --channel Release\n\nIf there is no mod that matches exactly what you've typed, e.g.\n\n carrot install applied\n\nyou will be presented with a list of top-downloaded mods that have `applied`\nin their key (presumably related to Applied Energistics 2 mod).\n\nStay tuned for a planned `carrot search` command that will allow to search\nin names and descriptions of mods.\n\n`install` pulls dependencies, if there are any, e.g.\n\n carrot install tinkers-construct\n\nwill install both Tinkers' Construct itself as well as \"Mantle\", the\nlibrary dependency.\n\nYou can also install multiple mods at once by specifying their keys:\n\n carrot install pams-harvestcraft cooking-for-blockheads\n\nIn this mode, Carrot will not display suggestions if keys are not precise,\nbut instead will simply inform you that the mod was not found and install\nonly what it can find.\n\nIn case of conflicts (e.g. different versions of dependencies either due to\nupdates or pulling mods from different channels), Carrot will leave already\ninstalled files untouched (to ensure that nothing that already worked breaks),\nbut you can override this behaviour with `--upgrade` and `--downgrade` flags\n(see `carrot install -h` for details). Carrot will verbosely inform you if\nthis happens, so do pay attention to its output.\n\n## `update` - update mod(-s) to newer/older versions\n\nIn its simplest form:\n\n carrot update\n\nCarrot will attempt to update all currently installed mods (along with their\ndependencies) to their newest versions.\n\nCarrot will use the same channel for a mod as the one used to install it,\nunless told so otherwise with `--channel`. This means that if, for example,\nyour entire modpack is set to the `Beta` channel but one mod was installed\nexplicitly with `--channel Alpha`, that one mod (as well as its dependencies)\nwill be updated to the latest `Alpha` file but the rest of the mods will use\nthe default of `Beta`\n\nYou can request only a single mod (with dependencies) to be updated with:\n\n carrot update rftools\n\nAdditionally, you can force a target channel with `--channel` option,\nwhich can cause mods to go both up as well as down in versions.\nSimilarly to `install`, you must explicitly allow `--downgrade` if\nyou want older versions of mods to be installed. However, unlike\nduring installation, the equivalent of `--upgrade` is \"always on\".\n\n## `status` - display status of mod repository\n\nTo see a summary of mod installation use:\n\n carrot status\n\nThis will display the following information:\n - Number of mods installed\n - How many of those are dependencies\n - How many mods are disabled (following the `.disabled` convention)\n - List mods whose file is missing (disabled or not)\n - List mods whose file is corrupted (MD5 hash does not match the published one)\n\n## `list` - display list of installed mods\n\nTo see the complete list of installed mods use:\n\n carrot list\n\nThis will not only list all mods installed according to `mods.json` but will also\ndisplay a status of each:\n - whether file is present or missing,\n - whether it's `.disabled` or not,\n - whether MD5 checksum is correct.\n\n## `enable` and `disable` - enable/disable mods\n\nTo enable a mod, use\n\n carrot enable MOD_KEY\n\nMany mod keys can be specified at the same time, e.g.:\n\n carrot enable rftools rftools-dimensions\n\nSimilarly,\n\n carrot disable MOD_KEY\n\nwill disable a mod (or many mods, if more than one is specified).\n\nBe aware that as of now, dependencies are not disabled/enabled along with the\nmain mod and have to be toggled manually.\n\n### Enabled/disabled mods\n\nCarrot does not store the enabled/disabled status of mods in `mods.json` and\nonly looks at the file's name to determine the status. This way, it should be\ncompatible with other mod managers such as MultiMC which use the standard\nconvention of disabling mods by appending `.disabled` to their file names.\n\nWhen installing/updating mods, Carrot will preserve the status, i.e. a disabled\nmod will remain disabled after an update and you have to enable it manually.\n\n## `web-gui` - launch a web user interface\n\nTo start a web-based interface, simply type:\n\n carrot web-gui\n\nCarrot comes with an internal webserver that will launch with this command.\nBy default (that is, unless overridden by the `--host` and `--port` options),\nit will listen on http://localhost:8877/ - just point your browser to that\naddress.\n\nIn the `web-gui` you should be able to perform most of the tasks available\npurely from the command line. Thus far missing are:\n - `update`\n - `install` with a specific `--channel`\n\n# Future / planned features\n\n## Must-haves for 1.0\n\n - `search` (in CLI)\n - Uninstall mods (with pruning of unused dependencies)\n - Fix broken mods (missing/corrupted file)\n - Accept directory with mods as parameter instead of always using current\n - Align `web-gui` features with CLI\n\n## After 1.0\n\n - Manage multiple instances in the Web GUI\n - Copy/paste entire sets of mods between instances\n - Lists of \"favourite\" sets of mods for easier modpack creation\n - Modpack management - packing/unpacking along with config, resources etc.\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/Misza13/carrot", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "carrot-mc", "package_url": "https://pypi.org/project/carrot-mc/", "platform": "", "project_url": "https://pypi.org/project/carrot-mc/", "project_urls": { "Homepage": "https://github.com/Misza13/carrot" }, "release_url": "https://pypi.org/project/carrot-mc/0.5.3/", "requires_dist": [ "requests", "Flask", "Flask-SocketIO", "eventlet" ], "requires_python": "", "summary": "Command-line Minecraft mod manager", "version": "0.5.3" }, "last_serial": 5251055, "releases": { "0.3": [ { "comment_text": "", "digests": { "md5": "095bb3e12cb268a09aeab0e30d2c38fa", "sha256": "ef2836aef13a1a04ada3401e111ac4c958658e312f789abf0c118a141f49c80c" }, "downloads": -1, "filename": "carrot_mc-0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "095bb3e12cb268a09aeab0e30d2c38fa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8597, "upload_time": "2018-12-21T22:24:02", "url": "https://files.pythonhosted.org/packages/b8/23/36ee89f322d8ff4bb79e87bb4186346fda9ad123df46d60400358605e1c1/carrot_mc-0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a7a7717197637e840fb0245fc0461f38", "sha256": "942d64708f6d057005cfa7ce48a32a95c852825c2a957a0a385f51fe50f84321" }, "downloads": -1, "filename": "carrot_mc-0.3.tar.gz", "has_sig": false, "md5_digest": "a7a7717197637e840fb0245fc0461f38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6011, "upload_time": "2018-12-21T22:24:04", "url": "https://files.pythonhosted.org/packages/07/af/942ec7401d3175b961959fa2bb7aaa539190c50c1f8d57baac64125129c8/carrot_mc-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "5f619644bd7c57387e94de5b774e5ced", "sha256": "9e4cf8f1d6d335b63c5f7c420118d6b190141a7bf984201f8159db06dd75a3c8" }, "downloads": -1, "filename": "carrot_mc-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5f619644bd7c57387e94de5b774e5ced", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10505, "upload_time": "2018-12-21T23:25:49", "url": "https://files.pythonhosted.org/packages/1e/1a/16567f53b3ef3347772220ecd82e664b76b44f73729b083e1f6b8f49624c/carrot_mc-0.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c44b1deb5cdf2c4a90be9fc472c97c39", "sha256": "3e793ee9ddbe32fdec747a25418b478721de359663bd44830905eae165e9ae29" }, "downloads": -1, "filename": "carrot_mc-0.3.1.tar.gz", "has_sig": false, "md5_digest": "c44b1deb5cdf2c4a90be9fc472c97c39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8219, "upload_time": "2018-12-21T23:25:51", "url": "https://files.pythonhosted.org/packages/7b/f2/b6dab3d199eebc9fa20e36cc32512ae8c1ab355c856c5e5e6b703900569b/carrot_mc-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "37608f5e33350562ad14c4586274f160", "sha256": "626946bf7cd28ff3f48a0f695e1bf2f217318efb7424a3cab2a8fadc696dff72" }, "downloads": -1, "filename": "carrot_mc-0.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "37608f5e33350562ad14c4586274f160", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10511, "upload_time": "2018-12-21T23:30:38", "url": "https://files.pythonhosted.org/packages/dd/d2/8c898bb1e05306eb4ef19d55e7fb3d2c6f8545bcabbf16d3d7de1f3978a3/carrot_mc-0.3.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a1b731d1c7fff2bb9346758579421516", "sha256": "18c239ab157e514a0cecb61c4aa1723b4b5bd4289de2a96be55e7174247ebc0c" }, "downloads": -1, "filename": "carrot_mc-0.3.2.tar.gz", "has_sig": false, "md5_digest": "a1b731d1c7fff2bb9346758579421516", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8226, "upload_time": "2018-12-21T23:30:40", "url": "https://files.pythonhosted.org/packages/d2/13/d132acd6c672a85d82ae0dee7b0d34810a8da5c23bf4bfb0a111fb4276d5/carrot_mc-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "87951af9832677d214ede3530d34734e", "sha256": "6d455cc45f9bb35fdff74f710dc8dc9c2ced2d10405d287b583c75c3f441cfd9" }, "downloads": -1, "filename": "carrot_mc-0.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "87951af9832677d214ede3530d34734e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11028, "upload_time": "2018-12-22T12:35:11", "url": "https://files.pythonhosted.org/packages/80/4f/41dfcfea4fe15d50e58975a2a77724d5876738be6adee517163a8f793e69/carrot_mc-0.3.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2659b19df05c5c49f7b7a4e2d9a61ced", "sha256": "6b0b4b7f8e8fc2699082d85fda846cd47cb1e6b3ef32b956c4b8a81897ba2b25" }, "downloads": -1, "filename": "carrot_mc-0.3.3.tar.gz", "has_sig": false, "md5_digest": "2659b19df05c5c49f7b7a4e2d9a61ced", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8610, "upload_time": "2018-12-22T12:35:12", "url": "https://files.pythonhosted.org/packages/aa/f5/379b7410424a699b0dc58fad79158cb976b8a7445ade003137d1f150e068/carrot_mc-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "5fb3f1cfdd45a365d6b9b3bf524853f2", "sha256": "91b4cfc9f1462c220adddb0f1f3a55f75b09c11f93fea236004a4fbd2f05c7f1" }, "downloads": -1, "filename": "carrot_mc-0.3.4-py3-none-any.whl", "has_sig": false, "md5_digest": "5fb3f1cfdd45a365d6b9b3bf524853f2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11078, "upload_time": "2018-12-23T12:33:32", "url": "https://files.pythonhosted.org/packages/69/f4/8fd3f10bb5829be62c8431beac7d890a4e6224e97513529343165ca0801c/carrot_mc-0.3.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "03e5447f5be399943cc402e477f6ae74", "sha256": "8162f49f746bc81f5b03b6d1f65071abeeac984ab409decd22d909a5bf75382c" }, "downloads": -1, "filename": "carrot_mc-0.3.4.tar.gz", "has_sig": false, "md5_digest": "03e5447f5be399943cc402e477f6ae74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8658, "upload_time": "2018-12-23T12:33:33", "url": "https://files.pythonhosted.org/packages/df/bf/542e1c28dcefd36f69080888704d6cd26b3ed35cdbe7f639790df190bc3c/carrot_mc-0.3.4.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "d1dbf204d4282e1f9d1631ee60c4e5f3", "sha256": "f8da7ee2ed1be4b4eab7c0d1c6535a049ab9fafb7e23b6b0e74da5c1f1f90ed8" }, "downloads": -1, "filename": "carrot_mc-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d1dbf204d4282e1f9d1631ee60c4e5f3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 12057, "upload_time": "2018-12-27T10:38:23", "url": "https://files.pythonhosted.org/packages/c4/9a/2aacd8734b0b97fbd5663e4404e6b1d9fe7351fb2f2620b994b1c618ee9d/carrot_mc-0.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bd0de005d3059ed4ac3e017c44693ce8", "sha256": "f1a5da1546c171ef2d3821639654cf26a28c8eb990eba973a1e4e742bd5852cc" }, "downloads": -1, "filename": "carrot_mc-0.4.0.tar.gz", "has_sig": false, "md5_digest": "bd0de005d3059ed4ac3e017c44693ce8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11628, "upload_time": "2018-12-27T10:38:25", "url": "https://files.pythonhosted.org/packages/f9/8c/1e8f616c0b600c81239486dffe2642f4f3611dd506169017f381e7adf569/carrot_mc-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "dc2667906bb5fec3e3a05089e60be784", "sha256": "6b2e78e406b6da92d8e10045c2e04f8ec83ab98d7ae460125c78cbb3caf9fef8" }, "downloads": -1, "filename": "carrot_mc-0.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "dc2667906bb5fec3e3a05089e60be784", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 12079, "upload_time": "2019-01-05T15:55:39", "url": "https://files.pythonhosted.org/packages/c9/44/2799de0e03530cb27af68834a324148d2a93e82d15c12ce308e83d15457d/carrot_mc-0.4.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "748f395bd622bef4cc84e8140617adb8", "sha256": "e656cca2a1b060066c57d3779d6dc10d76e2f73ec7d210589b39aa5dbaa7623a" }, "downloads": -1, "filename": "carrot_mc-0.4.1.tar.gz", "has_sig": false, "md5_digest": "748f395bd622bef4cc84e8140617adb8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9747, "upload_time": "2019-01-05T15:55:40", "url": "https://files.pythonhosted.org/packages/28/59/def8b91812caa91943a4ba0d7f953f43bac51adfa937b4922d3f9fc15c4c/carrot_mc-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "499fa74aea5318f8d6d859eae52fe1a8", "sha256": "392f3b14b0e9aa515f72075903687d6b1b67204836a20da82d4da6b6486e98d7" }, "downloads": -1, "filename": "carrot_mc-0.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "499fa74aea5318f8d6d859eae52fe1a8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 12211, "upload_time": "2019-01-10T09:42:35", "url": "https://files.pythonhosted.org/packages/c4/41/be3b8127a26f31cf1d3969d73b9cecdd41cf8a01424c8b26dadddff59300/carrot_mc-0.4.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "60187bad1421c26fb6b744094ea5ef6b", "sha256": "7dae650d858b50029a05a505ebff26a1a8db9ab4ee408c5ebd39a1629d8316bf" }, "downloads": -1, "filename": "carrot_mc-0.4.2.tar.gz", "has_sig": false, "md5_digest": "60187bad1421c26fb6b744094ea5ef6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11904, "upload_time": "2019-01-10T09:42:37", "url": "https://files.pythonhosted.org/packages/67/20/92a8b22e57d6986ebc9e0d9d6887b6fd7d7892895ffe5fbe6fc30e3c8af8/carrot_mc-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "c70723c21da01172da18b37e7cd746c7", "sha256": "43a1442f2011b4b01a86dbaa84cd5fcb3fbf86526110e6b677ef0eb48fefd762" }, "downloads": -1, "filename": "carrot_mc-0.4.3-py3-none-any.whl", "has_sig": false, "md5_digest": "c70723c21da01172da18b37e7cd746c7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 12383, "upload_time": "2019-01-10T13:03:34", "url": "https://files.pythonhosted.org/packages/d9/31/52479f71a00c15ccfc9a341c9ca75c65e3a09c481ddce5a786b54f7c0ec4/carrot_mc-0.4.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8fd2994eab2c02fbca6527f7fcf35f22", "sha256": "910c3ea4d73fa2f8aa87dd0fbe730bf365b1a244d6c1958073dd92b0d477ce29" }, "downloads": -1, "filename": "carrot_mc-0.4.3.tar.gz", "has_sig": false, "md5_digest": "8fd2994eab2c02fbca6527f7fcf35f22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12096, "upload_time": "2019-01-10T13:03:36", "url": "https://files.pythonhosted.org/packages/14/3c/64e3390eec37c78ed482c31494f3f50238b715257155cefb3a731bfe7560/carrot_mc-0.4.3.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "0f20360e93d39b9c6bf5ea4fddec80a1", "sha256": "f83204dc0b8c2f04108afd38bcadb0733b01c7ed926ebccccfb61e26a3d66ee4" }, "downloads": -1, "filename": "carrot_mc-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "0f20360e93d39b9c6bf5ea4fddec80a1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 744114, "upload_time": "2019-01-13T19:31:12", "url": "https://files.pythonhosted.org/packages/9a/5a/c4e0f44694838501a05aa3b0980bcb0a22149e728b05a6013e37a20055c5/carrot_mc-0.5.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "19a9839e841e84924baf2ba53c1747e0", "sha256": "d218a41f716552b4adaae5f1089150b99a7bacaf90b55dc5c82821790fd3f4ad" }, "downloads": -1, "filename": "carrot_mc-0.5.0.tar.gz", "has_sig": false, "md5_digest": "19a9839e841e84924baf2ba53c1747e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 734477, "upload_time": "2019-01-13T19:31:15", "url": "https://files.pythonhosted.org/packages/08/36/80a6804c3ad868ac81196bf2ccddf12b2e0f2027ea72eda6fe7f1c44355f/carrot_mc-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "c513fa783c2b9d5717025925d332c9d5", "sha256": "c1f8d775130a48cecb10bf3fa804bd127e2ccf60c32b65390c4d25806c29284f" }, "downloads": -1, "filename": "carrot_mc-0.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c513fa783c2b9d5717025925d332c9d5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 744682, "upload_time": "2019-01-16T09:19:23", "url": "https://files.pythonhosted.org/packages/40/6e/7799fd62c619afd455e9dcc3e23ade2c7659f5df1bad32bbb129a2e80905/carrot_mc-0.5.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ed3d3de967296de1e030d15e726b85ba", "sha256": "143bd4c041fa7a4d90ec6d4681fe171d483c541f4f41cd441e88a8e6fa8bb11e" }, "downloads": -1, "filename": "carrot_mc-0.5.1.tar.gz", "has_sig": false, "md5_digest": "ed3d3de967296de1e030d15e726b85ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 737600, "upload_time": "2019-01-16T09:19:26", "url": "https://files.pythonhosted.org/packages/51/3d/700e00ff7fa38400b6df1b02304412232ccfd9ff7c0e6b4f520dd503bf70/carrot_mc-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "cb304894da8c531c76f0e30678953ce9", "sha256": "c7ae169702f58b4a047e3c3131fbbea6babf58636b5177036dfaf9437f3befa7" }, "downloads": -1, "filename": "carrot_mc-0.5.2-py3-none-any.whl", "has_sig": false, "md5_digest": "cb304894da8c531c76f0e30678953ce9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 745037, "upload_time": "2019-01-16T11:58:42", "url": "https://files.pythonhosted.org/packages/62/4d/0e2b54a4bf2dbd6a77852bea894fcb75d166b7dd6d72527f4b0bf8f2808a/carrot_mc-0.5.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6eb99af3339e3c62fa123e28cc1671e8", "sha256": "4d14b121825cc88865066b5b73d2f7ed1052af6c22eb689d6c5789a50c601655" }, "downloads": -1, "filename": "carrot_mc-0.5.2.tar.gz", "has_sig": false, "md5_digest": "6eb99af3339e3c62fa123e28cc1671e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 737921, "upload_time": "2019-01-16T11:58:44", "url": "https://files.pythonhosted.org/packages/35/fc/7388d1bed78cbe287c3fdb3bdfe1499110bf68620768597e670b76225138/carrot_mc-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "5bf5f0571e650b12def067f73a34f167", "sha256": "690ad0b07f6d0cc53bc67d77aecd10a22b61bee8a0ca17baecf24191dd78d04b" }, "downloads": -1, "filename": "carrot_mc-0.5.3-py3-none-any.whl", "has_sig": false, "md5_digest": "5bf5f0571e650b12def067f73a34f167", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 753528, "upload_time": "2019-05-10T07:45:34", "url": "https://files.pythonhosted.org/packages/33/4a/f943563a9a9220896dca65f090f71951a3fffd612e96b0d62bee9a2defe6/carrot_mc-0.5.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5913ac7d5a85fe40850795d72e313d45", "sha256": "009ac465ecb94f2af41bbf7f333c8c7c13c5cdba4db18fde3cd58789ad528e05" }, "downloads": -1, "filename": "carrot_mc-0.5.3.tar.gz", "has_sig": false, "md5_digest": "5913ac7d5a85fe40850795d72e313d45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 746367, "upload_time": "2019-05-10T07:45:36", "url": "https://files.pythonhosted.org/packages/52/ac/d2629235ee684b37c69d0be500153a170d34cdfca37f4132f216b652ce17/carrot_mc-0.5.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5bf5f0571e650b12def067f73a34f167", "sha256": "690ad0b07f6d0cc53bc67d77aecd10a22b61bee8a0ca17baecf24191dd78d04b" }, "downloads": -1, "filename": "carrot_mc-0.5.3-py3-none-any.whl", "has_sig": false, "md5_digest": "5bf5f0571e650b12def067f73a34f167", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 753528, "upload_time": "2019-05-10T07:45:34", "url": "https://files.pythonhosted.org/packages/33/4a/f943563a9a9220896dca65f090f71951a3fffd612e96b0d62bee9a2defe6/carrot_mc-0.5.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5913ac7d5a85fe40850795d72e313d45", "sha256": "009ac465ecb94f2af41bbf7f333c8c7c13c5cdba4db18fde3cd58789ad528e05" }, "downloads": -1, "filename": "carrot_mc-0.5.3.tar.gz", "has_sig": false, "md5_digest": "5913ac7d5a85fe40850795d72e313d45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 746367, "upload_time": "2019-05-10T07:45:36", "url": "https://files.pythonhosted.org/packages/52/ac/d2629235ee684b37c69d0be500153a170d34cdfca37f4132f216b652ce17/carrot_mc-0.5.3.tar.gz" } ] }