mirror of
https://github.com/RGBCube/GitHubWrapper
synced 2025-05-19 15:35:08 +00:00
Added all and fixed imports
This commit is contained in:
parent
ebd9828afa
commit
1f1fe877e5
1 changed files with 9 additions and 3 deletions
|
@ -7,10 +7,16 @@ from datetime import datetime
|
||||||
from types import SimpleNamespace
|
from types import SimpleNamespace
|
||||||
import re
|
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+)\"")
|
LINK_PARSING_RE = re.compile(r"<(\S+(\S))>; rel=\"(\S+)\"")
|
||||||
Rates = namedtuple('Rates', ('remaining', 'used', 'total', 'reset_when', 'last_request'))
|
Rates = namedtuple('Rates', ('remaining', 'used', 'total', 'reset_when', 'last_request'))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue