Can the Python JIRA API export a JIRA plan to CSV?

I am trying to export a JIRA roadmap into a CSV file. Although the JIRA interface offers an export option when I select the plan, I haven’t found any reference to this functionality in the Python API documentation.

I’m looking for a method to programmatically choose a plan and export its data to CSV. Has anyone discovered a way to accomplish this using Python? Any insights or alternative approaches would be greatly appreciated.

In my experience, the Python JIRA API doesn’t support exporting a JIRA plan to CSV directly. I once faced a similar challenge and had to rely on a workaround. Instead of using a dedicated API function, I accessed the underlying REST API endpoints with custom code. By fetching the roadmap details as JSON and processing the response, I was able to build a CSV export tool that met our needs. This approach required some effort to understand the data structure, but it ultimately allowed us to automate the process effectively.