Skip to content

Instantly share code, notes, and snippets.

@mpalmerlee
Created June 16, 2017 22:25
Show Gist options
  • Save mpalmerlee/97798e12e4715c8a6538df6834c6abc2 to your computer and use it in GitHub Desktop.
Save mpalmerlee/97798e12e4715c8a6538df6834c6abc2 to your computer and use it in GitHub Desktop.
#! /usr/bin/python
# -*- coding: utf-8 -*-
import feedparser
import urllib2
def downloadFileProgressBar(url):
file_name = url.split('/')[-1]
u = urllib2.urlopen(url)
f = open(file_name, 'wb')
meta = u.info()
file_size = int(meta.getheaders("Content-Length")[0])
print "Downloading: %s Bytes: %s" % (file_name, file_size)
file_size_dl = 0
block_sz = 8192
while True:
buffer = u.read(block_sz)
if not buffer:
break
file_size_dl += len(buffer)
f.write(buffer)
status = r"%10d [%3.2f%%]" % (file_size_dl, file_size_dl * 100. / file_size)
status = status + chr(8)*(len(status)+1)
print status,
f.close()
d = feedparser.parse('<your mrss feed url here>')
for index,item in enumerate(d.entries):
if index == 0:
print item.media_thumbnail[0]
print item.media_content[0]
downloadFileProgressBar(item.media_thumbnail[0]['url'])
downloadFileProgressBar(item.media_content[0]['url'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment