{"id":39837522,"url":"https://github.com/acrlabs/backuppy","last_synced_at":"2026-01-18T13:23:23.895Z","repository":{"id":36080290,"uuid":"124600783","full_name":"acrlabs/backuppy","owner":"acrlabs","description":"Versioned backup/restore software in Python","archived":false,"fork":false,"pushed_at":"2025-12-02T04:28:04.000Z","size":361,"stargazers_count":3,"open_issues_count":19,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-15T15:38:12.352Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/acrlabs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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},"funding":{"github":"acrlabs"}},"created_at":"2018-03-09T22:39:48.000Z","updated_at":"2025-04-11T05:22:19.000Z","dependencies_parsed_at":"2024-05-29T01:37:11.942Z","dependency_job_id":"95b45833-e930-48f4-b3d8-40b3626458e9","html_url":"https://github.com/acrlabs/backuppy","commit_stats":null,"previous_names":["acrlabs/backuppy"],"tags_count":26,"template":false,"template_full_name":null,"purl":"pkg:github/acrlabs/backuppy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acrlabs%2Fbackuppy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acrlabs%2Fbackuppy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acrlabs%2Fbackuppy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acrlabs%2Fbackuppy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/acrlabs","download_url":"https://codeload.github.com/acrlabs/backuppy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acrlabs%2Fbackuppy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28536751,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T13:04:05.990Z","status":"ssl_error","status_checked_at":"2026-01-18T13:01:44.092Z","response_time":98,"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":[],"created_at":"2026-01-18T13:23:23.123Z","updated_at":"2026-01-18T13:23:23.891Z","avatar_url":"https://github.com/acrlabs.png","language":"Python","funding_links":["https://github.com/sponsors/acrlabs"],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.com/drmorr0/backuppy.svg?branch=master)](https://travis-ci.com/drmorr0/backuppy)\n\n# Backuppy\n\nOpen-source, diff-based, encrypted backup software\n\n## Usage\n\n```\npython -m backuppy.run backup --name \u003cbackup_set_name\u003e\npython -m backuppy.run list --name \u003cbackup_set_name\u003e\npython -m backuppy.run restore --name \u003cbackup_set_name\u003e (\u003cfile-pattern to restore\u003e)\n```\n\n## Configuration Reference\n\n```\nbackups:\n  backup_1:  # name of the backup set\n    private_key_filename: /path/to/encryption/key_file  # required unless disable_encryption is set\n    exclusions:  # list of regex patterns that you don't want to back up for this backup\n      - pattern1\n      - pattern2\n      - ...\n    directories:  # list of all \"root directories\" that you want to include in this set\n      - /path/to/directory1\n      - /path/to/directory2\n      - ...\n    protocol:  # where to back up the files in this set\n      type: (local|ssh|rsync|s3)\n      \u003cprotocol-specific-options\u003e\n    options:\n      - max_manifest_versions: (int)\n        use_encryption: (true|false)\n        use_compression: (true|false)\n```\n\nYour private key file needs to be a 4096-bit RSA private key.  You can generate this with the following command:\n\n```\nopenssl genrsa -out testing.pem 4096\n```\n\n## Backup Protocols\n\nCurrently the `local` and `s3` protocols are the only ones supported by BackupPY.\n\n### Local backup\n\n```\nprotocol:\n  type: local\n  location: /path/to/directory/you/want/to/back/up/to\n```\n\n### S3 backup\n\nYou must have an S3 bucket created for the backup to succeed, and you must have IAM policies configured\nso that BackupPY can access this bucket.\n\n```\nprotocol:\n  type: s3\n  aws_access_key_id: YOUR_ACCESS_KEY\n  aws_secret_access_key: YOUR_SECRET_ACCESS_KEY\n  aws_region: \u003cthe name of the region your bucket is in\u003e\n  bucket: the-name-of-the-bucket\n  storage_class: (optional) the storage class to use for the backed-up objects; defaults to STANDARD\n```\n\nA minimal IAM profile for BackupPY to work is as follows:\n\n```\n{\n    \"Version\": \"2012-10-17\",\n    \"Statement\": [\n        {\n            \"Sid\": \"VisualEditor0\",\n            \"Effect\": \"Allow\",\n            \"Action\": [\n                \"s3:PutObject\",\n                \"s3:GetObject\",\n                \"s3:ListBucket\",\n                \"s3:DeleteObject\"\n            ],\n            \"Resource\": [\n                \"arn:aws:s3:::backuppy-testing\",   # substitute your bucket name here\n                \"arn:aws:s3:::backuppy-testing/*\"\n            ]\n        }\n    ]\n}\n```\n\nYou can read more about S3 storage classes on the [AWS documentation](https://aws.amazon.com/s3/storage-classes/); valid choices are\n`STANDARD`, `STANDARD_IA`, `ONEZONE_IA`, `INTELLIGENT_TIERING`, `GLACIER`, and `DEEP_ARCHIVE`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Facrlabs%2Fbackuppy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Facrlabs%2Fbackuppy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Facrlabs%2Fbackuppy/lists"}