mirror of
https://github.com/RGBCube/GitHubWrapper
synced 2025-05-17 22:45:08 +00:00
Added a few extra files
This commit is contained in:
parent
e2e0073ca1
commit
29403e00e0
4 changed files with 16 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
|
#== __init__.py ==#
|
||||||
|
|
||||||
__title__ = 'Github-Api-Wrapper'
|
__title__ = 'Github-Api-Wrapper'
|
||||||
__authors__ = 'VarMonke', 'sudosnok'
|
__authors__ = 'VarMonke', 'sudosnok'
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
#== exceptions.py ==#
|
#== exceptions.py ==#
|
||||||
|
|
||||||
|
__all__ = (
|
||||||
|
'APIError',
|
||||||
|
)
|
||||||
|
|
||||||
class APIError(Exception):
|
class APIError(Exception):
|
||||||
"""Base level exceptions raised by errors related to any API request or call"""
|
"""Base level exceptions raised by errors related to any API request or call"""
|
||||||
pass
|
pass
|
5
Github/http.py
Normal file
5
Github/http.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
#== http.py ==#
|
||||||
|
|
||||||
|
import aiohttp
|
||||||
|
import asyncio
|
||||||
|
|
6
Github/main.py
Normal file
6
Github/main.py
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#== main.py ==#
|
||||||
|
|
||||||
|
import aiohttp
|
||||||
|
import asyncio
|
||||||
|
|
||||||
|
from . import http
|
Loading…
Add table
Add a link
Reference in a new issue