Source code for chardet.resultdict

from typing import Optional, TypedDict


[docs] class ResultDict(TypedDict): encoding: Optional[str] confidence: float language: Optional[str]