1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-05-18 06:55:09 +00:00

Added a few extra files

This commit is contained in:
sudosnok 2022-03-26 16:24:11 +00:00
parent e2e0073ca1
commit 29403e00e0
4 changed files with 16 additions and 1 deletions

View file

@ -1,4 +1,4 @@
#== __init__.py ==#
__title__ = 'Github-Api-Wrapper' __title__ = 'Github-Api-Wrapper'
__authors__ = 'VarMonke', 'sudosnok' __authors__ = 'VarMonke', 'sudosnok'

View file

@ -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
View file

@ -0,0 +1,5 @@
#== http.py ==#
import aiohttp
import asyncio

6
Github/main.py Normal file
View file

@ -0,0 +1,6 @@
#== main.py ==#
import aiohttp
import asyncio
from . import http