Skip to content

Instantly share code, notes, and snippets.

View aleccool213's full-sized avatar
🏠
Working from home

Alec Brunelle aleccool213

🏠
Working from home
View GitHub Profile
@aleccool213
aleccool213 / export_repo_issues_to_csv.py
Created March 1, 2016 00:39 — forked from unbracketed/export_repo_issues_to_csv.py
Export Issues from Github repo to CSV (API v3)
"""
Exports Issues from a specified repository to a CSV file
Uses basic authentication (Github username + password) to retrieve Issues
from a repository that username has access to. Supports Github API v3.
"""
import csv
import requests