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.

```python
>>> 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

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.0-py2.py3-none-any.whl (19.8 kB view details)

Uploaded Python 2 Python 3

File details

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

File metadata

File hashes

Hashes for backlogapi-0.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 ab293cc961d4f750148376a6e2af6fb418bf7806284694b7612d63b13e69b89f
MD5 5b4a859e2441f2fae9acfb0c6d6e8856
BLAKE2b-256 85c135b83d79eeaffc88fc411cc51dd6573a91fe520d8b0c4bb3c234207ba99d

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