├── .flake8 ├── .github └── workflows │ └── main.yaml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── docs └── sqlite_backup │ ├── core.md │ ├── index.md │ └── log.md ├── pyproject.toml ├── sqlite_backup ├── __init__.py ├── __main__.py ├── core.py ├── log.py └── py.typed └── tests ├── __init__.py ├── test_sqlite_backup.py └── test_threads.py /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E501 3 | -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purarue/sqlite_backup/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purarue/sqlite_backup/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purarue/sqlite_backup/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purarue/sqlite_backup/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purarue/sqlite_backup/HEAD/README.md -------------------------------------------------------------------------------- /docs/sqlite_backup/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purarue/sqlite_backup/HEAD/docs/sqlite_backup/core.md -------------------------------------------------------------------------------- /docs/sqlite_backup/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purarue/sqlite_backup/HEAD/docs/sqlite_backup/index.md -------------------------------------------------------------------------------- /docs/sqlite_backup/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purarue/sqlite_backup/HEAD/docs/sqlite_backup/log.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purarue/sqlite_backup/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sqlite_backup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purarue/sqlite_backup/HEAD/sqlite_backup/__init__.py -------------------------------------------------------------------------------- /sqlite_backup/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purarue/sqlite_backup/HEAD/sqlite_backup/__main__.py -------------------------------------------------------------------------------- /sqlite_backup/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purarue/sqlite_backup/HEAD/sqlite_backup/core.py -------------------------------------------------------------------------------- /sqlite_backup/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purarue/sqlite_backup/HEAD/sqlite_backup/log.py -------------------------------------------------------------------------------- /sqlite_backup/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purarue/sqlite_backup/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_sqlite_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purarue/sqlite_backup/HEAD/tests/test_sqlite_backup.py -------------------------------------------------------------------------------- /tests/test_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purarue/sqlite_backup/HEAD/tests/test_threads.py --------------------------------------------------------------------------------