This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
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 |