{"id":19378612,"url":"https://github.com/l-super/simzip","last_synced_at":"2026-06-08T20:32:30.115Z","repository":{"id":239197867,"uuid":"798345164","full_name":"L-Super/SimZip","owner":"L-Super","description":"A minimal C++20 zip library for zip compression and decompression.","archived":false,"fork":false,"pushed_at":"2026-03-30T15:24:27.000Z","size":61,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-30T17:21:11.522Z","etag":null,"topics":["cpp","cpp20","miniz","unzip","zip"],"latest_commit_sha":null,"homepage":"","language":"C++","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/L-Super.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":"2024-05-09T15:35:48.000Z","updated_at":"2026-03-30T15:24:59.000Z","dependencies_parsed_at":"2024-06-27T06:22:07.282Z","dependency_job_id":"04ca17be-f355-4c15-b3e8-3d95f7bc11f6","html_url":"https://github.com/L-Super/SimZip","commit_stats":null,"previous_names":["l-super/simzip"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/L-Super/SimZip","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/L-Super%2FSimZip","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/L-Super%2FSimZip/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/L-Super%2FSimZip/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/L-Super%2FSimZip/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/L-Super","download_url":"https://codeload.github.com/L-Super/SimZip/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/L-Super%2FSimZip/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34080027,"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-06-08T02:00:07.615Z","response_time":111,"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":["cpp","cpp20","miniz","unzip","zip"],"created_at":"2024-11-10T09:06:19.075Z","updated_at":"2026-06-08T20:32:30.090Z","avatar_url":"https://github.com/L-Super.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"## SimZip - A C++ Wrapper for miniz Library\nSimZip is a lightweight C++ 17 library that provides easy-to-use functionalities for zip and unzip operations using the `miniz` library. \n\nIt aims to simplify the process of working with ZIP archives in C++ projects.\n\n## Features\n- Simple and intuitive API for compressing and decompressing files.\n- Cross-platform (Windows, Linux, macOS).\n- No external dependencies other than the miniz library.\n\n## Usage\n\nCMake FetchContent\n```cmake\ninclude(FetchContent)\nFetchContent_Declare(SimZip\n        GIT_REPOSITORY https://github.com/L-Super/SimZip.git\n        GIT_TAG \"main\")\nFetchContent_MakeAvailable(SimZip)\n\ntarget_link_libraries(${PROJECT_NAME} SimZip)\n```\n\nHere's a basic example of how to use SimZip to compress and decompress files:\n\n```cpp\n#include \"SimZip.h\"\n// create a zip\nSimZip zip(\"test.zip\", SimZip::OpenMode::Create);\nzip.add(\"test.txt\"); // add file\nzip.add(\"../SimZip.cpp\", \"folder/SimZip.cpp\"); // add file to folder\nzip.add(\"test1.txt\", \"text.txt\"); // add and rename file\nzip.save();\n\n// extract zip\nSimZip zip(\"test.zip\", SimZip::OpenMode::Read);\nzip.extract(\"test.txt\", \"output/\"); //extract single file\nzip.extractall(\"output/\"); // extract all files\n```\n\n## Contributing\nContributions are welcome!\n\n## License\nSimZip is distributed under the [MIT](LICENSE) License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fl-super%2Fsimzip","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fl-super%2Fsimzip","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fl-super%2Fsimzip/lists"}