From 358b578d9c87a15a7f944bdcd81542ace893b430 Mon Sep 17 00:00:00 2001 From: Paul Lamere Date: Sun, 17 Aug 2014 10:28:37 -0400 Subject: [PATCH] moved util into the main package --- spotipy/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spotipy/__init__.py b/spotipy/__init__.py index 6ee4921..129153e 100644 --- a/spotipy/__init__.py +++ b/spotipy/__init__.py @@ -8,7 +8,7 @@ import requests import json -__all__ = ['oauth2'] +__all__ = ['oauth2', 'util'] ''' A simple and thin Python library for the Spotify Web API '''