added a new script

This commit is contained in:
Jun-te Kim 2025-03-19 09:14:26 +00:00
parent 213e374152
commit 5759315223
3 changed files with 12 additions and 1 deletions

View file

@ -57,7 +57,7 @@ def main():
if b_names:
logger.info("Baxter Kelly with wrong date format")
logger.info(pformat(b_names))
logger.info("-------------------------------------------")
logger.info("-")
logger.info("------EACH PRE SITE NOTES SUBMISSIONS------")
logger.info("-------------------------------------------")
logger.info(f"For week commencing: {WEEK_COMMENCING}")

9
etl/scis_invoice.py Normal file
View file

@ -0,0 +1,9 @@
def main():
print("hello world")
if __name__ == "__main__":
"""
Hopefully a very small script to generate a CSV and any othe relevant information to work out the invoice for each work
"""
main()

2
scis_invoice.sh Normal file
View file

@ -0,0 +1,2 @@
# Example of how to run python code in this environment
poetry run python etl/scis_invoice.py