Backlog API v2 wrapper
Project description
pbl
A Python package wraps Backlog API V2
Usage
Install
pip install python-backlog
Code snipet
import base64
import json
from backlog.base import BacklogAPI
def main():
"""
Initialize API Object
"""
api = BacklogAPI("your-space", "your-api-key")
"""
Project API
"""
# list project users
# https://developer.nulab-inc.com/ja/docs/backlog/api/2/get-project-list/
print("# list project users")
users = api.project.list_users("SampleProject")
print(json.dumps(users, indent=2))
"""
Wiki API
"""
# list wikis
# https://developer.nulab-inc.com/ja/docs/backlog/api/2/get-wiki-page-list/
print("# list wikis")
wikis = api.wiki.list("SampleProject")
print(json.dumps(wikis[0], indent=2))
# get attachment
# https://developer.nulab-inc.com/ja/docs/backlog/api/2/get-issue-attachment/
print("# get attachment")
wiki = [w for w in api.wiki.list("SampleProject") if len(w["attachments"]) > 0][0]
attachment = api.wiki.get_attachment(
wikiId=wiki["id"],
attachmentId=wiki["attachments"][0]["id"])
attachment["data"] = base64.b64encode(attachment["data"]).decode()
print(json.dumps(attachment, indent=2))
if __name__ == "__main__":
main()
Auth
Oct 2018, Currently API Key is supported. NOT support OAuth2 yet.
API Client object is initialized with arguments credentials(space and api_key).
This package provides a helper function to loading config yaml. This helper function is provided by backlog.util.load_conf
.
load_conf takes an argument path to yaml file. By defalt, ./conf.yml
is given.
Note
Feature backlog.util.load_conf
will omit in future. Because there is only little significance in supporting a specific format in this package. (see #17)
See also
Qiita https://qiita.com/hassaku_63/items/b9eb2a1c7ecd3c19507d
Contact
Twitter: hassaku63
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
Built Distribution
Hashes for python_backlog-0.3.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91bf5c994cae3c5e8e42262f38cfacd59c0a7f3707c8fc26bdc97bb3a84e1ac5 |
|
MD5 | 69ab76cb8ad34240034ffd2504d72205 |
|
BLAKE2b-256 | f24549d21ee45eff5a275ba1281aec198ca3b6329ed56a242ba95bebfc1cf036 |