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

Added all and fixed imports

This commit is contained in:
sudosnok 2022-03-27 16:12:08 +01:00
parent ebd9828afa
commit 1f1fe877e5

View file

@ -7,10 +7,16 @@ from datetime import datetime
from types import SimpleNamespace
import re
from .exceptions import *
from .objects import *
from .urls import *
__all__ = (
'make_session',
'Paginator',
'get_user',
)
from exceptions import *
from objects import *
from urls import *
LINK_PARSING_RE = re.compile(r"<(\S+(\S))>; rel=\"(\S+)\"")
Rates = namedtuple('Rates', ('remaining', 'used', 'total', 'reset_when', 'last_request'))