Backlog has an API, https://developer.nulab.com/ja/docs/backlog/#backlog-api-%E3%81%A8%E3%81%AF
I know I can do anything, but I had some free time to make a little tool, so I made one. At that time, I used data acquisition using DataFrame, but I was not very familiar with DataFrame, so I made some trial and error.
https://developer.nulab.com/ja/docs/backlog/api/2/get-issue/#%E3%83%AC%E3%82%B9%E3%83%9D%E3%83%B3%E3%82%B9%E3%83%9C%E3%83%87%E3%82%A3
r = requests.get(url, params=params, proxies=proxy_dict)
if r.status_code == requests.codes.ok:
data = r.json()
It's easy once you get used to how to get the data, but I'm new to Python, so make a note.
"projectId": 1,
If you want to take data ["projectId "]
"status": {
"id": 1,
If you want to take, data ["status "] [" id "]
Under stars
"url": "https://xx.backlog.jp/view/BLG-1",
If you want to take, data ["stars "] [0] ["url "]
Recommended Posts