Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
dnspython / dns / rdtypes / txtbase.pyi
Size: Mime:
import typing
from .. import rdata

class TXTBase(rdata.Rdata):
    strings: typing.Tuple[bytes, ...]

    def __init__(self, rdclass: int, rdtype: int, strings: typing.Iterable[bytes]) -> None:
        ...
    def to_text(self, origin: typing.Any, relativize: bool, **kw: typing.Any) -> str:
        ...
class TXT(TXTBase):
    ...