From 0143b58837c65f57c64ab9f99b1c2dd634bc5372 Mon Sep 17 00:00:00 2001 From: Paul Lamere Date: Thu, 21 Aug 2014 10:58:40 -0400 Subject: [PATCH] Renamed spotipy to client to avoid confusion --- spotipy/__init__.py | 3 +-- spotipy/{spotipy.py => client.py} | 4 +++- 2 files changed, 4 insertions(+), 3 deletions(-) rename spotipy/{spotipy.py => client.py} (99%) diff --git a/spotipy/__init__.py b/spotipy/__init__.py index d77e12a..4f3ddd4 100644 --- a/spotipy/__init__.py +++ b/spotipy/__init__.py @@ -1,2 +1 @@ -__all__ = ['spotipy'] -from spotipy import * +from client import Spotify, SpotifyException diff --git a/spotipy/spotipy.py b/spotipy/client.py similarity index 99% rename from spotipy/spotipy.py rename to spotipy/client.py index 6aa820a..3aeac95 100644 --- a/spotipy/spotipy.py +++ b/spotipy/client.py @@ -38,7 +38,9 @@ class Spotify(object): print(user) ''' - trace = False + trace = False + """enable tracing""" + _auth = None def __init__(self, auth=None):