{"id":22859183,"url":"https://github.com/matkeg/robotcopy","last_synced_at":"2025-10-31T13:30:43.584Z","repository":{"id":267041728,"uuid":"900104335","full_name":"matkeg/RobotCopy","owner":"matkeg","description":"A college project written in Python 3.13.0 which handles folder backups on the Windows OS, using its robocopy command.","archived":false,"fork":false,"pushed_at":"2025-02-03T16:33:57.000Z","size":5059,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-31T08:19:40.237Z","etag":null,"topics":["backup","backups","file","files","pyqt5","python","qt","ui","user-interface","windows","wip","workinprogress"],"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/matkeg.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-12-07T21:48:06.000Z","updated_at":"2025-02-03T16:34:01.000Z","dependencies_parsed_at":"2024-12-07T22:25:39.217Z","dependency_job_id":"aacc21ba-b426-4859-a9e8-ef6e94263d53","html_url":"https://github.com/matkeg/RobotCopy","commit_stats":null,"previous_names":["matkeg/robotcopy"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/matkeg/RobotCopy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matkeg%2FRobotCopy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matkeg%2FRobotCopy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matkeg%2FRobotCopy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matkeg%2FRobotCopy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/matkeg","download_url":"https://codeload.github.com/matkeg/RobotCopy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matkeg%2FRobotCopy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278494627,"owners_count":25996414,"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","status":"online","status_checked_at":"2025-10-05T02:00:06.059Z","response_time":54,"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":["backup","backups","file","files","pyqt5","python","qt","ui","user-interface","windows","wip","workinprogress"],"created_at":"2024-12-13T09:06:18.330Z","updated_at":"2025-10-05T17:58:16.321Z","avatar_url":"https://github.com/matkeg.png","language":"Python","readme":"\u003ch1\u003e\n  \u003cp align=\"center\"\u003e\n      \u003cimg src=\"src/Interface/Identity/banner.png\" alt=\"RobotCopy Logo\" width=\"512\"/\u003e\n  \u003c/p\u003e\n\u003c/h1\u003e\n  \nA college project written in Python which handles folder backups using the Windows **robocopy** command, currently being fully reworked for better file organization, performance, and UI.\n\n## Uses\n\u003cp align=\"left\"\u003e\n  \u003cimg src=\"https://skillicons.dev/icons?i=qt,py,visualstudio\" alt=\"Qt, Python, Visual Studio\"\u003e\n\u003c/p\u003e\n\n## Requirements\n\nTo run this program, you need a Windows operating system that supports the **robocopy** command (Windows Vista or later).\n\nFor development purposes, additional requirements depend on the specific aspect of the program:\n\n### User Interface\n- **Microsoft C++ Build Tools**: Desktop development with C++[^1]\n- **Qt Designer**\n- **PyQt5**\n\n[^1]: *Microsoft C++ Build Tools with the Desktop development with C++ module is required to use Qt Designer.*\n\n\u003e *While Qt Designer was used for UI editing, you can use any similar editor or a text editor to modify `.ui` files.*\n\n### Backend\n- **Python** (version 3.13.0 recommended)\n- **Packages:** PyQt5, psutil, pywin32, wmi, pyudev\n\n\u003e *Older or newer Python versions might be incompatible with this code.*\n\n## Setup for Development\n\nTo modify the program, install the required tools and packages listed above. It’s recommended to use Visual Studio Code for editing.\n\n### Modifying the User Interface\n1. Edit the `.ui` files, preferably using Qt Designer for an efficient workflow.\n2. Update the \u003ckbd\u003eassets.qrc\u003c/kbd\u003e file if new assets are added (Qt Designer does this automatically).\n3. In case you update the \u003ckbd\u003eassets.qrc\u003c/kbd\u003e file, you need to compile a new \u003ckbd\u003eassets.py\u003c/kbd\u003e file by running the following command in the directory containing \u003ckbd\u003eassets.qrc\u003c/kbd\u003e:\n\n```\npyrcc5 assets.qrc -o assets.py\n```\n\n### Modifying the Backend\n1. Edit any `.py` files located in the project. Keep in mind that modifying certain files inside \u003ckbd\u003esrc/modules\u003c/kbd\u003e can easily cause errors in other files. Use Feature Flags inside \u003ckbd\u003esrc/Features\u003c/kbd\u003e to quickly change certain aspects of the program without much interuptions.\n2. Test or debug changes by running \u003ckbd\u003emain.py\u003c/kbd\u003e.\n\n\u003e *If you are using Visual Studio Code, you can start debugging from any file you've opened, thanks to the configuration in \u003ckbd\u003e.vscode/launch.json\u003c/kbd\u003e. You can modify this file if you prefer different behavior.*\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatkeg%2Frobotcopy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatkeg%2Frobotcopy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatkeg%2Frobotcopy/lists"}