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. |
Beta Was this translation helpful? Give feedback.
Replies: 17 comments 18 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}") |
Beta Was this translation helpful? Give feedback.
-
|
This would be a nice to have feature. +1 for export to CSV |
Beta Was this translation helpful? Give feedback.
-
|
@jge162 Your script is for plain issues, not for projects AFAICS? |
Beta Was this translation helpful? Give feedback.
-
|
Short of an easy import/export from/to a tabular format (CSV or XLSX), this project feature is mostly harmless :] |
Beta Was this translation helpful? Give feedback.
-
|
👋🏼 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. |
Beta Was this translation helpful? Give feedback.
-
|
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 🚀 |
Beta Was this translation helpful? Give feedback.
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.
-
|
👍 |
Beta Was this translation helpful? Give feedback.
-
|
Where can I go for help? With a real agent |
Beta Was this translation helpful? Give feedback.
-
|
como exporto um projeto csv se nao ta codando nem no vscode mudou tudo as extensoes um monte de coisas que estava acostumado a codar nao tem mais |
Beta Was this translation helpful? Give feedback.
-
|
ff |
Beta Was this translation helpful? Give feedback.
-
|
Hello everyone |
Beta Was this translation helpful? Give feedback.
-
|
I'm Happy to see everybody Here Good luck. |
Beta Was this translation helpful? Give feedback.
-
|
Can we get a way to export the "Description" (body text) or "comments"? |
Beta Was this translation helpful? Give feedback.
This comment was marked as off-topic.
This comment was marked as off-topic.
-
|
มีข้อมูลเก่าเพียงแค่นี้เองเหรอควรปิดเว็บไซต์ไปซะและจัดการสำนักพัฒนาที่มีส่วนเกี่ยวข้องกับเว็บไซต์นี้ทุกคนข้อมูลของผมไม่เห็นมีเลย |
Beta Was this translation helpful? Give feedback.
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 🚀