You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.2 KiB
60 lines
1.2 KiB
#!/usr/bin/env python3 |
|
import datetime |
|
import os |
|
|
|
now = datetime.datetime.now() |
|
date = now.strftime('%Y%m%d') |
|
|
|
cwd = os.getcwd() |
|
|
|
with open(f"{cwd}/monitoring/haerin.txt") as f: |
|
print("Haerin") |
|
print(f.read()) |
|
|
|
with open(f"{cwd}/monitoring/hyein.txt") as f: |
|
print("Hyein") |
|
print(f.read()) |
|
|
|
with open(f"{cwd}/monitoring/hanni.txt") as f: |
|
print("Hanni") |
|
print(f.read()) |
|
|
|
with open(f"{cwd}/monitoring/noella.txt") as f: |
|
print("Noella") |
|
print(f.read()) |
|
|
|
with open(f"{cwd}/monitoring/lina.txt") as f: |
|
print("Lina") |
|
print(f.read()) |
|
|
|
with open(f"{cwd}/monitoring/collection.txt") as f: |
|
print("Collection") |
|
print(f.read()) |
|
|
|
with open(f"{cwd}/monitoring/wista.txt") as f: |
|
print("Wista") |
|
print(f.read()) |
|
|
|
with open(f"{cwd}/monitoring/devi.txt") as f: |
|
print("Devi") |
|
print(f.read()) |
|
|
|
with open(f"{cwd}/monitoring/freya.txt") as f: |
|
print("Freya") |
|
print(f.read()) |
|
|
|
with open(f"{cwd}/monitoring/calysta.txt") as f: |
|
print("Calysta") |
|
print(f.read()) |
|
|
|
with open(f"{cwd}/monitoring/eve.txt") as f: |
|
print("Eve") |
|
print(f.read()) |
|
|
|
with open(f"{cwd}/monitoring/ashel.txt") as f: |
|
print("Ashel") |
|
print(f.read()) |
|
|
|
with open(f"{cwd}/monitoring/yuvia.txt") as f: |
|
print("Yuvia") |
|
print(f.read()) |