2017-03-09 7 views
0

pygalで棒グラフを作成しようとしていますが、これはgithubにapiを使用し、星に基づく最も人気のあるプロジェクトをグラフ化しています。私は以下のコードを投稿しましたが、なぜ私のグラフが「データなし」と言っているのか理解できませんか?助言がありますか?ありがとう!あなたのコードの第二の最後の行にPygal棒グラフで "No Data"と表示されます

import requests 
import pygal 
from pygal.style import LightColorizedStyle as LCS, LightenStyle as LS 

url = 'https://api.github.com/search/repositories?q=language:python&sort=stars' 
r = requests.get(url) 
print("Status code:", r.status_code) 

response_dict = r.json() 
print('Total repositories:', response_dict['total_count']) 

repo_dicts = response_dict['items'] 


names,stars = [],[] 
for repo_dict in repo_dicts: 
    names.append(repo_dict['name']) 
    stars.append(repo_dict['stargazers_count']) 

my_style = LS('#333366',base_style=LCS) 
chart = pygal.Bar(style=my_style,x_label_rotation=45,show_legend=False) 
chart.title = 'Most Starred Python Projects on GitHub' 
chart.x_labels = names 
chart.add = ('',stars) 
chart.render_to_file('python_repos.svg') 

答えて

1

、=(「chart.add =」、星)があってはならない「」(「星)が等号、それはchart.addしなければなりません」コードがうまくいくはずです! :)

関連する問題