Reputation: 224
i did a web scraping who writes my differents informations in an excel file
my script is really simple:
While True:
1- Take the informations
2- Write it in an excel file
It's works with my computer and i try to host it, but when i search how i can host a python script they only talk about django or flask
Is it possible to host a simply code like that? And if its possible, how can i take back my excel file.
I just want a place where my script is turning h24. I'm sorry if its quite stupid but i tried to search on internet and i don't find my answer on the internet
Thanks
Upvotes: 0
Views: 144
Reputation: 107
It depends on what you exactly expect from it... If only run application which sends for example emails or SQL to database it's possible on every physical or virtual machine (your computer too). I started scraper which send me notifications on email last year on raspberry pi. In my opinion you would like to have something like virtual server.
Upvotes: 2