I'm trying to simple download a website at scheduled times everyday - similar to what Travis does here in C#

https://www.quantconnect.com/forum/discussion/1085/contribution-scheduled-data-scraping-from-any-webpagesource/p1


However, i'm prevented from doing this in the standard way via using urllib/urllib2. I'm a bit new to python.net and tried to implement something similar to what Travis did, but can't seem to get it to work. Any help is much appreciated. 

from System.Net import WebClient site = WebClient().DownloadString("https://www.google.com/") self.Log("what is this?" + site) # Shows no value

Also - I would like to make a feature request for the bs4 python module.

Thanks!
 

Author