首頁 > 軟體

解決pygal.style的LightColorizedStyle引數問題

2022-07-19 18:01:38

pygal.style的LightColorizedStyle引數 

問題

在《Python程式設計:從入門到實踐》中的使用API的案例,匯入了pygal.style的LightColorizedStyle,像教學那樣傳遞引數會報錯

import requests
import pygal
from pygal.style import LightColorizedStyle as LCS, LightStyle 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("Total repositories:", response_dict['total_count'])
# 探索倉庫資訊
response_dicts = response_dict['items']
# print("Repositories returned:", len(response_dicts))
names, stars = [], []
for response_dict in response_dicts:
    names.append(response_dict['name'])
    stars.append(response_dict['stargazers_count'])
# 視覺化
my_style = LS('#336699', 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')

報錯資訊如圖

解決方案

可能是因為包升級了,引數不一樣了,所以要輸入正確的引數

my_style = LS(colors=('#336699',), base_style=LCS)

解決思路

在pycharm中ctrl+滑鼠左鍵(或者ctrl+B)可以快速定位到函數,通過此方式點選LS,跳轉到了pygal包中的該類,可以看到一些屬性如下

class LightStyle(Style):
   """A light style"""
   background = 'white'
   plot_background = 'rgba(0, 0, 255, 0.1)'
   foreground = 'rgba(0, 0, 0, 0.7)'
   foreground_strong = 'rgba(0, 0, 0, 0.9)'
   foreground_subtle = 'rgba(0, 0, 0, 0.5)'
   colors = ('#242424', '#9f6767', '#92ac68',
             '#d0d293', '#9aacc3', '#bb77a4',
             '#77bbb5', '#777777')

再通過此方式點選Style,可以跳轉到Style物件,也可以看到colors屬性

猜測要像base_style=LCS那樣輸入colors=‘#336699’,然而嘗試後還是不行

再看第1和第2點,看到colors是一個元組,猜測不能只輸入一個值,是要輸入一個元組,所以修改成colors=(’#336699’,),執行後可以了

特此記錄下不專業的排查解決思路 

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版本,因為目前對工具提示的需求沒有那麼強烈,故沒有去更換。

折騰了一個上午。。。以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com