request.py 905 B

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