request.py 856 B

123456789101112131415161718192021222324252627282930313233343536
  1. import requests
  2. # import json
  3. import time
  4. import uptime
  5. from configparser import ConfigParser
  6. tasks_dir = "C:\\GAPS\\Portal\\Tasks"
  7. def ping():
  8. current_uptime = int(uptime.boottime().timestamp())
  9. kunde = findName()
  10. result = requests.get(f'http://localhost:5000/ping/{kunde}?uptime={current_uptime}')
  11. print(result.content)
  12. # print(json.dumps(json.loads(result.content), indent=2))
  13. def findName():
  14. config = ConfigParser()
  15. with open(tasks_dir + '\\GAPS.ini', 'r') as stream:
  16. config.read_string('[default]\n' + stream.read())
  17. return config['default']['KUNDE'][1:-1]
  18. while True:
  19. ping()
  20. time.sleep(60 * 60)
  21. # from crontab import CronTab
  22. # def ping():
  23. # cron = CronTab(user='root')
  24. # job = cron.new(command='python C:\\Projekte\\Python\\request.py')
  25. # job.hour.every(1)
  26. # cron.write()