kivy-garden.wordcloud

A wordcloud widget for kivy.


Keywords
Kivy, kivy-garden
License
MIT
Install
pip install kivy-garden.wordcloud==1.0.0

Documentation

WORDCLOUD

Coverage Status Build Status

See https://kivy-garden.github.io/wordcloud/ for the rendered flower docs.

Please see the garden instructions for how to use kivy garden flowers.

Flower information

Display words in a cloud-like fashion, with optional animations on them.

wordcloud example

youtube demo

You can execute the module's __init__.py file with python to try the example.

Install

pip install kivy_garden.wordcloud

Usage

wc = WordCloud(
    label_options=dict(
        font_size=40,
        padding=(10, 10),
    ),
    label_cls='CloudLabel',
    words = (
        'Kivy',
        'Open',
        'source',
        'Python',
        'library',
        'for',
        'rapid',
        'development',
        'of',
        'applications',
        'that',
        'make',
        'use',
        'innovative',
        'user',
        'interfaces',
        'such',
        'as',
        'multi',
        'touch',
        'apps',
    )
)
wc.bind(
    on_post_populate=wc.animate_random_word,
    on_pre_populate=wc.cancel_animate_random_word,
)
root.add_widget(wc)

Contributing

Check out our contribution guide and feel free to improve the flower.

License

This software is released under the terms of the MIT License. Please see the LICENSE.txt file.

How to release

See the garden instructions for how to make a new release.