Metadata-Version: 2.3
Name: pgs3
Version: 0.0.4
Summary: A command-line tool for backing up and restoring PostgreSQL databases to/from S3-compatible storage.
Project-URL: Documentation, https://github.com/Hao Wu/pgs3#readme
Project-URL: Issues, https://github.com/Hao Wu/pgs3/issues
Project-URL: Source, https://github.com/Hao Wu/pgs3
Author-email: Hao Wu <haowu@dataset.sh>
License-Expression: MIT
License-File: LICENSE.txt
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.9
Requires-Dist: boto3~=1.20.0
Requires-Dist: click~=8.1.3
Requires-Dist: pydantic~=2.0.3
Description-Content-Type: text/markdown

# pgs3

```
Usage: pgs3 [OPTIONS] COMMAND [ARGS]...

  A command line app that help you backup/restore postgresql to a s3
  compatible file storage system.

  S3 will be upload to
  s3://$S3_BUCKET/$S3_PATH/$DATETIME/[schema_dump|db_dump].sql * DATETIME
  should be like 20240101_121212, and we use this as version name.

Options:
  --help  Show this message and exit.

Commands:
  backup
  download
  init
  list-backup```