pyasana 0.0.3

Creator: railscoderz

Last updated:

Add to Cart

Description:

pyasana 0.0.3

Python Asana============.. image:: https://travis-ci.org/caseydunham/python-asana.png?branch=master :target: https://travis-ci.org/caseydunham/python-asanaA python wrapper around the Asana (asana.com) APIIntroduction------------This library provides a pure python interface for the Asana restful API.Currently not all operations are supported. All of the operations that are currently supported are read only.With this initial version, the following functionality is working: * Retrieving workspaces * Retrieving projects * Retrieving users * Retrieving tasks * Retrieving storiesDocumentation-------------Forthcoming.Using-----The library provides a python wrapper around the Asana API and data model.*Model:*The various API methods in the pyasana.API class return instances of the followingclasses.. code-block:: pycon pyasana.User pyasana.Workspace pyasana.Project pyasana.Task pyasana.Story*API:*All interaction with the Asana API is done through the pyasana.Api class.All Asana API calls require an Integrator Key.To create an instance of the pyasana.Api class: >>> import pyasana >>> api = pyasana.Api("YOUR ASANA INTEGERATOR KEY")To retrieve a list of all the workspaces: >>> workspaces = api.get_workspaces() >>> print ["%s:%s" % (w.id, w.name) for w in workspaces] [u'193074061952:Shiny New Workspace', u'652052755897:Sandbox']To retrieve a list of all projects in a workspace: >>> workspace = 193074061952 >>> projects = api.get_projects(workspace) >>> print ["%s:%s" % (p.id, p.name) for p in projects] [u'983421735560:Asana Python Client', u'992461725871:Test Project']To retrieve a list of all tasks in a project: >>> project = 983421735560 >>> tasks = api.get_tasks(project=project) >>> print ["%s:%s % (t.id, t.name) for t in tasks] [u'953421755459:fix task detail issue', u'953341245215:documentation']More examples forthcoming..... _`the repository`: http://github.com/caseydunham/python-asana.. _AUTHORS: https://github.com/caseydunham/python-asana/blob/master/AUTHORS.rst.. :changelog:History-------0.0.3 (2013-02-10)++++++++++++++++++* package release* create projects0.0.2 (2012-12-03)++++++++++++++++++* added assignee to task object* throttle support0.0.1 (2012-06-12)++++++++++++++++++* inception

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.