usenetbinary-newsreaderquickboxtraktkodistabletvshowsqnaptautullifanartsickbeardtvseriesplexswizzinembyseedboxtvdbnzbgetsubtitlewebui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
497 B
16 lines
497 B
from typing import Any, Generator, List, Mapping, Optional, Tuple, Union
|
|
|
|
from . import fields
|
|
|
|
RequestField = fields.RequestField
|
|
Fields = Union[Mapping[str, str], List[Tuple[str]], List[RequestField]]
|
|
Iterator = Generator[Tuple[str], None, None]
|
|
|
|
writer: Any
|
|
|
|
def choose_boundary() -> str: ...
|
|
def iter_field_objects(fields: Fields) -> Iterator: ...
|
|
def iter_fields(fields: Fields) -> Iterator: ...
|
|
def encode_multipart_formdata(
|
|
fields: Fields, boundary: Optional[str]
|
|
) -> Tuple[str]: ...
|
|
|