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 specified repository to a CSV file | |
Credits go to https://gist.github.com/unbracketed/3380407#file-export_repo_issues_to_csv-py for the initial work, but I had to adjust it a bit | |
FYI: you need to install 'requests' before, best via pip: "$ sudo pip installs requests" | |
""" | |
import csv | |
import requests |