aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cgitize/github.py
diff options
context:
space:
mode:
Diffstat (limited to 'cgitize/github.py')
-rw-r--r--cgitize/github.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/cgitize/github.py b/cgitize/github.py
new file mode 100644
index 0000000..2c88426
--- /dev/null
+++ b/cgitize/github.py
@@ -0,0 +1,23 @@
+# Copyright (c) 2021 Egor Tensin <Egor.Tensin@gmail.com>
+# This file is part of the "cgitize" project.
+# For details, see https://github.com/egor-tensin/cgitize.
+# Distributed under the MIT License.
+
+import logging
+
+from github import Github, GithubException
+
+
+class GitHub:
+ def __init__(self, access_token):
+ self._impl = Github(access_token)
+
+ def get_repo(self, repo):
+ if 'id' not in repo:
+ raise ValueError('every GitHub repository must have an ID')
+ repo_id = repo['id']
+ try:
+ return self._impl.get_repo(repo_id)
+ except GithubException:
+ logging.error("Couldn't fetch repository: %s", repo_id)
+ raise