 Re: How to use iView (ABC Australia) downloaders
my curl -V
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtmp rtsp smtp smtps telnet tftp
You're missing openssl
But who needs curl.
Anything that support https
ie python
headers = {'Authorization': 'Basic ZmVlZHRlc3Q6YWJjMTIz' }
url = "https://tviview.abc.net.au/iview/feed/samsung/?keyword=0-z"
req = Request(url, None, headers)
res = urlopen(req, timeout=30)
xml = fromstring(res.read().decode("utf-8"))
for item in xml.getiterator('item'):
|