Skip to content

Instantly share code, notes, and snippets.

@beniza
beniza / export_repo_issues_to_csv.py
Created January 2, 2017 07:35 — 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