Skip to content

Commit

Permalink
Update scraper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Alice committed Jul 14, 2015
1 parent 880e4de commit ce009d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scraper.py
Expand Up @@ -119,7 +119,7 @@
scraperwiki.sqlite.save(unique_keys=["source on Bechdel Test"], data=data)
rows_scraped = rows_scraped+1
data = {}
progress = float((rows_scraped/number_movies)*100)
progress = round((rows_scraped/number_movies)*100),8)
print "Saved "+str(rows_scraped)+" / "+str(number_movies)+" movies ---> Process: "+str(progress)+"%"
#Result
print "You are awesome, you saved all movies!"

0 comments on commit ce009d2

Please sign in to comment.