9 lines
108 B
Python
9 lines
108 B
Python
|
import os
|
||
|
import time
|
||
|
os.chdir("feed_articles")
|
||
|
|
||
|
while True:
|
||
|
time.sleep(100)
|
||
|
os.system("git pull")
|
||
|
|