Skip to content

Instantly share code, notes, and snippets.

View roywei's full-sized avatar
🎯
Focusing

Lai Wei roywei

🎯
Focusing
View GitHub Profile
@roywei
roywei / export_repo_issues_to_csv.py
Last active February 27, 2018 19:12 — 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
import random
GITHUB_USER = ''