export projects to csv #47733
Product FeedbackOnce i use github projects, I got a feeling of smooth and natural. It's a really good thing for me to manage my coding plan. |
Replies: 25 comments 21 replies
|
Hello @letusskate You could probably write a python script to manage that for you. Hopefully you know how to run a python script. import csv
import requests
# Replace the URL below with your GitHub project API URL
url = "https://api.github.com/repos/{your-username}/{your-repo}/issues"
# Replace the token below with your GitHub API token
token = "{your-github-api-token}"
headers = {"Authorization": f"Token {token}"}
response = requests.get(url, headers=headers)
issues = response.json()
# Replace the filename below with the name you want to give your CSV file
filename = "github_project_issues.csv"
with open(filename, "w", newline="") as csvfile:
writer = csv.writer(csvfile)
writer.writerow(["Title", "Body", "Labels"])
for issue in issues:
title = issue["title"]
body = issue["body"]
labels = [label["name"] for label in issue["labels"]]
writer.writerow([title, body, ", ".join(labels)])
print(f"Data exported to {filename}") |
|
This would be a nice to have feature. +1 for export to CSV |
|
@jge162 Your script is for plain issues, not for projects AFAICS? |
|
Short of an easy import/export from/to a tabular format (CSV or XLSX), this project feature is mostly harmless :] |
|
👋🏼 Hi there! Thanks for sharing this feedback and workarounds y'all. I've passed along this request to our Product team. If/when I have any updates - I'll circle back here. |
|
You can now export your project view to a CSV file! Check it out on the changelog announcement and let us know what you think 🚀 |
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
|
👍 |
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
|
Can we get a way to export the "Description" (body text) or "comments"? |
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
|
function processCommand(command) { const sanitizedCommand = command.toLowerCase().trim(); switch (sanitizedCommand) { |
|
This comment was marked as off-topic.
This comment was marked as off-topic.
|
Looks like you want a clean, ready-to-use reply for a “comment / answer” slot. Since there’s no specific question attached, here are a few versatile options you can drop in depending on tone: Neutral & safe:
Confident & direct:
Slightly conversational:
Supportive / agreeable:
|
This comment was marked as spam.
This comment was marked as spam.
|
Thanks! I was the original poster. Glad this feature is available n |


You can now export your project view to a CSV file! Check it out on the changelog announcement and let us know what you think 🚀