{"id":20324666,"url":"https://github.com/gh640/create-github-issues-with-csv","last_synced_at":"2026-05-11T15:11:18.022Z","repository":{"id":74923373,"uuid":"408063331","full_name":"gh640/create-github-issues-with-csv","owner":"gh640","description":"📂  A sample script to create GitHub issues with CSV using GitHub CLI.","archived":false,"fork":false,"pushed_at":"2021-11-06T06:18:26.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-04T10:25:36.093Z","etag":null,"topics":["csv","github","github-cli","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gh640.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-09-19T07:38:32.000Z","updated_at":"2021-11-06T06:21:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"9ab8fe62-fcba-4e06-8291-0abcf600adb9","html_url":"https://github.com/gh640/create-github-issues-with-csv","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gh640/create-github-issues-with-csv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gh640%2Fcreate-github-issues-with-csv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gh640%2Fcreate-github-issues-with-csv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gh640%2Fcreate-github-issues-with-csv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gh640%2Fcreate-github-issues-with-csv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gh640","download_url":"https://codeload.github.com/gh640/create-github-issues-with-csv/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gh640%2Fcreate-github-issues-with-csv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32900279,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-10T13:40:02.631Z","status":"online","status_checked_at":"2026-05-11T02:00:05.975Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csv","github","github-cli","python3"],"created_at":"2024-11-14T19:37:03.090Z","updated_at":"2026-05-11T15:11:18.002Z","avatar_url":"https://github.com/gh640.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Creating GitHub issues with CSV using GitHub CLI\n\nThis is a sample script to create GitHub issues with CSV using GitHub CLI.\n\n## Requirements\n\n- Python 3.9\n- [GitHub CLI](https://cli.github.com/)\n\nNo PyPI package is required.\n\n## Usage\n\nEdit `create_github_issues_with_csv.py` and change `REPO`, `PROJECT` and `DATA`.\n\n```python\nREPO = \"[owner]/[repo]\"\nPROJECT = \"[projectname]\"\nDATA = \"\"\"\nMilestone 1,Task 1\nMilestone 1,Task 2\nMilestone 1,Task 3\nMilestone 2,Task 4\nMilestone 2,Task 5\n\"\"\"\n```\n\nRun the script.\n\n```bash\npython create_github_issues_with_csv.py\n```\n\n## Other options\n\nThere are some other options to create many issues easily.\n\n### [PyGithub](https://github.com/PyGithub/PyGithub)\n\n[Create issue | Issues — PyGithub 1 documentation](https://pygithub.readthedocs.io/en/latest/examples/Issue.html#create-issue)\n\n```python\nfrom github import Github\n\nissues = ...\n\ng = Github(\"access_token\")\nrepo = g.get_repo(\"[owner]/[repo]\")\n\nfor issue in issues:\n    repo.create_issue(title=issue.title)\n```\n\n### [GitHub CSV Tools](https://github.com/gavinr/github-csv-tools)\n\nhttps://github.com/gavinr/github-csv-tools\n\n```bash\ngithubCsvTools myFile.csv\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgh640%2Fcreate-github-issues-with-csv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgh640%2Fcreate-github-issues-with-csv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgh640%2Fcreate-github-issues-with-csv/lists"}