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