@ -38,3 +38,5 @@ Seattle Sounders FC,134149,SEA,Green,Seattle.png
|
||||
Sporting Kansas City,134143,KC,Blue,Kansas-City.png
|
||||
Toronto FC,134148,TOR,Red,Toronto.png
|
||||
Vancouver Whitecaps,134147,VAN,Blue,Vancouver.png
|
||||
St. Louis City SC,147062,STL,Red,St-Louis.png
|
||||
St. Louis CITY SC,147062,STL,Red,St-Louis.png
|
||||
|
|
@ -158,7 +158,16 @@ def updateCommodities(api_key, logf):
|
||||
#logf.write('\n ' + "".join(traceback.format_exception(sys.exc_info()[0], sys.exc_info()[1], sys.exc_info()[2])))
|
||||
#logf.close()
|
||||
|
||||
|
||||
def human_format(num):
|
||||
num = float('{:.3g}'.format(num))
|
||||
magnitude = 0
|
||||
while abs(num) >= 1000:
|
||||
magnitude += 1
|
||||
num /= 1000.0
|
||||
return '{}{}'.format('{:f}'.format(num).rstrip('0').rstrip('.'), ['', 'K', 'M', 'B', 'T'][magnitude])
|
||||
|
||||
|
||||
def updateMovies(api_key, logf):
|
||||
|
||||
f = open('csv/movie_settings.json', 'r')
|
||||
@ -198,6 +207,18 @@ def updateMovies(api_key, logf):
|
||||
movies = data['results']
|
||||
|
||||
for movie in movies:
|
||||
|
||||
if movie['media_type'] == 'movie':
|
||||
movie_id = movie['id']
|
||||
box_office_url = 'https://api.themoviedb.org/3/movie/' + str(movie_id) + '?api_key=' + api_key
|
||||
box_office_response = requests.get(box_office_url)
|
||||
box_office_data = box_office_response.json()
|
||||
budget = human_format(box_office_data['budget'])
|
||||
revenue = human_format(box_office_data['revenue'])
|
||||
else:
|
||||
budget = '0'
|
||||
revenue = '0'
|
||||
|
||||
movie_language = movie['original_language']
|
||||
movie_votes = movie['vote_average']
|
||||
movie_votes = "{:.1f}".format(movie_votes)
|
||||
@ -248,13 +269,17 @@ def updateMovies(api_key, logf):
|
||||
'date':movie_date,
|
||||
'media_type':movie_type.capitalize(),
|
||||
'genre':genrefinal,
|
||||
'budget':budget,
|
||||
'revenue':revenue,
|
||||
'backdrop':movie['backdrop_path'][1:],
|
||||
'logo': movie_logo
|
||||
})
|
||||
|
||||
logo_files.append(movie['backdrop_path'][1:])
|
||||
|
||||
urllib.request.urlretrieve(movie_logo,'logos/movies/' + movie['backdrop_path'])
|
||||
if movie['backdrop_path'][1:] not in os.listdir('logos/movies/'):
|
||||
urllib.request.urlretrieve(movie_logo,'logos/movies/' + movie['backdrop_path'])
|
||||
time.sleep(0.5)
|
||||
|
||||
for file in os.listdir('logos/movies/'):
|
||||
if file not in logo_files:
|
||||
|
BIN
feature_titles/earnings.png
Normal file
After Width: | Height: | Size: 495 B |
BIN
logos/earnings/2-star.png
Normal file
After Width: | Height: | Size: 148 B |
BIN
logos/earnings/3-star.png
Normal file
After Width: | Height: | Size: 152 B |
BIN
logos/earnings/4-star.png
Normal file
After Width: | Height: | Size: 150 B |
BIN
logos/earnings/5-star.png
Normal file
After Width: | Height: | Size: 150 B |
BIN
logos/earnings/star.png
Normal file
After Width: | Height: | Size: 143 B |
BIN
logos/news_logos/1news.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
logos/news_logos/247sports.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
logos/news_logos/7news.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
logos/news_logos/9news.com-kusa.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
logos/news_logos/9to5google.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
logos/news_logos/bbc.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
logos/news_logos/bloomberg-technology.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
logos/news_logos/bloomberg-television.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
logos/news_logos/breitbart.png
Normal file
After Width: | Height: | Size: 890 B |
BIN
logos/news_logos/brisbane-times.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
logos/news_logos/business-wire.png
Normal file
After Width: | Height: | Size: 1005 B |
BIN
logos/news_logos/buzzfeed-news.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
logos/news_logos/cbc.ca.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
logos/news_logos/chek-news.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
logos/news_logos/chicago-sun-times.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
logos/news_logos/cnbc-television.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
logos/news_logos/cointelegraph.png
Normal file
After Width: | Height: | Size: 357 B |
BIN
logos/news_logos/comicbook.com.png
Normal file
After Width: | Height: | Size: 7.9 KiB |
BIN
logos/news_logos/cp24.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
logos/news_logos/ctv-news-atlantic.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
logos/news_logos/ctv-news-vancouver.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
logos/news_logos/ctv-news.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
logos/news_logos/daily-record.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
logos/news_logos/deadline.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
logos/news_logos/dexerto.png
Normal file
After Width: | Height: | Size: 830 B |
BIN
logos/news_logos/droid-life.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
logos/news_logos/dw-(english).png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
logos/news_logos/elle.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
logos/news_logos/entertainment-tonight.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
logos/news_logos/entertainment-weekly-news.png
Normal file
After Width: | Height: | Size: 993 B |
BIN
logos/news_logos/euronews.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
logos/news_logos/fox-4-news-dallas-fort-worth.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
logos/news_logos/france-24-english.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
logos/news_logos/gizmodo.png
Normal file
After Width: | Height: | Size: 966 B |
BIN
logos/news_logos/gloucestershire-live.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
logos/news_logos/gma-news-online.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
logos/news_logos/gma.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
logos/news_logos/health.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
logos/news_logos/huffpost-uk.png
Normal file
After Width: | Height: | Size: 417 B |
BIN
logos/news_logos/indiatimes.com.png
Normal file
After Width: | Height: | Size: 574 B |
BIN
logos/news_logos/inside-edition.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
logos/news_logos/insider.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
logos/news_logos/irish-mirror.png
Normal file
After Width: | Height: | Size: 708 B |
BIN
logos/news_logos/kabc-tv.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
logos/news_logos/kfox-el-paso.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
logos/news_logos/komo-news.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
logos/news_logos/ksnb.png
Normal file
After Width: | Height: | Size: 6.0 KiB |
BIN
logos/news_logos/ktla-los-angeles.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
logos/news_logos/kut.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
logos/news_logos/ladbible.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
logos/news_logos/lifehacker.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
logos/news_logos/livescience.com.png
Normal file
After Width: | Height: | Size: 883 B |
BIN
logos/news_logos/los-angeles-times.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
logos/news_logos/men's-health.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
logos/news_logos/miami-herald.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
logos/news_logos/msnnow.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
logos/news_logos/mtv.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
logos/news_logos/nature.com.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
logos/news_logos/nbc-chicago.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
logos/news_logos/nbc-sports-boston.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
logos/news_logos/nbc-sports.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
logos/news_logos/ndtv.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
logos/news_logos/new-york-post-.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
logos/news_logos/newshub.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
logos/news_logos/newsmax.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
logos/news_logos/nfl.com.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
logos/news_logos/nhl.com.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
logos/news_logos/nme.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
logos/news_logos/oregonlive.png
Normal file
After Width: | Height: | Size: 915 B |
BIN
logos/news_logos/pcmag.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
logos/news_logos/perthnow.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
logos/news_logos/politico-europe.png
Normal file
After Width: | Height: | Size: 754 B |
BIN
logos/news_logos/pr-newswire.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
logos/news_logos/reuters-india.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
logos/news_logos/reuters.com.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
logos/news_logos/rnz.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
logos/news_logos/rte.ie.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
logos/news_logos/sciencealert.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
logos/news_logos/sky-news-australia.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
logos/news_logos/sky-news.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
logos/news_logos/south-china-morning-post.png
Normal file
After Width: | Height: | Size: 239 B |
BIN
logos/news_logos/space.com.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
logos/news_logos/sportbible.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
logos/news_logos/stuff.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
logos/news_logos/sydney-morning-herald.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
logos/news_logos/the-associated-press---en-español.png
Normal file
After Width: | Height: | Size: 837 B |
BIN
logos/news_logos/the-associated-press.png
Normal file
After Width: | Height: | Size: 837 B |
BIN
logos/news_logos/the-australian-financial-review.png
Normal file
After Width: | Height: | Size: 909 B |
BIN
logos/news_logos/the-boston-globe.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
logos/news_logos/the-business-times.png
Normal file
After Width: | Height: | Size: 814 B |
BIN
logos/news_logos/the-conversation.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
logos/news_logos/the-daily-beast.png
Normal file
After Width: | Height: | Size: 2.3 KiB |