Skip to content

Instantly share code, notes, and snippets.

@palashkulsh
Created February 4, 2022 11:19
Show Gist options
  • Select an option

  • Save palashkulsh/a2b8cf33bd5629bb432aa08df2164bf7 to your computer and use it in GitHub Desktop.

Select an option

Save palashkulsh/a2b8cf33bd5629bb432aa08df2164bf7 to your computer and use it in GitHub Desktop.
jira manipulation
jira jql epictask -j 1 | jq '.[] | "\(.key),\(.fields.summary),\(.fields.created),\(.fields.updated)"'
@palashkulsh
Copy link
Copy Markdown
Author

df=pd.read_excel('/home/palashkulshreshtha/Downloads/CART-9324-timelines.xls')
df
fig = px.timeline(df, x_start="created", x_end="updated", y="summary")
fig.update_yaxes(autorange="reversed") # otherwise tasks are listed from the bottom up
fig.show()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment