{"id":17911937,"url":"https://github.com/mrmino/wheelfile","last_synced_at":"2025-04-30T08:24:13.665Z","repository":{"id":41829632,"uuid":"323006537","full_name":"MrMino/wheelfile","owner":"MrMino","description":"🔪🧀  API for creating and inspecting Python .whl files (wheels)","archived":false,"fork":false,"pushed_at":"2024-11-04T09:49:24.000Z","size":211,"stargazers_count":28,"open_issues_count":10,"forks_count":6,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-25T09:09:13.686Z","etag":null,"topics":["metadata","packages","packaging","packaging-python","python","python-wheel","python-wheels"],"latest_commit_sha":null,"homepage":"","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/MrMino.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2020-12-20T06:12:33.000Z","updated_at":"2025-04-19T23:47:30.000Z","dependencies_parsed_at":"2025-01-09T20:39:06.537Z","dependency_job_id":null,"html_url":"https://github.com/MrMino/wheelfile","commit_stats":{"total_commits":367,"total_committers":4,"mean_commits":91.75,"dds":"0.021798365122615793","last_synced_commit":"131905ccd22fd63a0b547b8c0cc3e8ef26736d89"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrMino%2Fwheelfile","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrMino%2Fwheelfile/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrMino%2Fwheelfile/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrMino%2Fwheelfile/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MrMino","download_url":"https://codeload.github.com/MrMino/wheelfile/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251667346,"owners_count":21624474,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["metadata","packages","packaging","packaging-python","python","python-wheel","python-wheels"],"created_at":"2024-10-28T19:40:58.187Z","updated_at":"2025-04-30T08:24:13.642Z","avatar_url":"https://github.com/MrMino.png","language":"Python","readme":"\n\n\u003ctable style=\"border: none\"\u003e\n\u003ctr style=\"border: none\"\u003e\n\u003ctd style=\"border: none\"\u003e\n\u003ch1 style='border-bottom-style: none' align=\"center\"\u003e Wheelfile 🔪🧀\u003c/h1\u003e\n\nThis library aims to make it dead simple to create a format-compliant [.whl\nfile (wheel)](https://pythonwheels.com/). It provides an API comparable to\n[zipfile](https://docs.python.org/3/library/zipfile.html). Use this if you wish\nto inspect or create wheels in your code.\n\nFor a quick look, see the example on the right, which packages the wheelfile\nmodule itself into a wheel 🤸.\n\n#### What's the difference between this and [wheel](https://pypi.org/project/wheel/)?\n\n\"Wheel\" tries to provide a reference implementation for the standard. It is used\nby setuptools and has its own CLI, but no stable API. The goal of Wheelfile is\nto provide a simple API.\n\nWheelfile does not depend on Wheel.\n\n## Acknowledgements\n\nThanks to [Paul Moore](https://github.com/pfmoore) for providing\n[his gist](https://gist.github.com/pfmoore/20f3654ca33f8b14f0fcb6dfa1a6b469)\nof basic metadata parsing logic, which helped to avoid many foolish mistakes\nin the initial implementation.\n\n\u003c/td\u003e\n\u003ctd style=\"border: none\"\u003e\n\n\u003cbr/\u003e\n\n\u003ca href=\"https://pypi.org/project/wheelfile/#history\"\u003e\n\u003cimg src=\"https://img.shields.io/pypi/v/wheelfile?style=for-the-badge\"/\u003e\n\u003c/a\u003e\n\u003ca href=\"https://wheelfile.readthedocs.io/en/latest/\"\u003e\n\u003cimg src=\"https://readthedocs.org/projects/wheelfile/badge/?version=latest\u0026style=for-the-badge\"/\u003e\n\u003c/a\u003e\n\n\u003cbr/\u003e\n\u003cbr/\u003e\n\n```\npip install wheelfile\n```\n\n```py\nfrom wheelfile import WheelFile, __version__\n\nspec = {\n    'distname': 'wheelfile',\n    'version': __version__\n}\n\nrequirements = [\n    'packaging \u003e= 20.8',\n]\n\nwith WheelFile(mode='w', **spec) as wf:\n    wf.metadata.requires_dists = requirements\n    wf.write('./wheelfile.py')\n\n# 🧀\n```\n\u003cbr/\u003e\n\u003cb\u003e More examples:\n    \u003ca href=\"https://wheelfile.readthedocs.io/en/latest/examples/buildscript.html\"\u003e buildscript \u003c/a\u003e |\n    \u003ca href=\"https://wheelfile.readthedocs.io/en/latest/examples/pep-517-builder.html\"\u003e PEP-517 builder \u003c/a\u003e\n\u003c/b\u003e\n\u003cbr/\u003e\n\n\u003c/td\u003e\n\u003c/tr\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrmino%2Fwheelfile","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrmino%2Fwheelfile","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrmino%2Fwheelfile/lists"}