{"id":21362833,"url":"https://github.com/legopitstop/mcextract","last_synced_at":"2026-05-17T21:07:20.269Z","repository":{"id":178746650,"uuid":"662305726","full_name":"legopitstop/mcextract","owner":"legopitstop","description":"Extract assets and data from the Minecraft jar.","archived":false,"fork":false,"pushed_at":"2024-04-11T17:43:43.000Z","size":87,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-04-11T22:19:32.985Z","etag":null,"topics":["assets","customtkinter","data","jar","java","minecraft","pypi","python","pythonpackage","reports","serverjars","userfolder"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/mcextract/","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/legopitstop.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":null,"patreon":"Legopitstop","open_collective":null,"ko_fi":"legopitstop","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2023-07-04T20:41:40.000Z","updated_at":"2024-04-15T05:39:54.625Z","dependencies_parsed_at":"2024-04-15T05:54:01.004Z","dependency_job_id":null,"html_url":"https://github.com/legopitstop/mcextract","commit_stats":null,"previous_names":["legopitstop/mcextract"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/legopitstop/mcextract","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/legopitstop%2Fmcextract","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/legopitstop%2Fmcextract/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/legopitstop%2Fmcextract/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/legopitstop%2Fmcextract/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/legopitstop","download_url":"https://codeload.github.com/legopitstop/mcextract/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/legopitstop%2Fmcextract/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33155542,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["assets","customtkinter","data","jar","java","minecraft","pypi","python","pythonpackage","reports","serverjars","userfolder"],"created_at":"2024-11-22T06:15:41.111Z","updated_at":"2026-05-17T21:07:20.241Z","avatar_url":"https://github.com/legopitstop.png","language":"Python","funding_links":["https://patreon.com/Legopitstop","https://ko-fi.com/legopitstop"],"categories":[],"sub_categories":[],"readme":"# mcextract\n\n[![PyPI](https://img.shields.io/pypi/v/mcextract)](https://pypi.org/project/mcextract/)\n[![Python](https://img.shields.io/pypi/pyversions/mcextract)](https://www.python.org/downloads//)\n![Downloads](https://img.shields.io/pypi/dm/mcextract)\n![Status](https://img.shields.io/pypi/status/mcextract)\n[![Issues](https://img.shields.io/github/issues/legopitstop/mcextract)](https://github.com/legopitstop/mcextract/issues)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)\n\nExtract assets and data from the Minecraft jar.\n\n## Installation\nInstall the module with pip:\n```bat\npip3 install mcextract\n```\nUpdate existing installation: `pip3 install mcextract --upgrade`\n\n## Features\n\n- Easy to use command line interface.\n- Choose to extract the assets or data folders from the Minecraft jar\n- Map objects to get access to all sounds, langs, and other hidden assets that aren't in the jar.\n- Run the built-in data generator to get reports, registries, and vanilla world generation files.\n\n## Examples\n\n### Run using the API\n```py\nimport mcextract\n\napi = mcextract.MCExtractAPI()\napi.extract(\"1.20.4/1.20.4.jar\", True, True, accept_eula=False)\napi.map(\"16.json\", accept_eula=True)\napi.generate(\"1.20.6\", ['--client', '--server', '--reports'], accept_eula=True)\n```\n\n### Run using CLI\n```sh\nmcextract extract 1.20.4/1.20.4.jar --assets --data -eula\nmcextract map 16.json -eula\nmcextract generate 1.20.6 --client --server --reports -eula\n```\n\n## Command line commands\n```\nusage: mcextract [-h] [-V] {extract,map,generate} ...\n\npositional arguments:\n  {extract,map,generate}\n    extract             Extract data or assets folders from the Minecraft jar.\n    map                 Maps Minecraft's objects using an index file.\n    generate            Use Minecraft's built-in data generator.\n\noptions:\n  -h, --help            show this help message and exit\n  -V, --version         print the mcextract version number and exit.\n```\n\n## Planned Features\n\n- Add minimize or maximize JSONs.\n\n\n## License\n\nThis project's source code is under the MIT license and the Minecraft EULA. \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flegopitstop%2Fmcextract","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flegopitstop%2Fmcextract","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flegopitstop%2Fmcextract/lists"}