aboutsummaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2012-10-22 20:38:08 -0400
committerMike Crute <mcrute@gmail.com>2012-10-22 20:38:08 -0400
commita3e79f4ee83d215b3909a7837ba04f4e993acf67 (patch)
tree9295e3ebc7fcb13834d5df2bb088ef42c784a9d7 /README.rst
downloadpydora-a3e79f4ee83d215b3909a7837ba04f4e993acf67.tar.bz2
pydora-a3e79f4ee83d215b3909a7837ba04f4e993acf67.tar.xz
pydora-a3e79f4ee83d215b3909a7837ba04f4e993acf67.zip
Initial import
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst24
1 files changed, 24 insertions, 0 deletions
diff --git a/README.rst b/README.rst
new file mode 100644
index 0000000..73671b5
--- /dev/null
+++ b/README.rst
@@ -0,0 +1,24 @@
1==================
2Pandora API Client
3==================
4
5This code is licensed under the MIT license.
6
7This is a reasonably complete implementation of the Pandora API. It does not
8implement any of the undocumented features and does not implement most of the
9account management features as they were deemed not terribly useful.
10
11I don't provide any keys or passwords for Pandora in this repo, you'll have to
12go get those for yourself. Make something awesome with this library, don't
13abuse Pandora, that's not cool.
14
15API Spec from: http://pan-do-ra-api.wikia.com/wiki/Json/5
16Keys at: http://pan-do-ra-api.wikia.com/wiki/Json/5/partners
17
18Example::
19
20 >>> encryptor = Encryptor("in_key", "out_key")
21 >>> transport = APITransport(encryptor)
22 >>> client = APIClient(transport, "partner", "parner_pass", "device")
23 >>> client.login("username", "password")
24 >>> stations = client.get_station_list()