Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Cleanup + example
Browse files Browse the repository at this point in the history
  • Loading branch information
micrypt committed Jul 12, 2010
1 parent f6e3cee commit bc9f3e9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -1,2 +1,5 @@
*~
*.pyc
*dist*
*build*
*egg*
15 changes: 15 additions & 0 deletions examples/example.py
@@ -0,0 +1,15 @@
from atlas.api import API
import pprint

"""API examples"""

atlas_client = API()

"""
Inadvertently discovered that there are a TON of results when the publisher is set to the BBC
Needless to say, remember to set a limit when uncertain how many results to expect.
"""
items = atlas_client.playlists(publisher='bbc.co.uk', limit='2')

pprint.pprint(items)

0 comments on commit bc9f3e9

Please sign in to comment.