-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunner.py
57 lines (42 loc) · 1.55 KB
/
runner.py
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from datetime import datetime, timezone, timedelta
from os import listdir
from os.path import exists, isdir
import os, sys
def up():
tz = timezone(timedelta(hours = 7))
date = datetime.now(tz=tz)
date_el = date.ctime().split(' ')
# time_formated = f"{date_el[5]} {date_el[1]} {date_el[3]} {date_el[4]}"
time_formated = ' '.join(date_el)
root_dir = listdir()
expr_dir = sorted(list(filter(lambda dir: isdir(dir), root_dir)))
recent_file = ""
for dir in expr_dir:
for file in sorted(listdir(dir)):
if file.endswith('.py') or file.endswith('.ipynb'):
if os.stat(f"{dir}/{file}").st_size == 0:
break
recent_file = file
f = open("README.md", "w")
f.write(f'Last Submit on {recent_file}\\\n{time_formated}\\\n\\\nmake up')
f.close()
os.system("git add README.md")
os.system('git commit -m "📂 fix: update README.md by runner.py"')
os.system("git add .")
os.system('git commit -m "📕 feat: update new contents"')
os.system("git push")
def generate():
directory = input("What directory to generate : ")
file_list = listdir(f'./{directory}')
for file in file_list:
if not exists(f'./{directory}/{file.split(".")[0]}.py'):
with open(f'./{directory}/{file.split(".")[0]}.py', 'w') as f:
f.close()
print("done!")
if __name__== "__main__":
if sys.argv[1] == "up":
up()
elif sys.argv[1] == "generate":
generate()
else:
print("Something was error!")