Skip to content

jsakas/beatport

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Beatport API Wrapper

Handles authentication for the Beatport API

Installation

python setup.py install

Basic Use

Your Beatport Credentials are stored in the file beatport-auth.json. This package looks for that file when the start method is called.

import beatport

try:
	beatport = beatport.API()
	beatport.start()

	ids = ','.join(['43949','8190'])
	data = {'ids':ids}

	response = beatport.request('catalog/3/releases', data)

	print response
except Exception as e:
	print e
	raise

About

Handles authentication for the Beatport API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages