Skip to main content

Python wrapper for the Assembla API

Project description

===========
Assembla: Python wrapper for API
===========

An easy to use wrapper around the Assembla API which allows you to retrieve
Spaces, Milestones, Tickets and Users.

Typical usage::

import assembla

API = assembla.API(
'Username',
'Password',
)

# Retrieve your available spaces
spaces = API.spaces()

# Select a specific space
space = filter(
lambda space: space.name=='My Space',
spaces
)[0]

# Objects returned possess all the attributes available through the API.
# For example, we can output the space's name
print(space.name)

# Retrieve the space's milestones, tickets and users
milestones = space.milestones()
tickets = space.tickets()
users = space.users()

# Select a specific milestone
milestone = filter(
lambda milestone: milestone.title=='Release Candidate 1',
milestones
)[0]

# Retrieve and output the milestone's tickets
for ticket in milestone.tickets():
print(ticket.number, ticket.summary)

Source: https://github.com/mfinger/assembla

API Reference: http://www.assembla.com/spaces/breakoutdocs/wiki/Assembla_REST_API

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

assembla-1.0.0.tar.gz (12.2 kB view hashes)

Uploaded Source

Built Distribution

assembla-1.0.0.linux-x86_64.tar.gz (27.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page