Metadata-Version: 1.1
Name: agilepoint
Version: 0.0.1
Summary: AgilePoint API lib
Home-page: https://github.com/blade2005/py-agilepoint
Author: Craig Davis
Author-email: cdavis@alertlogic.com
License: GPLv3
Description: py-agilepoint
        =============
        Python integration for AgilePoint
        ---------------------------------
        
        TODO: Create script to regenerate code
        
        Examples
        ~~~~~~~~
        
        Basic Usage::
        
        	from agilpoint import AgilePoint
        	ap = AgilePoint(host, path, username, password)
        	db_info = ap.admin.get_database_info()
        	# Responses in json usually have a primary key indicating what AgilePoint class the response has.
        	for key, value in db_info['GetDatabaseInfoResult'].items():
        	    print('{}: {}'.format(key,value))
        
        Register Users::
        
        	users = {'First Last': 'email@domain.tld'}
        	for name, email in users.items():
        	    r = ap.admin.register_user(UserName=email, FullName=name)
        	    print(r)
        
        Note: It's not well defined what arguments are required and what is optional. I've made logical conclusions. If you notice that the required/optional arguments is incorrect please submit a PR.
        
        
Keywords: agilepoint bpm bpms
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
