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(auth=('Username', 'Password',))

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

# Select a specific space
space = filter(
lambda space: space.name=='ASO',
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)

# Select a specific user
user = filter(
lambda user: user.login_name=='John Smith',
users
)[0]

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

Source: https://github.com/markfinger/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.1.tar.gz (12.2 kB view details)

Uploaded Source

File details

Details for the file assembla-1.0.1.tar.gz.

File metadata

  • Download URL: assembla-1.0.1.tar.gz
  • Upload date:
  • Size: 12.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for assembla-1.0.1.tar.gz
Algorithm Hash digest
SHA256 d361f48a99c3e320c817573404134a5e36d4b201f998011c2c21688d817dd03d
MD5 6bc515047004ab58bf19eccd3a2886d7
BLAKE2b-256 a41dd4eb66caf2a9817d0b6c7476bfaf7f4cd2b4c798dc72efd060dba8131b2d

See more details on using hashes here.

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