diff options
| author | Dylan Araps <dylanaraps@users.noreply.github.com> | 2017-07-23 15:37:14 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-23 15:37:14 +1000 |
| commit | 0c1d76e2b3611b541316dc8d7eb67f18cec5e7f2 (patch) | |
| tree | aaf8141c62789dcfc4f72af24ae96df71459a084 /pywal/__init__.py | |
| parent | 9c871ec567504c2566c4ce9f3d382f544cb62b57 (diff) | |
| parent | 07b8ad8e0d97f54277c2e744f745ba3e47d0e53c (diff) | |
Merge pull request #52 from dylanaraps/api
api: Start work on a proper api.
Diffstat (limited to 'pywal/__init__.py')
| -rw-r--r-- | pywal/__init__.py | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/pywal/__init__.py b/pywal/__init__.py index 006f780..e9c0603 100644 --- a/pywal/__init__.py +++ b/pywal/__init__.py @@ -1,5 +1,28 @@ """ -wal - Generate and change colorschemes on the fly. + '|| +... ... .... ... ... ... ... .... || + ||' || '|. | || || | '' .|| || + || | '|.| ||| ||| .|' || || + ||...' '| | | '|..'|' .||. + || .. | +'''' '' Created by Dylan Araps. """ -from pywal.settings import __version__ # noqa: F401 + +from .settings import __version__ +from . import colors +from . import export +from . import image +from . import reload +from . import sequences +from . import wallpaper + +__all__ = [ + "__version__", + "colors", + "export", + "image", + "reload", + "sequences", + "wallpaper", +] |
