Skip to main content

Backlog client for Python

Project description

Backlog API

Backlog API is client library for using backlog API. This library provides simple connection to RESTful API by CRUD function.

>>> from backlogapi import BacklogClient

>>> client = BacklogClient(api_key='your_key', space_name='space')
>>> space = client.space.get()
>>> space.id
18812

>>> projects = client.project.all()
>>> project1 = projects[0]

>>> project1.name
project1

>>> users_in_project1 = project1.users
>>> users_in_project1
[<User: user1>, <User: user2>]

>>> # get issue in the project and can add parameter
>>> parent_issues_in_project1 = project1.get_issue({'parentChild': 4})
>>> issue1 = parent_issues_in_project1[0]

>>> issue1.due_date
'2018-05-25T12:00:00Z'

Future

  • Support all API
  • Support OAuth 2.0 and any more

Requirements

  • Python 3.6
  • requests 2.18.4

Installation

$ pip intsall backlogapi

License

This software is licensed under the MIT license.

Change Log

v0.1.0 (2018/05/11)

Initial release

v0.1.2 (2018/05/12)

Add pipenv

v0.1.3 (2018/05/12)

Fix TravisCI

v0.1.4 (2018/05/12)

Fix deployment

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

backlogapi-0.1.4-py2.py3-none-any.whl (20.0 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file backlogapi-0.1.4-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for backlogapi-0.1.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 f1c7beac3df2002e9391273238b85c88d06c29c63e6e7e17e453ade93cc7bbf5
MD5 a13117649fa369c8df6d859808604ab0
BLAKE2b-256 c814ef76593a91753cc69454f923dcbdb49e6287831448f530a16c1c0b367bd1

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