usenetbinary-newsreaderplexswizzinembyseedboxtvdbnzbgetsubtitlewebuiquickboxtraktkodistabletvshowsqnaptautullifanartsickbeardtvseries
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.
14 lines
511 B
14 lines
511 B
from typing import Any, Optional
|
|
|
|
class _LooseFeedParser:
|
|
contentparams: Any = ...
|
|
baseuri: Any = ...
|
|
lang: Any = ...
|
|
encoding: Any = ...
|
|
entities: Any = ...
|
|
def __init__(self, baseuri: Optional[Any] = ..., baselang: Optional[Any] = ..., encoding: Optional[Any] = ..., entities: Optional[Any] = ...) -> None: ...
|
|
@staticmethod
|
|
def _normalize_attributes(kv: Any): ...
|
|
def decode_entities(self, element: Any, data: Any): ...
|
|
@staticmethod
|
|
def strattrs(attrs: Any): ...
|
|
|