From 29403e00e0c2965c32f08c33a1dba2d7dbbb7b08 Mon Sep 17 00:00:00 2001 From: sudosnok Date: Sat, 26 Mar 2022 16:24:11 +0000 Subject: [PATCH] Added a few extra files --- Github/__init__.py | 2 +- Github/exceptions.py | 4 ++++ Github/http.py | 5 +++++ Github/main.py | 6 ++++++ 4 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 Github/http.py create mode 100644 Github/main.py diff --git a/Github/__init__.py b/Github/__init__.py index 695277a..3838fa6 100644 --- a/Github/__init__.py +++ b/Github/__init__.py @@ -1,4 +1,4 @@ - +#== __init__.py ==# __title__ = 'Github-Api-Wrapper' __authors__ = 'VarMonke', 'sudosnok' diff --git a/Github/exceptions.py b/Github/exceptions.py index c3f8744..4e1be61 100644 --- a/Github/exceptions.py +++ b/Github/exceptions.py @@ -1,5 +1,9 @@ #== exceptions.py ==# +__all__ = ( + 'APIError', +) + class APIError(Exception): """Base level exceptions raised by errors related to any API request or call""" pass \ No newline at end of file diff --git a/Github/http.py b/Github/http.py new file mode 100644 index 0000000..fafe578 --- /dev/null +++ b/Github/http.py @@ -0,0 +1,5 @@ +#== http.py ==# + +import aiohttp +import asyncio + diff --git a/Github/main.py b/Github/main.py new file mode 100644 index 0000000..0032eba --- /dev/null +++ b/Github/main.py @@ -0,0 +1,6 @@ +#== main.py ==# + +import aiohttp +import asyncio + +from . import http \ No newline at end of file