{"id":31425142,"url":"https://github.com/twn39/zip-gui","last_synced_at":"2026-02-25T22:04:04.068Z","repository":{"id":287507912,"uuid":"964443599","full_name":"twn39/zip-gui","owner":"twn39","description":"📦 A clean and straightforward graphical interface for compressing (packing) and extracting (unpacking) archive files, built with Python and PySide6.","archived":false,"fork":false,"pushed_at":"2025-04-28T01:57:27.000Z","size":188,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-29T08:38:05.658Z","etag":null,"topics":["compression","gui","pyside6","zip"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/twn39.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null}},"created_at":"2025-04-11T08:14:31.000Z","updated_at":"2025-04-22T09:51:17.000Z","dependencies_parsed_at":"2025-04-12T06:30:26.059Z","dependency_job_id":"2a38861f-b278-4a47-99b2-0232c412b588","html_url":"https://github.com/twn39/zip-gui","commit_stats":null,"previous_names":["twn39/zip-gui"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/twn39/zip-gui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twn39%2Fzip-gui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twn39%2Fzip-gui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twn39%2Fzip-gui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twn39%2Fzip-gui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/twn39","download_url":"https://codeload.github.com/twn39/zip-gui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twn39%2Fzip-gui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29842863,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T21:18:31.832Z","status":"ssl_error","status_checked_at":"2026-02-25T21:18:29.265Z","response_time":61,"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":["compression","gui","pyside6","zip"],"created_at":"2025-09-30T04:57:16.368Z","updated_at":"2026-02-25T22:04:04.045Z","avatar_url":"https://github.com/twn39.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ZipGUI - Simple Archive Utility\n\n[![PyPI version](https://badge.fury.io/py/zip_gui.svg)](https://badge.fury.io/py/zip_gui)\n[![Python Version](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://www.python.org/)\n[![Framework](https://img.shields.io/badge/Framework-PySide6-informational)](https://www.qt.io/qt-for-python)\n[![License](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE) \u003c!-- 你可以添加一个 LICENSE 文件 --\u003e\n\nA clean and straightforward graphical interface for compressing (packing) and extracting (unpacking) archive files, built with Python and PySide6.\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"./screen.png\" alt=\"图片描述\" width=\"500\"/\u003e\n\u003c/div\u003e\n\n## Overview\n\nZipGUI provides an intuitive user interface to manage your archive files effortlessly. \nLeveraging Python's built-in `shutil` module, it supports common archive formats like ZIP, TAR, GZ, BZ2, and XZ. \nWhether you need to quickly compress a folder or extract an archive, ZipGUI simplifies the process with visual feedback.\n\n## ✨ Features\n\n*   **Dual Mode Operation:** Easily switch between **Packing** (compressing files/folders) and **Unpacking** (extracting archives).\n*   **Multiple Format Support:** Compresses to `zip`, `tar`, `gztar`, `bztar`, `xztar` formats.\n*   **User-Friendly Interface:** Simple layout with clear options for selecting source paths, destination paths, and archive formats.\n\n## 📋 Requirements\n\n*   **Python:** 3.7 or higher\n*   **PySide6:** The Qt for Python framework.\n\n## 📦 Building Executable (Optional)\n\nYou can create a standalone executable using PyInstaller.\n\n*   **Using the spec file (Recommended for more control):**\n    Then build using the spec file:\n    ```bash\n    pyinstaller --clean ZipGUI.spec\n    ```\n*   **Simple one-file build:**\n    ```bash\n    pyinstaller --onefile --windowed --name=\"ZipGUI\" app.py\n    ```\n\nThe executable will be located in the `dist` folder.\n\n## 🤝 Contributing\n\nContributions are welcome! If you have suggestions for improvements or find any bugs, please feel free to open an issue or submit a pull request.\n\n1.  Fork the Project\n2.  Create your Feature Branch (`git checkout -b feature/AmazingFeature`)\n3.  Commit your Changes (`git commit -m 'Add some AmazingFeature'`)\n4.  Push to the Branch (`git push origin feature/AmazingFeature`)\n5.  Open a Pull Request\n\n## 📄 License\n\nDistributed under the MIT License. ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftwn39%2Fzip-gui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftwn39%2Fzip-gui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftwn39%2Fzip-gui/lists"}