Python library to communicate with Divine Warfare game API https://api.divine-warfare.com/doc/
pip install DwaPython
Usage is simple:
#import a library
from dwa import Dwa
#set API token and URI of api (https://api.divine-warfare.com/ or https://apitest.divine-warfare.com/ for testing purposes)
dwa = Dwa('32len_api_token', 'https://apitest.divine-warfare.com/')
#get user obj
user = dwa.user()
#get list of users
list_of_users = user.list({'limit': 20, 'page': 0})
#get user token info
user_token_info = user.token({'username': 'test', 'password': 'test'})
#get server obj
server = dwa.server()
#get list of servers
list_of_servers = server.list({'limit': 20, 'page':0})
#More info on http://api.divine-warfare.com/doc/