I thought I would update my question to let others know what the solution was.
Pretty simple:
from github import Github
# using username and password
g = Github("Username", "Password")
org = g.get_organization('orgName')
repo = org.create_repo("test name")