JIRA Python Script - read csv for "description" field - how to show as table in description field.

nathan aung March 2, 2020

I am quite new on both jira and python.

i have a python script to create jira issue.

I am importing a table from csv; to jira issue "description"

 

f = open("data.csv","r")
new_issue = jira.create_issue(
    
project     =   'TEST'    
summary     =   'New issue from jira-python',    
description =   f.read(),    
issuetype   =   {'name''Issue'}    )

 

It is setting the values as Comma-separated values in jira issue.

How do i format it, to show as table?

Please advise. Thank you.

 

2 answers

0 votes
Vadym Sosnovenko December 23, 2022

How did you manage to do this? Have you got a solution?

0 votes
Gonchik Tsymzhitov
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 11, 2021

Hi! 

about formatting I do recommend to read the wiki-style render of Jira. 

Suggest an answer

Log in or Sign up to answer