Metadata-Version: 1.1
Name: DwaPython
Version: 1.1.3
Summary: Python library to communicate with Divine Warfare game API
Home-page: https://github.com/Salamek/DwaPython
Author: Adam Schubert
Author-email: adam.schubert@sg1-game.net
License: UNKNOWN
Description: DwaPython
        =========
        
        [![Build Status](https://travis-ci.org/Salamek/DwaPython.svg?branch=master)](https://travis-ci.org/Salamek/DwaPython)
        
        
        Python library to communicate with Divine Warfare game API http://api.divine-warfare.com/doc/
        
        # Installation
        
            pip install DwaPython
            
        # Usage
        
        Usage is simple:
        
        ```python
        
        #import a library
        from dwa import Dwa
        
        #set API token
        dwa = Dwa('32len_api_token')
        
        #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/
        
        ```
        
        
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development
