Skip to content

Instantly share code, notes, and snippets.

@seongil-wi
seongil-wi / make_github_issue.py
Created May 11, 2018 17:33 — forked from JeffPaine/make_github_issue.py
Make an issue on github using API V3 and Python
import json
import requests
# Authentication for user filing issue (must have read/write access to
# repository to add issue to)
USERNAME = 'CHANGEME'
PASSWORD = 'CHANGEME'
# The repository to add this issue to
REPO_OWNER = 'CHANGEME'