10 lines
341 B
Python
10 lines
341 B
Python
from .wordcloud import (WordCloud, STOPWORDS, random_color_func,
|
|
get_single_color_func)
|
|
from .color_from_image import ImageColorGenerator
|
|
|
|
__all__ = ['WordCloud', 'STOPWORDS', 'random_color_func',
|
|
'get_single_color_func', 'ImageColorGenerator',
|
|
'__version__']
|
|
|
|
from ._version import __version__
|