Skip to content

Instantly share code, notes, and snippets.

View UbadahJ's full-sized avatar
😁
Silicon Sorcerer

LordChadiwala UbadahJ

😁
Silicon Sorcerer
View GitHub Profile
@jgmize
jgmize / github_issues.py
Last active March 18, 2021 12:25 — forked from patrickfuller/github_issues_to_csv.py
Export Issues from Github repo to json or csv (API v3)
#!/usr/bin/env python3
"""
Exports issues from a list of repositories to individual csv files.
Uses basic authentication (Github username + password) to retrieve issues
from a repository that username has access to. Supports Github API v3.
Forked from https://gist.github.com/patrickfuller/e2ea8a94badc5b6967ef3ca0a9452a43
"""
import argparse
import csv
import json