View Single Post
  #1116  
Old 04-15-2015, 11:34 PM
dh0001 dh0001 is offline
Junior Member
 
Join Date: Apr 2015
Posts: 3
dh0001 is on a distinguished road
Default

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'):
Reply With Quote