Coder Social home page Coder Social logo

srikalyan / stylecloud Goto Github PK

View Code? Open in Web Editor NEW

This project forked from minimaxir/stylecloud

0.0 1.0 0.0 291 KB

Python package + CLI to generate stylistic wordclouds, including gradients and icon shapes!

License: MIT License

Python 100.00%

stylecloud's Introduction

stylecloud

Generate stylistic wordclouds, including gradients and icon shapes!

stylecloud is a Python package that leverages the popular word_cloud package, adding useful features to create truly unique word clouds!

  • Icon shapes (of any size!) for wordclouds (via Font Awesome 5.11.2)
  • Support for advanced color palettes (via palettable)
  • Directional gradients w/ the aforementioned palettes.
  • Supports reading a file of text, or reading a pre-generated CSV with words and counts.
  • Command Line Interface!

This package is a more formal implementation of my stylistic word cloud project from 2016.

Installation

You can install stylecloud via pip:

pip3 install stylecloud

Usage

You can use stylecloud in a Python script or as a standalone CLI app. For example, let's say you have a text of the U.S. Constitution constitution.txt.

Python script:

import stylecloud

stylecloud.gen_stylecloud(file_path='constitution.txt')

But you can do so much more! You can use the free Font Awesome icons to change the shape, change the color palette to one from palettable for a custom style, change the background color, and, most importantly, add a gradient so the colors flow in a specified direction!

import stylecloud

stylecloud.gen_stylecloud(file_path='constitution.txt',
                          icon_name='fas fa-dog',
                          palette='colorbrewer.diverging.Spectral_11',
                          background_color='black',
                          gradient='horizontal')

You can also use the CLI for even faster stylecloud generation! For the simple flag stylecloud above:

stylecloud --file_path constitution.txt

For the more complex dog-gradient stylecloud:

stylecloud --file_path constitution.txt --icon_name 'fas fa-dog' --palette colorbrewer.diverging.Spectral_11 --background_color black --gradient horizontal

You can find more examples of styleclouds, including how to make styleclouds from Twitter and Reddit data, in the stylecloud-examples repo.

In order to deal with different languages or simply add list of custom stopwords it is possible to pass a list contained in a string as parameter like so :

stylecloud --file_path constitution.txt --custom_words "[thereof, may, state, united states]"

For more control it would of course be most ideal to define the list in code since if one is defining stopwords for another language these lists can get long. In that case simply pass in the list as argument to the function

import stylecloud
my_long_list = ["thereof", "may", "state", "united states"]

stylecloud.gen_stylecloud(file_path=constitution.txt, custom_words=my_long_list)

Good ressources for stopwords in other languages are the stop-words python package which gives you python lists directly. Or as JSON arrays this list of iso stopword collections.

Helpful Parameters

These parameters are valid for both the Python function and the CLI (you can use stylecloud -h to get this information as well).

  • text: Input text. Best used if calling the function directly.
  • file_path: File path of the input text/CSV. Best used on the CLI.
  • gradient: Direction of gradient. (if not None, the stylecloud will use a directional gradient) [default: None]
  • size: Size (length and width in pixels) of the stylecloud. [default: 512]
  • icon_name: Icon Name for the stylecloud shape. (e.g. 'fas fa-grin') [default: fas fa-flag]
  • palette: Color palette (via palettable) [default: cartocolors.qualitative.Bold_6]
  • background_color: Background color (name or hex) [default: white]
  • max_font_size: Maximum font size in the stylecloud. [default: 200]
  • max_words: Maximum number of words to include in the stylecloud. [default: 2000]
  • stopwords: Boolean to filter out common stopwords. [default: True]
  • custom_stopwords: list of custom stopwords. e.g: For other languages than english [default: STOPWORDS]
  • output_name: Output file name of the stylecloud. [default: stylecloud.png]
  • font_path: Path to .ttf file for font to use in stylecloud. [default: uses included Staatliches font]
  • random_state: Controls random state of words and colors.

Helpful Notes

  • The primary goal of this package is to create data visualizations of text that provide a unique aesthetic. Word clouds have tradeoffs in terms of a statistically robust data visualization, but this is explicitly prioritizing coolness!
  • This package is released as a separate package from word_cloud due to the increase in scope and Python dependencies.
  • The ideal fonts for generating a good stylecloud are a) bold/high weight in order to increase readability, and b) condensed/low kerning to fit more text. Both of these traits are why Staatliches is the default font for stylecloud (overriding Droid Sans in the base word_cloud).
  • You may want to consider doing post-processing after generating a stylecloud: for example, adding color masks, adding perception skew, feed it to a style transfer AI model, etc.
  • The default max_font_size of 200 is calibrated for the default size of 512. If you increase the size, you may want to consider increasing max_font_size as well.
  • Due to the size of the included Font Awesome font files, they will not be updated on every new minor FA release.
  • It's recommended to use FA icons which are large with heavy weight; thin icons might constrain the text too much.
  • If using the default random-color-sampling method, it's recommended to use a qualitative palette. Inversely, if using a gradient, it's recommended to use a nonqualitative palette (e.g. a sequential palette).

To Do

  • Support custom font files (e.g. Font Awesome Pro)
  • Create an app running stylecloud

Maintainer/Creator

Max Woolf (@minimaxir)

Max's open-source projects are supported by his Patreon and GitHub Sponsors. If you found this project helpful, any monetary contributions to the Patreon are appreciated and will be put to good creative use.

License

MIT

Font Awesome icon font files included per the terms in its SIL OFL 1.1 License.

Staatliches font included per the terms in its SIL OFL 1.1 License.

stylecloud's People

Contributors

minimaxir avatar xoeseko avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.