grist-backup 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- grist_backup-1.0.0/.gitignore +24 -0
- grist_backup-1.0.0/.python-version +1 -0
- grist_backup-1.0.0/LICENSE +674 -0
- grist_backup-1.0.0/PKG-INFO +388 -0
- grist_backup-1.0.0/README.md +364 -0
- grist_backup-1.0.0/pyproject.toml +46 -0
- grist_backup-1.0.0/src/grist_backup/__init__.py +1 -0
- grist_backup-1.0.0/src/grist_backup/__main__.py +5 -0
- grist_backup-1.0.0/src/grist_backup/api.py +275 -0
- grist_backup-1.0.0/src/grist_backup/cli.py +451 -0
- grist_backup-1.0.0/src/grist_backup/config.py +288 -0
- grist_backup-1.0.0/src/grist_backup/example_config.toml +85 -0
- grist_backup-1.0.0/uv.lock +43 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Real config files — contain API keys
|
|
2
|
+
grist-backup.toml
|
|
3
|
+
.grist-backup.toml
|
|
4
|
+
config.toml
|
|
5
|
+
|
|
6
|
+
# Claude Code working directory
|
|
7
|
+
.claude/
|
|
8
|
+
|
|
9
|
+
# Python
|
|
10
|
+
__pycache__/
|
|
11
|
+
*.py[cod]
|
|
12
|
+
*$py.class
|
|
13
|
+
*.egg-info/
|
|
14
|
+
build/
|
|
15
|
+
dist/
|
|
16
|
+
|
|
17
|
+
# Virtual environment
|
|
18
|
+
.venv/
|
|
19
|
+
|
|
20
|
+
# Ruff cache
|
|
21
|
+
.ruff_cache/
|
|
22
|
+
|
|
23
|
+
# macOS
|
|
24
|
+
.DS_Store
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.14
|