pull/1/merge
Steffen Kampmann 2014-11-28 20:48:43 +00:00
commit e2e987384c
13 changed files with 20 additions and 12 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.pyc

7
Readme.md Normal file
View File

@ -0,0 +1,7 @@
# python-lastfm
This package provides a python interface to the [last.fm web services API](http://ws.audioscrobbler.com/2.0/) ([Docs](http://www.last.fm/api/intro)).
The package covers all the methods provided by the web service API. It also contains some composite methods built upon the methods provided by the web service API. Authentication and authenticated methods are supported.
The code is being documented now. You can see the documentation [here](http://abhinavsarkar.net/python-lastfm-apidocs/) for reference.

View File

@ -15,7 +15,7 @@ located at http://ws.audioscrobbler.com/2.0/ .""",
maintainer="Abhinav Sarkar",
maintainer_email="abhinav.sarkar@gmail.com",
url="http://python-lastfm.googlecode.com/svn/trunk/dist/",
packages=['lastfm'],
packages=['lastfm', 'lastfm.mixin', 'lastfm.util'],
package_data = {'doc':['*.txt', '*.htm', '*.css', '*.js', '*.png']},
license="GNU Lesser General Public License",
keywords="audioscrobbler webservice api last.fm",
@ -24,7 +24,7 @@ located at http://ws.audioscrobbler.com/2.0/ .""",
SETUPTOOLS_METADATA = dict(
install_requires = ['setuptools', 'decorator'],
include_package_data = True,
tests_require = ['wsgi_intercept'],
tests_require = ['wsgi_intercept >= 0.8.1'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',

View File

@ -8,7 +8,7 @@ import unittest
import datetime
import sys, os
from wsgi_intercept.urllib2_intercept import install_opener
from wsgi_intercept.urllib_intercept import install_opener
import wsgi_intercept
from wsgi_test_app import create_wsgi_app

View File

@ -7,7 +7,7 @@ __license__ = "GNU Lesser General Public License"
import unittest
import sys, os
from wsgi_intercept.urllib2_intercept import install_opener
from wsgi_intercept.urllib_intercept import install_opener
import wsgi_intercept
from wsgi_test_app import create_wsgi_app

View File

@ -7,7 +7,7 @@ __license__ = "GNU Lesser General Public License"
import unittest
import sys, os
from wsgi_intercept.urllib2_intercept import install_opener
from wsgi_intercept.urllib_intercept import install_opener
import wsgi_intercept
from wsgi_test_app import create_wsgi_app

View File

@ -7,7 +7,7 @@ __license__ = "GNU Lesser General Public License"
import unittest
import sys, os
from wsgi_intercept.urllib2_intercept import install_opener
from wsgi_intercept.urllib_intercept import install_opener
import wsgi_intercept
from wsgi_test_app import create_wsgi_app

View File

@ -7,7 +7,7 @@ __license__ = "GNU Lesser General Public License"
import unittest
import sys, os
from wsgi_intercept.urllib2_intercept import install_opener
from wsgi_intercept.urllib_intercept import install_opener
import wsgi_intercept
from wsgi_test_app import create_wsgi_app

View File

@ -7,7 +7,7 @@ __license__ = "GNU Lesser General Public License"
import unittest
import sys, os
from wsgi_intercept.urllib2_intercept import install_opener
from wsgi_intercept.urllib_intercept import install_opener
import wsgi_intercept
from wsgi_test_app import create_wsgi_app

View File

@ -7,7 +7,7 @@ __license__ = "GNU Lesser General Public License"
import unittest
import sys, os
from wsgi_intercept.urllib2_intercept import install_opener
from wsgi_intercept.urllib_intercept import install_opener
import wsgi_intercept
from wsgi_test_app import create_wsgi_app

View File

@ -7,7 +7,7 @@ __license__ = "GNU Lesser General Public License"
import unittest
import sys, os
from wsgi_intercept.urllib2_intercept import install_opener
from wsgi_intercept.urllib_intercept import install_opener
import wsgi_intercept
from wsgi_test_app import create_wsgi_app

View File

@ -7,7 +7,7 @@ __license__ = "GNU Lesser General Public License"
import unittest
import sys, os
from wsgi_intercept.urllib2_intercept import install_opener
from wsgi_intercept.urllib_intercept import install_opener
import wsgi_intercept
from wsgi_test_app import create_wsgi_app

View File

@ -7,7 +7,7 @@ __license__ = "GNU Lesser General Public License"
import unittest
import sys, os
from wsgi_intercept.urllib2_intercept import install_opener
from wsgi_intercept.urllib_intercept import install_opener
import wsgi_intercept
from wsgi_test_app import create_wsgi_app