aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2019-04-02 02:54:30 +0000
committerMike Crute <mike@crute.us>2019-04-02 03:24:37 +0000
commit98b2f30026e060ed578e6105ca4c0df7a69a9263 (patch)
tree55338a667542a7adb49ef8bc608e12bf89b415c8
parentc53035eaeb98d9f07978f249308599d722cae28c (diff)
downloadpydora-98b2f30026e060ed578e6105ca4c0df7a69a9263.tar.bz2
pydora-98b2f30026e060ed578e6105ca4c0df7a69a9263.tar.xz
pydora-98b2f30026e060ed578e6105ca4c0df7a69a9263.zip
Empty top level __init__
-rw-r--r--pandora/__init__.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/pandora/__init__.py b/pandora/__init__.py
index bd2fe63..e69de29 100644
--- a/pandora/__init__.py
+++ b/pandora/__init__.py
@@ -1,13 +0,0 @@
1"""
2Pandora API Client
3
4This is a reasonably complete implementation of the Pandora API. It does not
5implement any of the undocumented features and does not implement most of the
6account management features as they were deemed not terribly useful.
7
8API Spec from: http://6xq.net/playground/pandora-apidoc/
9Keys at: http://6xq.net/playground/pandora-apidoc/json/partners/#partners
10"""
11
12from .client import BaseAPIClient, APIClient # noqa: F401
13from .transport import APITransport, Encryptor, DEFAULT_API_HOST # noqa: F401