vflow-cli 0.1.1__py3-none-any.whl
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.
- vflow/__init__.py +1 -0
- vflow/actions.py +39 -0
- vflow/backup_service.py +684 -0
- vflow/config.py +44 -0
- vflow/core/__init__.py +6 -0
- vflow/core/date_utils.py +114 -0
- vflow/core/fs_ops.py +64 -0
- vflow/core/media_ops.py +110 -0
- vflow/core/patterns.py +98 -0
- vflow/delivery_service.py +301 -0
- vflow/ingest_service.py +932 -0
- vflow/main.py +571 -0
- vflow_cli-0.1.1.dist-info/METADATA +543 -0
- vflow_cli-0.1.1.dist-info/RECORD +17 -0
- vflow_cli-0.1.1.dist-info/WHEEL +5 -0
- vflow_cli-0.1.1.dist-info/entry_points.txt +2 -0
- vflow_cli-0.1.1.dist-info/top_level.txt +1 -0
vflow/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# This file makes the 'vflow' directory a Python package.
|
vflow/actions.py
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Thin façade that re-exports every public action from the service modules.
|
|
3
|
+
|
|
4
|
+
main.py and tests import ``actions.*``; the real implementations live in:
|
|
5
|
+
|
|
6
|
+
- ingest_service – ingest_shoot, ingest_report, prep_shoot, pull_shoot
|
|
7
|
+
- delivery_service – archive_file, create_select_file, copy_metadata_folder
|
|
8
|
+
- backup_service – consolidate_files, verify_backup, list_backups,
|
|
9
|
+
restore_folder, list_duplicates, remove_duplicates
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
from .ingest_service import ( # noqa: F401
|
|
13
|
+
ingest_report,
|
|
14
|
+
ingest_shoot,
|
|
15
|
+
prep_shoot,
|
|
16
|
+
pull_shoot,
|
|
17
|
+
)
|
|
18
|
+
|
|
19
|
+
from .delivery_service import ( # noqa: F401
|
|
20
|
+
archive_file,
|
|
21
|
+
create_select_file,
|
|
22
|
+
copy_metadata_folder,
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
from .backup_service import ( # noqa: F401
|
|
26
|
+
consolidate_files,
|
|
27
|
+
verify_backup,
|
|
28
|
+
list_backups,
|
|
29
|
+
restore_folder,
|
|
30
|
+
list_duplicates,
|
|
31
|
+
remove_duplicates,
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
# Re-export core helpers that tests import via actions.*
|
|
35
|
+
from .core.patterns import ( # noqa: F401
|
|
36
|
+
_extract_number_from_filename,
|
|
37
|
+
_parse_range_pattern,
|
|
38
|
+
_matches_pattern,
|
|
39
|
+
)
|