feat(Fetcher): Replacing httpx + Adding FetcherSession

Check out the discord server for details
This commit is contained in:
Karim shoair
2025-05-25 21:10:20 +03:00
parent 5c420b7384
commit 9e68e60161
5 changed files with 876 additions and 586 deletions
+3
View File
@@ -18,8 +18,11 @@ from typing import (
TypeVar,
Union,
Match,
Mapping,
Awaitable,
)
SUPPORTED_HTTP_METHODS = Literal["GET", "POST", "PUT", "DELETE"]
SelectorWaitStates = Literal["attached", "detached", "hidden", "visible"]
StrOrBytes = Union[str, bytes]