cd project
virtualenv env
pip install -r requirements.txtimport time
time.sleep(5)
print('Прошло 5 секунд')import time
seconds = 0
while True:
if seconds == 5:
pring('Прошло 5 секунд')
seconds += 1
time.sleep(1)
# Какие-нибудь другие действия