Metadata-Version: 1.1
Name: assembla
Version: 2.4.1
Summary: Python wrapper for the Assembla API
Home-page: http://github.com/markfinger/assembla/
Author: Mark Finger
Author-email: markfinger@gmail.com
License: MIT
Description: 
        Basic Example
        -------------
        
        ::
        
        	from assembla import API
        
        	assembla = API(
        	    key='8a71541e5fb2e4741120',
        	    secret='a260dc4448c81c907fc7c85ad09d31306c425417',
        	    # Auth details from https://www.assembla.com/user/edit/manage_clients
        	)
        
        	my_space = assembla.spaces(name='My Space')[0]
        
        	for ticket in my_space.tickets():
        	    print '#{0} - {1}'.format(ticket['number'], ticket['summary'])
        
        	# >>> #1 - My first ticket
        	# >>> #2 - My second ticket
        	# ...
        
        Full documentation at http://github.com/markfinger/assembla
        
Keywords: Assembla API
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
