Go to file
j 9be69f2568 fix encoding profile 2011-12-28 14:23:53 +05:30
bin more options 2011-08-23 21:20:16 +02:00
pandora_client fix encoding profile 2011-12-28 14:23:53 +05:30
README make api more pythonic, add __doc__ to functions 2010-12-04 15:14:54 +01:00
config.example.json fix encoding profile 2011-12-28 14:23:53 +05:30
setup.py dont use bzr revno in setup.py 2011-10-09 15:03:47 +02:00

README

pandora_client

python libary to access a pan.do/ra instance

pandora client example:
  import pandora_client
  #example config.json
  '''
  {
      "url": "http://localhost:8000/api/",
      "username": "username",
      "password": "password",
      "cache": "~/.ox/client.sqlite",
      "media-cache": "~/.ox/media",
      "volumes": {
          "volumename": "/media/2010/Movies"
      }
  }
  '''
  c = pandora_client.Client('config.json')
  c.scan()  #scans all volumes for files and updates cache db
  c.sync()  #syncs cached file info with site, and encodes and uploads requested media
  c.clean() #cleanup transcodes created druing sync to save disk space


just using the API:
    api = pandora_client.API("http://localhost:8000/api/")
    r = api.find(
        query={'conditions':[]},
        keys=['title', 'year'],
        range=[0, 100]
    )
    for i in r['data']['items']:
        ...

forther api documentation is available as python docstrings.
 api.find?
and there is a web api documentation at i.e. http://localhost:8000/api/