如果想了解更多有趣的项目和小玩意,都可以来我这里哦通道
stylecloud基于wordcloud库,使用方法更简单一些,我们可以基于此创造更多好看和独特的词云,so good!
该库有以下的特点:
安装我们的stylecloud还是非常简单的
pip install stylecloud
如果我们有US的宪法文件 constitution.txt ,我们可以在Python脚本中或作为独立的CLI应用程序使用stylecloud
import stylecloud
stylecloud.gen_stylecloud(file_path='constitution.txt')
除此之外,我们可以做的更多! 您可以使用免费的Font Awesome图标来更改形状,将调色板从可调色板更改为自定义样式,更改背景颜色,最重要的是,添加渐变以使颜色沿指定方向流动!
# 导入需要的库stylecloud
import stylecloud
# 调整参数file_path,icon_name,palette,backgound_color,gradient,自定义样式,添加渐变以使颜色沿指定方向流动!
stylecloud.gen_stylecloud(file_path='constitution.txt',
icon_name='fas fa-dog',
palette='colorbrewer.diverging.Spectral_11',
background_color='black',
gradient='horizontal')
我们也可以使用CLI(命令行 command Line interface)来更快地生成stylecloud! 对于上面的简单标志stylecloud:
stylecloud --file_path constitution.txt
对于更复杂的狗渐变stylecloud:
stylecloud --file_path constitution.txt --icon_name ‘fas fa-dog’ --palette colorbrewer.diverging.Spectral_11 --background_color black --gradient horizontal
这些可以在命令行模型下,通过stylecloud -h得到
我们可以使用colors参数手动指定文本的颜色,从而覆盖调色板。 这对于特定的品牌或高对比度的可视化很有用。 但是,手动颜色选择不适用于渐变。
# 导入需要的库stylecloud
import stylecloud
# 定义文字颜色和背景颜色
stylecloud.gen_stylecloud(file_path='constitution.txt',
colors=['#ecf0f1', '#3498db', '#e74c3c'],
background_color='#1A1A1A')
stylecloud --file_path constitution.txt --colors “[’#ecf0f1’, ‘#3498db’, ‘#e74c3c’]” --background_color ‘#1A1A1A’
停用词为了过滤掉非英语语言的停用词或使用自定义停用词,您可以将单词列表传递给custom_stopwords参数:
# 导入需要的库stylecloud
import stylecloud
# build我们的stopwords
my_long_list = ["thereof", "may", "state", "united states"]
stylecloud.gen_stylecloud(file_path='constitution.txt',
custom_stopwords=my_long_list)
CIL模式
stylecloud --file_path constitution.txt --custom_stopwords “[thereof, may, state, united states]”
不同语言的停用词是不同的,如果我们需要找停用词,可以去 stop-words Python package 和 ISO stopword
import stylecloud
stylecloud.gen_stylecloud(file_path='constitution.txt')
CIL:
stylecloud --file_path constitution.txt
import stylecloud
stylecloud.gen_stylecloud(file_path='constitution.txt',
icon_name='fas fa-dog',
palette='colorbrewer.diverging.Spectral_11',
background_color='black')
CLI:
stylecloud --file_path constitution.txt --icon_name ‘fas fa-dog’ --palette colorbrewer.diverging.Spectral_11 --background_color black
指定渐变方向(horizontal or vertical)将使单词表现得好像受颜色渐变的影响。 强烈建议您在添加渐变时使用非默认调色板(即非定性调色板)。
import stylecloud
stylecloud.gen_stylecloud(file_path='constitution.txt',
icon_name='fas fa-dog',
palette='colorbrewer.diverging.Spectral_11',
background_color='black',
gradient='horizontal')
CIL:
stylecloud --file_path constitution.txt --icon_name ‘fas fa-dog’ --palette colorbrewer.diverging.Spectral_11 --background_color black --gradient horizontal
好咯,这些好像前面都出现过了,好像是否是有点无趣,那我们正片开始了
import stylecloud
stylecloud.gen_stylecloud(file_path='constitution.txt',
colors='white',
background_color='#1A1A1A')
CIL:
stylecloud --file_path constitution.txt --colors white --background_color ‘#1A1A1A’
如果您希望stylecloud更加简约,则可以指定非正方形大小。(或制作出优质的桌面墙纸)
import stylecloud
stylecloud.gen_stylecloud(file_path='constitution.txt',
icon_name='fas fa-globe',
colors='white',
background_color='#1A1A1A',
size=(768, 512))
CIL:
stylecloud --file_path constitution.txt --icon_name ‘fas fa-globe’ --colors ‘white’ --background_color ‘#1A1A1A’ --size ‘(768, 512)’
您可以反转遮罩(Invert Mask),以使文本占据除图标遮罩之外的所有区域。 非常适合较薄的图标和非方形尺寸!
import stylecloud
stylecloud.gen_stylecloud(file_path='constitution.txt',
icon_name='fas fa-globe',
colors='white',
background_color='#1A1A1A',
size=(768, 512),
invert_mask=True)
stylecloud --file_path constitution.txt --icon_name ‘fas fa-globe’ --colors ‘white’ --background_color ‘#1A1A1A’ --size ‘(768, 512)’ --invert_mask True
import stylecloud
stylecloud.gen_stylecloud(file_path = "2009-01-20-inaugural-address.txt", icon_name= "fab fa-twitter", palette="cartocolors.diverging.TealRose_7", background_color="black")
使用Font Awesome Pro的示例。 假定您正在使用Font Awesome Pro许可使用的字体和CSS文件。 如果已登录,则可以在Font Awesome Download page页面上下载Pro文件。 stylecloud与FA duotone风格不兼容。
必须同时提供pro_icon_path和pro_css_path
import stylecloud
stylecloud.gen_stylecloud(file_path='constitution.txt',
icon_name='fal fa-meh-rolling-eyes',
palette='colorbrewer.sequential.YlOrRd_9',
background_color='black',
gradient='vertical',
pro_icon_path='fa-regular-400.ttf',
pro_css_path='fontawesome.min.css',
output_name='stylecloud7.png')
import stylecloud
stylecloud.gen_stylecloud(file_path='constitution.txt',
icon_name='fal fa-meh-rolling-eyes',
palette='colorbrewer.sequential.YlOrRd_9',
background_color='black',
gradient='vertical',
pro_icon_path='fa-regular-400.ttf',
pro_css_path='fontawesome.min.css',
invert_mask=True,
output_name='stylecloud8.png')
import stylecloud
stylecloud.gen_stylecloud(file_path='那一世.txt',
output_name='stylecloud9.png',
palette='colorbrewer.sequential.Greens_5',
icon_name='fas fa-vihara',
background_color='black',
gradient='vertical',
font_path='simsun.ttf',
)