2023-07-12 19:36:32 +02:00
|
|
|
from typing import Union, Any, TYPE_CHECKING, Protocol, AsyncIterator, Coroutine
|
2023-06-28 19:02:11 +02:00
|
|
|
|
|
|
|
import aiohttp
|
|
|
|
from yarl import URL
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from pyhon.parameter.base import HonParameter
|
|
|
|
from pyhon.parameter.enum import HonParameterEnum
|
|
|
|
from pyhon.parameter.fixed import HonParameterFixed
|
|
|
|
from pyhon.parameter.program import HonParameterProgram
|
|
|
|
from pyhon.parameter.range import HonParameterRange
|
|
|
|
|
|
|
|
|
|
|
|
class Callback(Protocol):
|
|
|
|
def __call__(
|
|
|
|
self, url: str | URL, *args: Any, **kwargs: Any
|
|
|
|
) -> aiohttp.client._RequestContextManager:
|
|
|
|
...
|
|
|
|
|
|
|
|
|
|
|
|
Parameter = Union[
|
|
|
|
"HonParameter",
|
|
|
|
"HonParameterRange",
|
|
|
|
"HonParameterEnum",
|
|
|
|
"HonParameterFixed",
|
|
|
|
"HonParameterProgram",
|
|
|
|
]
|