fix sleep

This commit is contained in:
Sean Corrigan 2022-01-14 00:59:24 -05:00
parent 1b118a4715
commit 0c5bb51b5f

View File

@ -1,6 +1,6 @@
import requests import requests
from bs4 import BeautifulSoup from bs4 import BeautifulSoup
from datetime import time from time import sleep
from influxdb import InfluxDBClient from influxdb import InfluxDBClient
@ -49,4 +49,4 @@ def main():
while True: while True:
main() main()
print('DATA FETCHED AND UPLOADEDED') print('DATA FETCHED AND UPLOADEDED')
time.sleep(10000) sleep(300)