Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kivy-garden/wordcloud
A wordcloud widget with some optional animations.
https://github.com/kivy-garden/wordcloud
Last synced: about 1 month ago
JSON representation
A wordcloud widget with some optional animations.
- Host: GitHub
- URL: https://github.com/kivy-garden/wordcloud
- Owner: kivy-garden
- License: mit
- Created: 2019-09-29T19:39:36.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-29T20:57:09.000Z (about 5 years ago)
- Last Synced: 2024-11-07T21:46:34.463Z (about 2 months ago)
- Language: Python
- Size: 134 KB
- Stars: 3
- Watchers: 7
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
README
WORDCLOUD
=========[![Coverage Status](https://coveralls.io/repos/github/kivy-garden/wordcloud/badge.svg?branch=master)](https://coveralls.io/github/kivy-garden/wordcloud?branch=master)
[![Build Status](https://travis-ci.com/kivy-garden/wordcloud.svg?branch=master)](https://travis-ci.com/kivy-garden/wordcloud)See https://kivy-garden.github.io/wordcloud/ for the rendered flower docs.
Please see the garden [instructions](https://kivy-garden.github.io) for how to use kivy garden flowers.
Flower information
-------------------Display words in a cloud-like fashion, with optional animations on them.
![wordcloud example](./example.png)
[youtube demo](https://youtu.be/NEGK7HAOEkU)
You can execute the module's `__init__.py` file with python to try the example.
Install
---------```sh
pip install kivy_garden.wordcloud
```#### Usage
```py
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](CONTRIBUTING.md) and feel free to improve the flower.
License
-------This software is released under the terms of the MIT License.
Please see the [LICENSE.txt](LICENSE.txt) file.How to release
==============See the garden [instructions](https://kivy-garden.github.io/#makingareleaseforyourflower) for how to make a new release.