diff options
Diffstat (limited to 'bindings/python/examples')
| -rw-r--r-- | bindings/python/examples/Makefile.am | 4 | ||||
| -rwxr-xr-x | bindings/python/examples/playwith_ipod_api.py | 14 |
2 files changed, 17 insertions, 1 deletions
diff --git a/bindings/python/examples/Makefile.am b/bindings/python/examples/Makefile.am index 93cf41c..89f76fc 100644 --- a/bindings/python/examples/Makefile.am +++ b/bindings/python/examples/Makefile.am @@ -1,2 +1,4 @@ -EXTRA_DIST = coverart_fetch.py toy_around.py tag_genre_from_audioscrobber.py add_song.py +EXTRA_DIST = coverart_fetch.py toy_around.py \ + tag_genre_from_audioscrobber.py add_song.py \ + playwith_ipod_api.py diff --git a/bindings/python/examples/playwith_ipod_api.py b/bindings/python/examples/playwith_ipod_api.py new file mode 100755 index 0000000..544de5b --- /dev/null +++ b/bindings/python/examples/playwith_ipod_api.py @@ -0,0 +1,14 @@ +#!/usr/bin/python + +import ipod + +db = ipod.Database() + +for track in db[4:20]: + print track + print track['title'] + +filename = "/mp3/Blondie/No_Exit/Blondie_-_Maria.mp3" +t = ipod.Track(from_file=filename) +print t + |
