From 171bc8497584cc99c966ceb2c30b0d67f1548b37 Mon Sep 17 00:00:00 2001 From: Charles Tapley Hoyt Date: Sat, 27 Jun 2020 15:36:29 +0200 Subject: [PATCH] Make it easier to import WordCloud Anything you import into `__init__.py` becomes available at the package level, so now it would be possible to do `from word_cloud import WordCloud` --- word_cloud/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/word_cloud/__init__.py b/word_cloud/__init__.py index e69de29..09d5aea 100644 --- a/word_cloud/__init__.py +++ b/word_cloud/__init__.py @@ -0,0 +1 @@ +from .word_cloud_generator import WordCloud