added init and auth (empty) modules

master
Abhinav Sarkar 2008-07-14 10:31:40 +00:00
parent 684315cca4
commit 4b1217f56a
3 changed files with 28 additions and 1 deletions

22
lastfm/__init__.py Normal file
View File

@ -0,0 +1,22 @@
#!/usr/bin/env python
__author__ = "Abhinav Sarkar"
__version__ = "0.1"
__license__ = "GNU Lesser General Public License"
from error import LastfmError
from album import Album
from artist import Artist
from event import Event
from geo import Location, Country
from group import Group
from playlist import Playlist
from tag import Tag
from tasteometer import Tasteometer
from track import Track
from user import User
__all__ = ['Album', 'Artist', 'Event', 'Location', 'Country',
'Group', 'Playlist', 'Tag', 'Tasteometer', 'Track',
'User']

5
lastfm/auth.py Normal file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env python
__author__ = "Abhinav Sarkar"
__version__ = "0.1"
__license__ = "GNU Lesser General Public License"

View File

@ -114,5 +114,5 @@ class Track(object):
pass
from error import LastfmError
from user import user
from user import User
from tag import Tag