Skip to content

Instantly share code, notes, and snippets.

View jafetmorales's full-sized avatar

Jafet Morales jafetmorales

View GitHub Profile
@jafetmorales
jafetmorales / make_github_issue.py
Created August 9, 2018 20:13 — 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'