Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
scientific-dev authored Sep 25, 2020
1 parent 90c28f6 commit 4879b33
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion spotifyapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
from .Util import AttrDict as objectify
"""
Spotify-Api.py
Simple Spotify Wrapper written in python
By abh80 and science spot(scientific-guy)
v0.0.1 MIT License
"""

# Import all lib files
from .Oauth import Auth
from .Track import Track
from .Artist import Artist
from .User import User
from .Album import Album

# Client Class
class Client():

def __init__(self, token:str):
Expand All @@ -16,4 +24,5 @@ def __init__(self, token:str):
self.user = User(self.token)
self.album = Album(self.token)

# Version v0.0.1
__version__ = '0.0.1'

0 comments on commit 4879b33

Please sign in to comment.