Skip to content

Instantly share code, notes, and snippets.

@Kebiled
Kebiled / export_multi_repo_issues_to_csv.py
Last active July 30, 2017 10:46 — forked from Billy-/export_repo_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.
Derived from https://gist.github.com/Billy-/96b16b7682a19a562b277c1ab52547a5
"""
import csv
import requests
import json