update requirements

master
Clemens Klug 2017-11-09 12:25:02 +01:00
parent 7641a9d130
commit b6b080fedf
2 changed files with 5 additions and 4 deletions

3
bot.py
View File

@ -71,8 +71,9 @@ def post_plot(config):
print(r)
def setup(config):
schedule.every(30).seconds.do(lambda: post_plot(config))
#schedule.every(30).seconds.do(lambda: post_plot(config))
#schedule.every().week.do(post_plot)
schedule.every().day.do(lambda: post_plot(config))
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="DoorStateBot")

View File

@ -1,2 +1,2 @@
requests
schedule
requests==2.18.4
schedule==0.4.3