mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 10:51:14 +00:00
44 lines
923 B
Python
Executable File
44 lines
923 B
Python
Executable File
#!/bin/env python
|
|
|
|
import Framework
|
|
|
|
from AuthenticatedUser import *
|
|
from Authentication import *
|
|
from Authorization import *
|
|
from Branch import *
|
|
from Commit import *
|
|
from CommitComment import *
|
|
from Download import *
|
|
from Event import *
|
|
from Gist import *
|
|
from GistComment import *
|
|
from GitBlob import *
|
|
from GitCommit import *
|
|
from Github import *
|
|
from GitRef import *
|
|
from GitTag import *
|
|
from GitTree import *
|
|
from Hook import *
|
|
from Issue import *
|
|
from IssueComment import *
|
|
from IssueEvent import *
|
|
from Label import *
|
|
from Milestone import *
|
|
from NamedUser import *
|
|
from Organization import *
|
|
from PullRequest import *
|
|
from PullRequestComment import *
|
|
from PullRequestFile import *
|
|
from RateLimiting import *
|
|
from Repository import *
|
|
from RepositoryKey import *
|
|
from Tag import *
|
|
from Team import *
|
|
from UserKey import *
|
|
|
|
from PaginatedList import *
|
|
from Issue33 import *
|
|
from Exceptions import *
|
|
|
|
Framework.main()
|