{"id":49885839,"url":"https://github.com/meyer1994/zipwalk","last_synced_at":"2026-05-15T18:15:07.572Z","repository":{"id":161219695,"uuid":"635956021","full_name":"meyer1994/zipwalk","owner":"meyer1994","description":"An os.walk interface for nested zip files","archived":false,"fork":false,"pushed_at":"2024-01-16T00:24:37.000Z","size":16,"stargazers_count":0,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-01-16T05:31:46.345Z","etag":null,"topics":["python","zip"],"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/meyer1994.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}},"created_at":"2023-05-03T20:22:51.000Z","updated_at":"2023-05-03T20:38:41.000Z","dependencies_parsed_at":"2024-01-16T01:54:35.699Z","dependency_job_id":"8bfd26da-1209-48c4-9fc4-8cdc2e2410dc","html_url":"https://github.com/meyer1994/zipwalk","commit_stats":null,"previous_names":[],"tags_count":5,"template":null,"template_full_name":null,"purl":"pkg:github/meyer1994/zipwalk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meyer1994%2Fzipwalk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meyer1994%2Fzipwalk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meyer1994%2Fzipwalk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meyer1994%2Fzipwalk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/meyer1994","download_url":"https://codeload.github.com/meyer1994/zipwalk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meyer1994%2Fzipwalk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33074574,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["python","zip"],"created_at":"2026-05-15T18:15:06.888Z","updated_at":"2026-05-15T18:15:07.563Z","avatar_url":"https://github.com/meyer1994.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# zipwalk\n\nA very simple walker that recursively walks through nested zipfiles\n\n## About\n\nThis project was created because I needed a way to iterate over nested zipfiles\nwithout unzipping them.\n\n## Install\n\n```sh\npip install zipwalk\n```\n\n## Usage\n\nIt has a similar interface to `os.walk`:\n\n```py\nfrom zipwalk import zipwalk\n\nfor root, zips, files in zipwalk('tests/1.zip'):\n    print('root:', root.filename)\n    print('zips:', zips)\n    print('files:', files)\n\n# output:\n# root: tests/1.zip\n# zips: {'2.zip'}\n# files: {'1c.txt', 'dir/d1.txt', '1b.txt', '1a.txt'}\n# root: 2.zip\n# zips: set()\n# files: {'2c.txt', '2b.txt', '2a.txt'}\n```\n\n`root` is an [ZipFile][1] instance opened on read mode, `r`. All zip files are\nopened using `with` context manager and will be closed once the generator is\nexhausted.\n\nYou can use the zip walker like the following:\n\n```py\nfrom pathlib import Path\nfrom zipfile import ZipFile\n\nfrom zipwalk import zipwalk\n\nzipwalk(ZipFile('tests/1.zip'))\nzipwalk(Path('tests/1.zip'))\nzipwalk('tests/1.zip')\n```\n\n[1]: https://docs.python.org/3/library/zipfile.html","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeyer1994%2Fzipwalk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeyer1994%2Fzipwalk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeyer1994%2Fzipwalk/lists"}