pygal制图“AttributeError: 'NoneType' object has no attribute 'decode'《Python编程:从入门到实践》

pygal制图“AttributeError: ‘NoneType’ object has no attribute ‘decode’《Python编程:从入门到实践》


最近在刷《Python编程:从入门到实践》一书 webAPI 部分使用github接口绘制柱状图
遇到此报错 通过核对书中代码 发现并无错误

pygal制图“AttributeError: 'NoneType' object has no attribute 'decode'

通过分析是 接口中 description为空原因 ps 原来大神代码也有不健壮的时候啊

完整代码:

import requests
import pygal
from pygal.style import LightColorizedStyle as LCS, LightenStyle as LS
#  执行api调用并储存响应
url = 'https://api.github.com/search/repositories?q=language:python&sort=stars'
r = requests.get(url)
print("Status code:", r.status_code)

#  将api响应储存在一个变量中
response_dict = r.json()

#  处理结果 打印字典的键
print('总数', response_dict['total_count'])

#  探索仓库有关信息
repo_dicts = response_dict['items']
print('仓库数量', len(repo_dicts))

#  研究第一个仓库
repo_dict = repo_dicts[0]

names, plot_dicts = [], []
print("\n最受欢迎的python仓库:")
for repo_dict in repo_dicts:
    # print('\n项目名称:', repo_dict['name'])
    # print('登录名:', repo_dict['owner']['login'])
    # print('Stars:', repo_dict['stargazers_count'])
    # print('地址:', repo_dict['html_url'])
    # print('创建时间:', repo_dict['created_at'])
    # print('更新时间:', repo_dict['updated_at'])
    # print('仓库描述:', repo_dict['description'])
    names.append(repo_dict['name'])

    plot_dict = {
        'value': repo_dict['stargazers_count'],
        'label': repo_dict['description'] if repo_dict['description'] else ' ',
        #  添加可单击的链接
        'xlink': repo_dict['html_url']
    }
    plot_dicts.append(plot_dict)


#  可视化
my_style = LS('#333366', base_stayle=LCS)

my_config = pygal.Config()
my_config.x_label_rotation = 45
my_config.show_legend = False
my_config.title_font_size = 24
my_config.label_font_size = 14
my_config.major_label_font_size = 18
my_config.truncate_label = 15
my_config.show_y_guides = False
my_config.width = 1000

chart = pygal.Bar(my_config, style=my_style)
chart.title = 'github-python仓库star统计'
chart.x_labels = names

chart.add('', plot_dicts)
chart.render_to_file('python_repos.svg')

修改部分

就是这里 'label': repo_dict['description'] if repo_dict['description'] else ' ', 做个默认值就好了

plot_dict = {
        'value': repo_dict['stargazers_count'],
        'label': repo_dict['description'] if repo_dict['description'] else ' ',
        #  添加可单击的链接
        'xlink': repo_dict['html_url']
    }
    plot_dicts.append(plot_dict)
发布了130 篇原创文章 · 获赞 91 · 访问量 13万+

猜你喜欢

转载自blog.csdn.net/Chad97/article/details/101203152