-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdaily.py
More file actions
38 lines (27 loc) · 906 Bytes
/
daily.py
File metadata and controls
38 lines (27 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python3
"""
daily.py
Copyright (c) 2026 Pittsburgh Supercomputing Center (PSC),
Brain Image Library (BIL)
Author: icaoberg
Description:
This script runs the daily SpectraBrainz reporting pipeline by invoking
the `daily()` function from the `spectrabrainz` module. The function is
expected to generate and/or update the daily report artifacts used by
downstream processes (e.g., uploads and backups).
Usage:
python ./daily.py
Requirements:
- Python 3
- The `spectrabrainz` module must be installed and importable
- Any dependencies required by `spectrabrainz.daily()`
Notes:
- This script is intentionally minimal and acts as a thin wrapper
around the SpectraBrainz daily workflow.
"""
import spectrabrainz
def main():
"""Run the SpectraBrainz daily report generation."""
spectrabrainz.daily()
if __name__ == "__main__":
main()