How can I obtain rate limit information from Jira’s response headers when performing bulk operations with a Python client, considering the strict limits that force pauses between groups of requests?
hey, i got this working by checking the headers like ‘x-ratelimit-remaining’ from the response. using response.headers.get() lets you pull that info and adjust your timing. works ok for me, but always be mindful of unexpected keys.