The Pain I’ve been tasked with adding type annotations (mypy) to a Python codebase. Let’s be honest, while it’s not the most glamorous job, it’s crucial for making our code easier to navigate and m...
Hi Atlassian Community! I'm back with another helpful Python script, this time designed for a critical task: recovering data from deleted custom fields in Jira Cloud. Whether you’re performing a c...
Hi Atlassian Community! I'm bringing a new custom Python script to automate the deletion of attachments in Jira issues. The idea is to facilitate this key process when managing attachments i...
Hi Atlassian Community! I'm back with another helpful Python script designed to retrieve and analyze Jira project statuses. This script offers valuable insights into your project workflows by e...
...he approach to workaround this is to manually modify the CSV files, and this can be time-consuming depending on the situation. I'm sharing a helpful Python script designed to clean up large CSV files b...
Hi Atlassian Community! I'm now sharing a simple Python script designed to help you efficiently handle retries for requests to the Jira Cloud REST API. This is particularly useful when dealing w...
Hi Atlassian Community! I'm back with another helpful Python script designed to analyze Jira project attachments. This script provides valuable insights into your project's attachment landscape b...
Hi Atlassian Community! I'm now sharing another simple but helpful Python script designed to retrieve project components and export them to a CSV file. This script can be incredibly useful for a...
Hi Atlassian Community! I'm now sharing this simple Python script, which is designed to help you efficiently download all attachments from multiple Jira Cloud issues. This script streamlines t...
Hi Atlassian Community! It's me again. I'm sharing a helpful Python script to streamline attaching multiple files to Jira Cloud issues. This script automates the process of uploading files, s...
...oncerns in our Developer Community. Workaround steps To implement this idea, I utilized Python, due to the fact that Python is known for its readability and simplicity, which makes i...
This workaround is intended to support Jira Service Management (JSM) projects that require exporting issues with only public comments, excluding internal ones. Currently, there are limitations in J...
...orted before the comparison. If tab fields are sorted, then the tabs are marked as duplicate if they only have the same set of fields. If they are not sorted, they also need to have the same order. Python...
Hi Atlassian Community! I'm back with another simple Python script designed to facilitate some of your Jira Admin tasks. This time, I'm sharing a script that automates the deletion of w...
Hi Atlassian Community! It's time to share another Python script. This script automates the generation of work log reports from Jira. It is designed to assist teams in efficiently t...
...ame 5 Screen Id 6: Screen name 6, Tab Id 6: Tab name 6 Python Script import requests import hashlib baseUrl = 'https://my.testjira.com' user = 'username' password = 'password' c...
Hi Atlassian Community! Today, I want to share a Python script that streamlines a common (yet critical) process for some teams: creating multiple tickets and dynamically setting the summary, d...
Python is a powerful and versatile programming language that can be used to automate a wide variety of tasks, including those related to Jira. With the help of Python, you can automate repetitive J...
...sing Python on January 12 @ 4pm CET 🎙️ We're back with a bang and joining ACE Cologne, Galway, Boise and Sofia with special guest speaker @David Renton to bring you t...
...PI using Python and the various approaches to using Python Modules to authenticate with Atlassian Account and interact with the APIs One of the Modules I occasionally use is the atlassian-python-a...
Summary How to connect to Enterprise Insights using Python Environment Tested in: Jira Align Enterprise Insights Version(s): 10.108 Python v3.10 Solution You will n...
Hello, I need help because I am working on an excel file and I need to copy paste only the filter result without the hidden cells. Here is the beginning of my code. import xlwings as xw # Open wo...
Hi Community!! I have seen several posts seeking support on API's using Python wrappers So here is an article to get started with the most used API wrappers from Python If you need to manage i...
Algorithm: Get all custom fields (CFs), using HTTP GET <server>/rest/api/3/field/search You need to get the CF's screens and contexts, so the query string would is: 'typ...
The algorithms is this: Get all issue types, using HTTP GET <server>/rest/api/3/issuetype Build a dict of all issue types (dict key is ID, since issue type name is not unique) Get ...
Copied to clipboard