I'm a stock market trader and at the end of every trading session I have some files to download from stock exchange website, how can I write a code in python or in any other language to download a file and perhaps schedule it for downloading..?
Asked
Active
Viewed 110 times
0
-
What environment are you working in? Windows, Mac, Linux? – John Gordon Jul 17 '17 at 04:21
-
I'm working on windows 10 – Parth Master Jul 17 '17 at 04:29
-
If it's just a dumb file download (i.e. the remote filename is always the same, the file doesn't need any post-download processing, etc.), then [wget](https://eternallybored.org/misc/wget/) might be the best solution. You can schedule it to run every day with the [SCHTASKS](https://ss64.com/nt/schtasks.html) command. – John Gordon Jul 17 '17 at 04:48