{"id":19989155,"url":"https://github.com/clamytoe/mc_enchant","last_synced_at":"2026-07-16T01:33:22.672Z","repository":{"id":45111315,"uuid":"188054014","full_name":"clamytoe/mc_enchant","owner":"clamytoe","description":"Little utility to facilitate with generating the code needed to spawn enchanted objects in Minecraft","archived":false,"fork":false,"pushed_at":"2026-05-28T12:38:52.000Z","size":48,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-05-28T14:09:41.716Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/clamytoe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-05-22T14:20:59.000Z","updated_at":"2026-05-28T12:38:56.000Z","dependencies_parsed_at":"2024-07-08T14:53:12.230Z","dependency_job_id":null,"html_url":"https://github.com/clamytoe/mc_enchant","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/clamytoe/mc_enchant","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clamytoe%2Fmc_enchant","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clamytoe%2Fmc_enchant/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clamytoe%2Fmc_enchant/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clamytoe%2Fmc_enchant/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/clamytoe","download_url":"https://codeload.github.com/clamytoe/mc_enchant/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clamytoe%2Fmc_enchant/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35527285,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-15T02:00:06.706Z","response_time":131,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T04:45:39.177Z","updated_at":"2026-07-16T01:33:22.657Z","avatar_url":"https://github.com/clamytoe.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Minecraft Enchantments Generator (*mc_enchant*)\n\n\u003e *Little utility to facilitate with generating the code needed to spawn enchanted objects in Minecraft*\n\n![Python version][python-version]\n![Latest version][latest-version]\n[![GitHub issues][issues-image]][issues-url]\n[![GitHub forks][fork-image]][fork-url]\n[![GitHub Stars][stars-image]][stars-url]\n[![License][license-image]][license-url]\n\nNOTE: This app was generated with [Cookiecutter](https://github.com/audreyr/cookiecutter) along with [@clamytoe's](https://github.com/clamytoe) [toepack](https://github.com/clamytoe/toepack) project template.\n\n**mc_enchant** is a tiny utility that makes creating enchanted Minecraft items painless.\nInstead of digging through wikis or remembering which enchantments go on which items, you just pick what you want from a simple interactive menu.\n\nThe tool knows every valid enchantment, level, and compatibility rule in vanilla Minecraft, and instantly builds the correct `/give` command for you — no internet required.\n\n## Initial setup\n\n```zsh\ncd Projects\ngit clone https://github.com/clamytoe/mc_enchant.git\ncd mc_enchant\n```\n\n### Anaconda setup\n\nIf you are an Anaconda user, this command will get you up to speed with the base installation.\n```zsh\nconda env create -f environment.yml\nconda activate mc\n```\n\n### Regular Python setup\n\nIf you are just using normal Python, this will get you ready, but I highly recommend that you do this in a virtual environment. There are many ways to do this, the simplest using *venv*.\n\n```zsh\npython3 -m venv venv\nsource venv/bin/activate\npip install -r requirements.txt\n```\n\n### Final setup\n\n```zsh\npip install -e .\n```\n\n## Usage\n\n```zsh\nmc_enchant\n```\n\n\u003e **NOTE**: If your shell automatically `cd`'s you into the `mc_enchant` directory, you can run the app with `python -m mc_enchant` or run `unsetopt auto_cd` at the command prompt to prevent this from happening.\n\n## Contributing\n\nContributions are very welcome. Tests can be run with with `pytest -v`, please ensure that all tests are passing and that you've checked your code with the following packages before submitting a pull request:\n\n* black\n* isort\n* mypy\n\nI am not adhering to them strictly, but try to clean up what's reasonable.\n\n## License\n\nDistributed under the terms of the [MIT](https://opensource.org/licenses/MIT) license, \"mc_enchant\" is free and open source software.\n\n## Issues\n\nIf you encounter any problems, please [file an issue](https://github.com/clamytoe/toepack/issues) along with a detailed description.\n\n## Changelog\n\n* **v0.6.1** Made project PEP-621 compliant.\n* **v0.6.0** Refactored code because app.py was getting too big.\n* **v0.5.0** Rebuilt whole test suite to better hit more edge cases.\n* **v0.4.0** Updated to Python 3.13.3 and improved scraping source website.\n* **v0.3.0** Added conflict resolution, data caching, ease of use features.\n* **v0.2.0** Refactored project and completed the code.\n* **v0.1.0** Initial commit.\n\n[python-version]:https://img.shields.io/badge/python-3.13.3-brightgreen.svg\n[latest-version]:https://img.shields.io/badge/version-0.6.1-blue.svg\n[issues-image]:https://img.shields.io/github/issues/clamytoe/mc_enchant.svg\n[issues-url]:https://github.com/clamytoe/mc_enchant/issues\n[fork-image]:https://img.shields.io/github/forks/clamytoe/mc_enchant.svg\n[fork-url]:https://github.com/clamytoe/mc_enchant/network\n[stars-image]:https://img.shields.io/github/stars/clamytoe/mc_enchant.svg\n[stars-url]:https://github.com/clamytoe/mc_enchant/stargazers\n[license-image]:https://img.shields.io/github/license/clamytoe/mc_enchant.svg\n[license-url]:https://github.com/clamytoe/mc_enchant/blob/master/LICENSE\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclamytoe%2Fmc_enchant","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclamytoe%2Fmc_enchant","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclamytoe%2Fmc_enchant/lists"}