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.
17 lines
310 B
17 lines
310 B
2 years ago
|
#!/usr/bin/env python3
|
||
|
import datetime
|
||
|
import os
|
||
|
import glob
|
||
|
|
||
|
now = datetime.datetime.now()
|
||
|
date = now.strftime('%Y%m%d')
|
||
|
|
||
|
cwd = os.getcwd()
|
||
|
|
||
|
with open(f"{cwd}/monitoring/lala.txt") as f:
|
||
|
print("Lala")
|
||
|
print(f.read())
|
||
|
|
||
|
with open(f"{cwd}/monitoring/anin.txt") as f:
|
||
|
print("Anin")
|
||
|
print(f.read())
|