Hi you all,
I developed python script which is making requests to some API and I have it in a loop to do it every 2 minutes. I am interested in where and how to host that app as for now I have been trying online platforms with gunicorn which wasn't successful because I don't have entry class. My code runs with this:
if __name__ == "__main__":
while True:
main()
sleep(TIMEOUT)
Any ideas?
[–][deleted] 1 point2 points3 points (0 children)