Name | FileBackup JSON |
Version |
0.5.2
JSON |
| download |
home_page | None |
Summary | Tool for creating and restoring file system backups. |
upload_time | 2025-07-12 18:54:17 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.10 |
license | None |
keywords |
backup
mirror
offsite
restore
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
**Project:**
[](https://github.com/davidbrownell/FileBackup/blob/master/LICENSE)
**Package:**
[](https://pypi.org/project/FileBackup/)
[](https://pypi.org/project/FileBackup/)
[](https://pypistats.org/packages/FileBackup)
**Development:**
[](https://github.com/astral-sh/uv)
[](https://github.com/davidbrownell/FileBackup/actions/workflows/CICD.yml)
[](https://github.com/davidbrownell/FileBackup/actions)
[](https://github.com/davidbrownell/FileBackup/commits/main/)
<!-- Content above this delimiter will be copied to the generated README.md file. DO NOT REMOVE THIS COMMENT, as it will cause regeneration to fail. -->
## Contents
- [Overview](#overview)
- [Installation](#installation)
- [Development](#development)
- [Additional Information](#additional-information)
- [License](#license)
## Overview
TODO: Complete this section
### How to use `FileBackup`
TODO: Complete this section
<!-- Content below this delimiter will be copied to the generated README.md file. DO NOT REMOVE THIS COMMENT, as it will cause regeneration to fail. -->
## Installation
| Installation Method | Command |
| --- | --- |
| Via [uv](https://github.com/astral-sh/uv) | `uv add FileBackup` |
| Via [pip](https://pip.pypa.io/en/stable/) | `pip install FileBackup` |
### Verifying Signed Artifacts
Artifacts are signed and verified using [py-minisign](https://github.com/x13a/py-minisign) and the public key in the file `./minisign_key.pub`.
To verify that an artifact is valid, visit [the latest release](https://github.com/davidbrownell/FileBackup/releases/latest) and download the `.minisign` signature file that corresponds to the artifact, then run the following command, replacing `<filename>` with the name of the artifact to be verified:
```shell
uv run --with py-minisign python -c "import minisign; minisign.PublicKey.from_file('minisign_key.pub').verify_file('<filename>'); print('The file has been verified.')"
```
## Development
Please visit [Contributing](https://github.com/davidbrownell/FileBackup/blob/main/CONTRIBUTING.md) and [Development](https://github.com/davidbrownell/FileBackup/blob/main/DEVELOPMENT.md) for information on contributing to this project.
## Additional Information
Additional information can be found at these locations.
| Title | Document | Description |
| --- | --- | --- |
| Code of Conduct | [CODE_OF_CONDUCT.md](https://github.com/davidbrownell/FileBackup/blob/main/CODE_OF_CONDUCT.md) | Information about the norms, rules, and responsibilities we adhere to when participating in this open source community. |
| Contributing | [CONTRIBUTING.md](https://github.com/davidbrownell/FileBackup/blob/main/CONTRIBUTING.md) | Information about contributing to this project. |
| Development | [DEVELOPMENT.md](https://github.com/davidbrownell/FileBackup/blob/main/DEVELOPMENT.md) | Information about development activities involved in making changes to this project. |
| Governance | [GOVERNANCE.md](https://github.com/davidbrownell/FileBackup/blob/main/GOVERNANCE.md) | Information about how this project is governed. |
| Maintainers | [MAINTAINERS.md](https://github.com/davidbrownell/FileBackup/blob/main/MAINTAINERS.md) | Information about individuals who maintain this project. |
| Security | [SECURITY.md](https://github.com/davidbrownell/FileBackup/blob/main/SECURITY.md) | Information about how to privately report security issues associated with this project. |
## License
`FileBackup` is licensed under the <a href="https://choosealicense.com/licenses/MIT/" target="_blank">MIT</a> license.
Raw data
{
"_id": null,
"home_page": null,
"name": "FileBackup",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "backup, mirror, offsite, restore",
"author": null,
"author_email": "David Brownell <github@DavidBrownell.com>",
"download_url": "https://files.pythonhosted.org/packages/8f/35/54a33d4e9ab3254e2d2e2be9dac652893f1c3bdfe23b78787fa5f1c43c23/filebackup-0.5.2.tar.gz",
"platform": null,
"description": "**Project:**\n[](https://github.com/davidbrownell/FileBackup/blob/master/LICENSE)\n\n**Package:**\n[](https://pypi.org/project/FileBackup/)\n[](https://pypi.org/project/FileBackup/)\n[](https://pypistats.org/packages/FileBackup)\n\n**Development:**\n[](https://github.com/astral-sh/uv)\n[](https://github.com/davidbrownell/FileBackup/actions/workflows/CICD.yml)\n[](https://github.com/davidbrownell/FileBackup/actions)\n[](https://github.com/davidbrownell/FileBackup/commits/main/)\n\n<!-- Content above this delimiter will be copied to the generated README.md file. DO NOT REMOVE THIS COMMENT, as it will cause regeneration to fail. -->\n\n## Contents\n- [Overview](#overview)\n- [Installation](#installation)\n- [Development](#development)\n- [Additional Information](#additional-information)\n- [License](#license)\n\n## Overview\nTODO: Complete this section\n\n### How to use `FileBackup`\nTODO: Complete this section\n\n<!-- Content below this delimiter will be copied to the generated README.md file. DO NOT REMOVE THIS COMMENT, as it will cause regeneration to fail. -->\n\n## Installation\n\n| Installation Method | Command |\n| --- | --- |\n| Via [uv](https://github.com/astral-sh/uv) | `uv add FileBackup` |\n| Via [pip](https://pip.pypa.io/en/stable/) | `pip install FileBackup` |\n\n### Verifying Signed Artifacts\nArtifacts are signed and verified using [py-minisign](https://github.com/x13a/py-minisign) and the public key in the file `./minisign_key.pub`.\n\nTo verify that an artifact is valid, visit [the latest release](https://github.com/davidbrownell/FileBackup/releases/latest) and download the `.minisign` signature file that corresponds to the artifact, then run the following command, replacing `<filename>` with the name of the artifact to be verified:\n\n```shell\nuv run --with py-minisign python -c \"import minisign; minisign.PublicKey.from_file('minisign_key.pub').verify_file('<filename>'); print('The file has been verified.')\"\n```\n\n## Development\nPlease visit [Contributing](https://github.com/davidbrownell/FileBackup/blob/main/CONTRIBUTING.md) and [Development](https://github.com/davidbrownell/FileBackup/blob/main/DEVELOPMENT.md) for information on contributing to this project.\n\n## Additional Information\nAdditional information can be found at these locations.\n\n| Title | Document | Description |\n| --- | --- | --- |\n| Code of Conduct | [CODE_OF_CONDUCT.md](https://github.com/davidbrownell/FileBackup/blob/main/CODE_OF_CONDUCT.md) | Information about the norms, rules, and responsibilities we adhere to when participating in this open source community. |\n| Contributing | [CONTRIBUTING.md](https://github.com/davidbrownell/FileBackup/blob/main/CONTRIBUTING.md) | Information about contributing to this project. |\n| Development | [DEVELOPMENT.md](https://github.com/davidbrownell/FileBackup/blob/main/DEVELOPMENT.md) | Information about development activities involved in making changes to this project. |\n| Governance | [GOVERNANCE.md](https://github.com/davidbrownell/FileBackup/blob/main/GOVERNANCE.md) | Information about how this project is governed. |\n| Maintainers | [MAINTAINERS.md](https://github.com/davidbrownell/FileBackup/blob/main/MAINTAINERS.md) | Information about individuals who maintain this project. |\n| Security | [SECURITY.md](https://github.com/davidbrownell/FileBackup/blob/main/SECURITY.md) | Information about how to privately report security issues associated with this project. |\n\n## License\n`FileBackup` is licensed under the <a href=\"https://choosealicense.com/licenses/MIT/\" target=\"_blank\">MIT</a> license.\n",
"bugtrack_url": null,
"license": null,
"summary": "Tool for creating and restoring file system backups.",
"version": "0.5.2",
"project_urls": {
"Documentation": "https://github.com/davidbrownell/FileBackup",
"Homepage": "https://github.com/davidbrownell/FileBackup",
"Repository": "https://github.com/davidbrownell/FileBackup"
},
"split_keywords": [
"backup",
" mirror",
" offsite",
" restore"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "0c929b95471e2543514b0d07cb1586fffd36321b5c9cd0f6b91b12ee3b277a51",
"md5": "357a8bb59457a3e8f2363107693e285c",
"sha256": "0cd265fb264b55cf0b25e4d73f44bb91fe409708fd2d4106a7151efbc3b3cfd5"
},
"downloads": -1,
"filename": "filebackup-0.5.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "357a8bb59457a3e8f2363107693e285c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 49312,
"upload_time": "2025-07-12T18:54:15",
"upload_time_iso_8601": "2025-07-12T18:54:15.445698Z",
"url": "https://files.pythonhosted.org/packages/0c/92/9b95471e2543514b0d07cb1586fffd36321b5c9cd0f6b91b12ee3b277a51/filebackup-0.5.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8f3554a33d4e9ab3254e2d2e2be9dac652893f1c3bdfe23b78787fa5f1c43c23",
"md5": "f76efd21b2fd81dca76134eb5611b0b6",
"sha256": "7d41cd79931616192b93de4144af50d9a61cd8c071b551a25ac54b7c0660b5f4"
},
"downloads": -1,
"filename": "filebackup-0.5.2.tar.gz",
"has_sig": false,
"md5_digest": "f76efd21b2fd81dca76134eb5611b0b6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 131158,
"upload_time": "2025-07-12T18:54:17",
"upload_time_iso_8601": "2025-07-12T18:54:17.122869Z",
"url": "https://files.pythonhosted.org/packages/8f/35/54a33d4e9ab3254e2d2e2be9dac652893f1c3bdfe23b78787fa5f1c43c23/filebackup-0.5.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-12 18:54:17",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "davidbrownell",
"github_project": "FileBackup",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "filebackup"
}