pygal工具提示失效

问题记录
初学python,跟着《Python编程从入门到实践》按照书上17章的示例

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

# 执行API调用并存储响应, status_code=200表示成功
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.keys())
print("Total repositories:", response_dict['total_count'])

# 探索有关仓库的信息
repo_dicts = response_dict['items']
# print("Repositories returned:", len(repo_dicts))
names, stars = [], []
for repo_dict in repo_dicts:
    names.append(repo_dict['name'])
    stars.append(repo_dict['stargazers_count'])

# 可视化,x_label_rotation意为标签绕x轴旋转45°,show_legend=False意为隐藏图例
my_style = LS('#333366', base_style=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 = 'Most-Starred python Projects on GitHub'
chart.x_labels = names

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

工具使用如下:
python 3.8
pygal1.7
pycharm2020

from pygal.style import LightenStyle as LS
报错:cannot find referance LightenStyle

pip install pygal==2.4

更新为pygal2.4后无报错
但是生成的.svg文件仍然无法显示工具提示

在百度查了一下,原因可能为在python中执行的脚本和最终呈现之间似乎发生了一些事情。

解决办法:
可能需要更换python版本,因为目前对工具提示的需求没有那么强烈,故没有去更换。
折腾了一个上午。。。

你可能感兴趣的:(问题记录)