Skip to content

Instantly share code, notes, and snippets.

View andydempster's full-sized avatar
💬

Andy Dempster andydempster

💬
View GitHub Profile
@andydempster
andydempster / github_issues_to_csv.py
Created March 15, 2019 15:43 — forked from patrickfuller/github_issues_to_csv.py
Export Issues from Github repo to CSV (API v3)
"""
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: unbracketed/export_repo_issues_to_csv.py
"""
import argparse
import csv
from getpass import getpass
import requests