summaryrefslogtreecommitdiffstats
path: root/bindings/python/examples/play_with_ipod_api.py
blob: 4780f73150b4e335ee55167d330787b7f8f8451f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/python

import gpod

db = gpod.Database()

print db

for track in db[4:20]:
    print track
    print track['title']

for pl in db.Playlists:
    print pl
    for track in pl:
        print " ", track