├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── publish.yml │ └── test-publish.yml ├── .gitignore ├── .readthedocs.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── dns ├── __init__.py ├── _asyncbackend.py ├── _asyncio_backend.py ├── _ddr.py ├── _features.py ├── _immutable_ctx.py ├── _no_ssl.py ├── _tls_util.py ├── _trio_backend.py ├── asyncbackend.py ├── asyncquery.py ├── asyncresolver.py ├── btree.py ├── btreezone.py ├── dnssec.py ├── dnssecalgs │ ├── __init__.py │ ├── base.py │ ├── cryptography.py │ ├── dsa.py │ ├── ecdsa.py │ ├── eddsa.py │ └── rsa.py ├── dnssectypes.py ├── e164.py ├── edns.py ├── entropy.py ├── enum.py ├── exception.py ├── flags.py ├── grange.py ├── immutable.py ├── inet.py ├── ipv4.py ├── ipv6.py ├── message.py ├── name.py ├── namedict.py ├── nameserver.py ├── node.py ├── opcode.py ├── py.typed ├── query.py ├── quic │ ├── __init__.py │ ├── _asyncio.py │ ├── _common.py │ ├── _sync.py │ └── _trio.py ├── rcode.py ├── rdata.py ├── rdataclass.py ├── rdataset.py ├── rdatatype.py ├── rdtypes │ ├── ANY │ │ ├── AFSDB.py │ │ ├── AMTRELAY.py │ │ ├── AVC.py │ │ ├── CAA.py │ │ ├── CDNSKEY.py │ │ ├── CDS.py │ │ ├── CERT.py │ │ ├── CNAME.py │ │ ├── CSYNC.py │ │ ├── DLV.py │ │ ├── DNAME.py │ │ ├── DNSKEY.py │ │ ├── DS.py │ │ ├── DSYNC.py │ │ ├── EUI48.py │ │ ├── EUI64.py │ │ ├── GPOS.py │ │ ├── HINFO.py │ │ ├── HIP.py │ │ ├── ISDN.py │ │ ├── KEY.py │ │ ├── L32.py │ │ ├── L64.py │ │ ├── LOC.py │ │ ├── LP.py │ │ ├── MX.py │ │ ├── NID.py │ │ ├── NINFO.py │ │ ├── NS.py │ │ ├── NSEC.py │ │ ├── NSEC3.py │ │ ├── NSEC3PARAM.py │ │ ├── OPENPGPKEY.py │ │ ├── OPT.py │ │ ├── PTR.py │ │ ├── RESINFO.py │ │ ├── RP.py │ │ ├── RRSIG.py │ │ ├── RT.py │ │ ├── SIG.py │ │ ├── SMIMEA.py │ │ ├── SOA.py │ │ ├── SPF.py │ │ ├── SSHFP.py │ │ ├── TKEY.py │ │ ├── TLSA.py │ │ ├── TSIG.py │ │ ├── TXT.py │ │ ├── URI.py │ │ ├── WALLET.py │ │ ├── X25.py │ │ ├── ZONEMD.py │ │ └── __init__.py │ ├── CH │ │ ├── A.py │ │ └── __init__.py │ ├── IN │ │ ├── A.py │ │ ├── AAAA.py │ │ ├── APL.py │ │ ├── DHCID.py │ │ ├── HTTPS.py │ │ ├── IPSECKEY.py │ │ ├── KX.py │ │ ├── NAPTR.py │ │ ├── NSAP.py │ │ ├── NSAP_PTR.py │ │ ├── PX.py │ │ ├── SRV.py │ │ ├── SVCB.py │ │ ├── WKS.py │ │ └── __init__.py │ ├── __init__.py │ ├── dnskeybase.py │ ├── dsbase.py │ ├── euibase.py │ ├── mxbase.py │ ├── nsbase.py │ ├── rrsigbase.py │ ├── svcbbase.py │ ├── tlsabase.py │ ├── txtbase.py │ └── util.py ├── renderer.py ├── resolver.py ├── reversename.py ├── rrset.py ├── serial.py ├── set.py ├── tokenizer.py ├── transaction.py ├── tsig.py ├── tsigkeyring.py ├── ttl.py ├── update.py ├── version.py ├── versioned.py ├── win32util.py ├── wire.py ├── xfr.py ├── zone.py ├── zonefile.py └── zonetypes.py ├── doc ├── Makefile ├── async-backend.rst ├── async-query.rst ├── async-resolver-class.rst ├── async-resolver-functions.rst ├── async-resolver.rst ├── async.rst ├── community.rst ├── conf.py ├── dnssec.rst ├── examples.rst ├── exceptions.rst ├── inbound-xfr-class.rst ├── index.rst ├── installation.rst ├── license.rst ├── manual.rst ├── message-class.rst ├── message-edns.rst ├── message-flags.rst ├── message-make.rst ├── message-opcode.rst ├── message-query.rst ├── message-rcode.rst ├── message-update.rst ├── message.rst ├── name-class.rst ├── name-codecs.rst ├── name-dict.rst ├── name-helpers.rst ├── name-make.rst ├── name.rst ├── query.rst ├── rdata-class.rst ├── rdata-make.rst ├── rdata-set-classes.rst ├── rdata-set-make.rst ├── rdata-subclasses.rst ├── rdata-types.rst ├── rdata.rst ├── rdataclass-list.rst ├── rdatatype-list.rst ├── requirements.txt ├── resolver-caching.rst ├── resolver-class.rst ├── resolver-functions.rst ├── resolver-nameserver.rst ├── resolver-override.rst ├── resolver.rst ├── rfc.rst ├── threads.rst ├── util │ └── auto-values.py ├── utilities.rst ├── whatsnew.rst ├── zone-class.rst ├── zone-make.rst ├── zone.rst └── zonefile.rst ├── examples ├── async_dns.py ├── ddns.py ├── ddr.py ├── doh-json.py ├── doh.py ├── doq.py ├── dot.py ├── e164.py ├── ecs.py ├── edns.py ├── edns_resolver.py ├── mx-typed.py ├── mx.py ├── name.py ├── query_specific.py ├── receive_notify.py ├── reverse.py ├── reverse_name.py ├── send_notify.py ├── tsig.py ├── wire_read_tcp.py ├── xfr.py └── zonediff.py ├── pyproject.toml ├── tests ├── Makefile ├── __init__.py ├── doh.py ├── doq.py ├── example ├── example1.good ├── example2.good ├── example3.good ├── example4.good ├── keys.py ├── md_module.py ├── mx-2-0.pickle ├── nanonameserver.py ├── query ├── stxt_module.py ├── svcb_test_vectors.generic ├── svcb_test_vectors.text ├── test_address.py ├── test_async.py ├── test_btree.py ├── test_btreezone.py ├── test_bugs.py ├── test_constants.py ├── test_ddr.py ├── test_dnssec.py ├── test_dnssecalgs.py ├── test_doh.py ├── test_doq.py ├── test_edns.py ├── test_entropy.py ├── test_exceptions.py ├── test_features.py ├── test_flags.py ├── test_generate.py ├── test_grange.py ├── test_immutable.py ├── test_message.py ├── test_name.py ├── test_namedict.py ├── test_nsec3.py ├── test_nsec3_hash.py ├── test_ntoaaton.py ├── test_processing_order.py ├── test_query.py ├── test_rdata.py ├── test_rdataset.py ├── test_rdtypeandclass.py ├── test_rdtypeanydnskey.py ├── test_rdtypeanyeui.py ├── test_rdtypeanykey.py ├── test_rdtypeanyloc.py ├── test_rdtypeanytkey.py ├── test_renderer.py ├── test_resolution.py ├── test_resolver.py ├── test_resolver_override.py ├── test_rrset.py ├── test_rrset_reader.py ├── test_serial.py ├── test_set.py ├── test_svcb.py ├── test_tokenizer.py ├── test_transaction.py ├── test_tsig.py ├── test_tsigkeyring.py ├── test_ttl.py ├── test_update.py ├── test_wire.py ├── test_xfr.py ├── test_zone.py ├── test_zonedigest.py ├── tls │ ├── ca.crt │ ├── private.pem │ └── public.crt ├── ttxt_module.py ├── utest.py └── util.py └── util ├── constants-tool ├── generate-features ├── generate-mx-pickle.py ├── generate-rdatatype-doc.py ├── make-test-project ├── update-version └── uv-dev-setup /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/.github/workflows/test-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/SECURITY.md -------------------------------------------------------------------------------- /dns/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/__init__.py -------------------------------------------------------------------------------- /dns/_asyncbackend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/_asyncbackend.py -------------------------------------------------------------------------------- /dns/_asyncio_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/_asyncio_backend.py -------------------------------------------------------------------------------- /dns/_ddr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/_ddr.py -------------------------------------------------------------------------------- /dns/_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/_features.py -------------------------------------------------------------------------------- /dns/_immutable_ctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/_immutable_ctx.py -------------------------------------------------------------------------------- /dns/_no_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/_no_ssl.py -------------------------------------------------------------------------------- /dns/_tls_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/_tls_util.py -------------------------------------------------------------------------------- /dns/_trio_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/_trio_backend.py -------------------------------------------------------------------------------- /dns/asyncbackend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/asyncbackend.py -------------------------------------------------------------------------------- /dns/asyncquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/asyncquery.py -------------------------------------------------------------------------------- /dns/asyncresolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/asyncresolver.py -------------------------------------------------------------------------------- /dns/btree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/btree.py -------------------------------------------------------------------------------- /dns/btreezone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/btreezone.py -------------------------------------------------------------------------------- /dns/dnssec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/dnssec.py -------------------------------------------------------------------------------- /dns/dnssecalgs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/dnssecalgs/__init__.py -------------------------------------------------------------------------------- /dns/dnssecalgs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/dnssecalgs/base.py -------------------------------------------------------------------------------- /dns/dnssecalgs/cryptography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/dnssecalgs/cryptography.py -------------------------------------------------------------------------------- /dns/dnssecalgs/dsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/dnssecalgs/dsa.py -------------------------------------------------------------------------------- /dns/dnssecalgs/ecdsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/dnssecalgs/ecdsa.py -------------------------------------------------------------------------------- /dns/dnssecalgs/eddsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/dnssecalgs/eddsa.py -------------------------------------------------------------------------------- /dns/dnssecalgs/rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/dnssecalgs/rsa.py -------------------------------------------------------------------------------- /dns/dnssectypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/dnssectypes.py -------------------------------------------------------------------------------- /dns/e164.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/e164.py -------------------------------------------------------------------------------- /dns/edns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/edns.py -------------------------------------------------------------------------------- /dns/entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/entropy.py -------------------------------------------------------------------------------- /dns/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/enum.py -------------------------------------------------------------------------------- /dns/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/exception.py -------------------------------------------------------------------------------- /dns/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/flags.py -------------------------------------------------------------------------------- /dns/grange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/grange.py -------------------------------------------------------------------------------- /dns/immutable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/immutable.py -------------------------------------------------------------------------------- /dns/inet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/inet.py -------------------------------------------------------------------------------- /dns/ipv4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/ipv4.py -------------------------------------------------------------------------------- /dns/ipv6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/ipv6.py -------------------------------------------------------------------------------- /dns/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/message.py -------------------------------------------------------------------------------- /dns/name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/name.py -------------------------------------------------------------------------------- /dns/namedict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/namedict.py -------------------------------------------------------------------------------- /dns/nameserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/nameserver.py -------------------------------------------------------------------------------- /dns/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/node.py -------------------------------------------------------------------------------- /dns/opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/opcode.py -------------------------------------------------------------------------------- /dns/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dns/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/query.py -------------------------------------------------------------------------------- /dns/quic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/quic/__init__.py -------------------------------------------------------------------------------- /dns/quic/_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/quic/_asyncio.py -------------------------------------------------------------------------------- /dns/quic/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/quic/_common.py -------------------------------------------------------------------------------- /dns/quic/_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/quic/_sync.py -------------------------------------------------------------------------------- /dns/quic/_trio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/quic/_trio.py -------------------------------------------------------------------------------- /dns/rcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rcode.py -------------------------------------------------------------------------------- /dns/rdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdata.py -------------------------------------------------------------------------------- /dns/rdataclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdataclass.py -------------------------------------------------------------------------------- /dns/rdataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdataset.py -------------------------------------------------------------------------------- /dns/rdatatype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdatatype.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/AFSDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/AFSDB.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/AMTRELAY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/AMTRELAY.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/AVC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/AVC.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/CAA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/CAA.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/CDNSKEY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/CDNSKEY.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/CDS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/CDS.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/CERT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/CERT.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/CNAME.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/CNAME.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/CSYNC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/CSYNC.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/DLV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/DLV.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/DNAME.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/DNAME.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/DNSKEY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/DNSKEY.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/DS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/DS.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/DSYNC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/DSYNC.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/EUI48.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/EUI48.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/EUI64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/EUI64.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/GPOS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/GPOS.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/HINFO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/HINFO.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/HIP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/HIP.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/ISDN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/ISDN.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/KEY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/KEY.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/L32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/L32.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/L64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/L64.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/LOC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/LOC.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/LP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/LP.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/MX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/MX.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/NID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/NID.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/NINFO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/NINFO.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/NS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/NS.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/NSEC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/NSEC.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/NSEC3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/NSEC3.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/NSEC3PARAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/NSEC3PARAM.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/OPENPGPKEY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/OPENPGPKEY.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/OPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/OPT.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/PTR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/PTR.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/RESINFO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/RESINFO.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/RP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/RP.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/RRSIG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/RRSIG.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/RT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/RT.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/SIG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/SIG.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/SMIMEA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/SMIMEA.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/SOA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/SOA.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/SPF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/SPF.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/SSHFP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/SSHFP.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/TKEY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/TKEY.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/TLSA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/TLSA.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/TSIG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/TSIG.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/TXT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/TXT.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/URI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/URI.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/WALLET.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/WALLET.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/X25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/X25.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/ZONEMD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/ZONEMD.py -------------------------------------------------------------------------------- /dns/rdtypes/ANY/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/ANY/__init__.py -------------------------------------------------------------------------------- /dns/rdtypes/CH/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/CH/A.py -------------------------------------------------------------------------------- /dns/rdtypes/CH/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/CH/__init__.py -------------------------------------------------------------------------------- /dns/rdtypes/IN/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/IN/A.py -------------------------------------------------------------------------------- /dns/rdtypes/IN/AAAA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/IN/AAAA.py -------------------------------------------------------------------------------- /dns/rdtypes/IN/APL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/IN/APL.py -------------------------------------------------------------------------------- /dns/rdtypes/IN/DHCID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/IN/DHCID.py -------------------------------------------------------------------------------- /dns/rdtypes/IN/HTTPS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/IN/HTTPS.py -------------------------------------------------------------------------------- /dns/rdtypes/IN/IPSECKEY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/IN/IPSECKEY.py -------------------------------------------------------------------------------- /dns/rdtypes/IN/KX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/IN/KX.py -------------------------------------------------------------------------------- /dns/rdtypes/IN/NAPTR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/IN/NAPTR.py -------------------------------------------------------------------------------- /dns/rdtypes/IN/NSAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/IN/NSAP.py -------------------------------------------------------------------------------- /dns/rdtypes/IN/NSAP_PTR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/IN/NSAP_PTR.py -------------------------------------------------------------------------------- /dns/rdtypes/IN/PX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/IN/PX.py -------------------------------------------------------------------------------- /dns/rdtypes/IN/SRV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/IN/SRV.py -------------------------------------------------------------------------------- /dns/rdtypes/IN/SVCB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/IN/SVCB.py -------------------------------------------------------------------------------- /dns/rdtypes/IN/WKS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/IN/WKS.py -------------------------------------------------------------------------------- /dns/rdtypes/IN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/IN/__init__.py -------------------------------------------------------------------------------- /dns/rdtypes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/__init__.py -------------------------------------------------------------------------------- /dns/rdtypes/dnskeybase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/dnskeybase.py -------------------------------------------------------------------------------- /dns/rdtypes/dsbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/dsbase.py -------------------------------------------------------------------------------- /dns/rdtypes/euibase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/euibase.py -------------------------------------------------------------------------------- /dns/rdtypes/mxbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/mxbase.py -------------------------------------------------------------------------------- /dns/rdtypes/nsbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/nsbase.py -------------------------------------------------------------------------------- /dns/rdtypes/rrsigbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/rrsigbase.py -------------------------------------------------------------------------------- /dns/rdtypes/svcbbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/svcbbase.py -------------------------------------------------------------------------------- /dns/rdtypes/tlsabase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/tlsabase.py -------------------------------------------------------------------------------- /dns/rdtypes/txtbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/txtbase.py -------------------------------------------------------------------------------- /dns/rdtypes/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rdtypes/util.py -------------------------------------------------------------------------------- /dns/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/renderer.py -------------------------------------------------------------------------------- /dns/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/resolver.py -------------------------------------------------------------------------------- /dns/reversename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/reversename.py -------------------------------------------------------------------------------- /dns/rrset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/rrset.py -------------------------------------------------------------------------------- /dns/serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/serial.py -------------------------------------------------------------------------------- /dns/set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/set.py -------------------------------------------------------------------------------- /dns/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/tokenizer.py -------------------------------------------------------------------------------- /dns/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/transaction.py -------------------------------------------------------------------------------- /dns/tsig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/tsig.py -------------------------------------------------------------------------------- /dns/tsigkeyring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/tsigkeyring.py -------------------------------------------------------------------------------- /dns/ttl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/ttl.py -------------------------------------------------------------------------------- /dns/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/update.py -------------------------------------------------------------------------------- /dns/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/version.py -------------------------------------------------------------------------------- /dns/versioned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/versioned.py -------------------------------------------------------------------------------- /dns/win32util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/win32util.py -------------------------------------------------------------------------------- /dns/wire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/wire.py -------------------------------------------------------------------------------- /dns/xfr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/xfr.py -------------------------------------------------------------------------------- /dns/zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/zone.py -------------------------------------------------------------------------------- /dns/zonefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/zonefile.py -------------------------------------------------------------------------------- /dns/zonetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/dns/zonetypes.py -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/async-backend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/async-backend.rst -------------------------------------------------------------------------------- /doc/async-query.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/async-query.rst -------------------------------------------------------------------------------- /doc/async-resolver-class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/async-resolver-class.rst -------------------------------------------------------------------------------- /doc/async-resolver-functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/async-resolver-functions.rst -------------------------------------------------------------------------------- /doc/async-resolver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/async-resolver.rst -------------------------------------------------------------------------------- /doc/async.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/async.rst -------------------------------------------------------------------------------- /doc/community.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/community.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/dnssec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/dnssec.rst -------------------------------------------------------------------------------- /doc/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/examples.rst -------------------------------------------------------------------------------- /doc/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/exceptions.rst -------------------------------------------------------------------------------- /doc/inbound-xfr-class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/inbound-xfr-class.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/installation.rst -------------------------------------------------------------------------------- /doc/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/license.rst -------------------------------------------------------------------------------- /doc/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/manual.rst -------------------------------------------------------------------------------- /doc/message-class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/message-class.rst -------------------------------------------------------------------------------- /doc/message-edns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/message-edns.rst -------------------------------------------------------------------------------- /doc/message-flags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/message-flags.rst -------------------------------------------------------------------------------- /doc/message-make.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/message-make.rst -------------------------------------------------------------------------------- /doc/message-opcode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/message-opcode.rst -------------------------------------------------------------------------------- /doc/message-query.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/message-query.rst -------------------------------------------------------------------------------- /doc/message-rcode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/message-rcode.rst -------------------------------------------------------------------------------- /doc/message-update.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/message-update.rst -------------------------------------------------------------------------------- /doc/message.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/message.rst -------------------------------------------------------------------------------- /doc/name-class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/name-class.rst -------------------------------------------------------------------------------- /doc/name-codecs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/name-codecs.rst -------------------------------------------------------------------------------- /doc/name-dict.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/name-dict.rst -------------------------------------------------------------------------------- /doc/name-helpers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/name-helpers.rst -------------------------------------------------------------------------------- /doc/name-make.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/name-make.rst -------------------------------------------------------------------------------- /doc/name.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/name.rst -------------------------------------------------------------------------------- /doc/query.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/query.rst -------------------------------------------------------------------------------- /doc/rdata-class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/rdata-class.rst -------------------------------------------------------------------------------- /doc/rdata-make.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/rdata-make.rst -------------------------------------------------------------------------------- /doc/rdata-set-classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/rdata-set-classes.rst -------------------------------------------------------------------------------- /doc/rdata-set-make.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/rdata-set-make.rst -------------------------------------------------------------------------------- /doc/rdata-subclasses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/rdata-subclasses.rst -------------------------------------------------------------------------------- /doc/rdata-types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/rdata-types.rst -------------------------------------------------------------------------------- /doc/rdata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/rdata.rst -------------------------------------------------------------------------------- /doc/rdataclass-list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/rdataclass-list.rst -------------------------------------------------------------------------------- /doc/rdatatype-list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/rdatatype-list.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/resolver-caching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/resolver-caching.rst -------------------------------------------------------------------------------- /doc/resolver-class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/resolver-class.rst -------------------------------------------------------------------------------- /doc/resolver-functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/resolver-functions.rst -------------------------------------------------------------------------------- /doc/resolver-nameserver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/resolver-nameserver.rst -------------------------------------------------------------------------------- /doc/resolver-override.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/resolver-override.rst -------------------------------------------------------------------------------- /doc/resolver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/resolver.rst -------------------------------------------------------------------------------- /doc/rfc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/rfc.rst -------------------------------------------------------------------------------- /doc/threads.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/threads.rst -------------------------------------------------------------------------------- /doc/util/auto-values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/util/auto-values.py -------------------------------------------------------------------------------- /doc/utilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/utilities.rst -------------------------------------------------------------------------------- /doc/whatsnew.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/whatsnew.rst -------------------------------------------------------------------------------- /doc/zone-class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/zone-class.rst -------------------------------------------------------------------------------- /doc/zone-make.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/zone-make.rst -------------------------------------------------------------------------------- /doc/zone.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/zone.rst -------------------------------------------------------------------------------- /doc/zonefile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/doc/zonefile.rst -------------------------------------------------------------------------------- /examples/async_dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/async_dns.py -------------------------------------------------------------------------------- /examples/ddns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/ddns.py -------------------------------------------------------------------------------- /examples/ddr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/ddr.py -------------------------------------------------------------------------------- /examples/doh-json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/doh-json.py -------------------------------------------------------------------------------- /examples/doh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/doh.py -------------------------------------------------------------------------------- /examples/doq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/doq.py -------------------------------------------------------------------------------- /examples/dot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/dot.py -------------------------------------------------------------------------------- /examples/e164.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/e164.py -------------------------------------------------------------------------------- /examples/ecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/ecs.py -------------------------------------------------------------------------------- /examples/edns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/edns.py -------------------------------------------------------------------------------- /examples/edns_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/edns_resolver.py -------------------------------------------------------------------------------- /examples/mx-typed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/mx-typed.py -------------------------------------------------------------------------------- /examples/mx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/mx.py -------------------------------------------------------------------------------- /examples/name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/name.py -------------------------------------------------------------------------------- /examples/query_specific.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/query_specific.py -------------------------------------------------------------------------------- /examples/receive_notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/receive_notify.py -------------------------------------------------------------------------------- /examples/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/reverse.py -------------------------------------------------------------------------------- /examples/reverse_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/reverse_name.py -------------------------------------------------------------------------------- /examples/send_notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/send_notify.py -------------------------------------------------------------------------------- /examples/tsig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/tsig.py -------------------------------------------------------------------------------- /examples/wire_read_tcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/wire_read_tcp.py -------------------------------------------------------------------------------- /examples/xfr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/xfr.py -------------------------------------------------------------------------------- /examples/zonediff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/examples/zonediff.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/doh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/doh.py -------------------------------------------------------------------------------- /tests/doq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/doq.py -------------------------------------------------------------------------------- /tests/example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/example -------------------------------------------------------------------------------- /tests/example1.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/example1.good -------------------------------------------------------------------------------- /tests/example2.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/example2.good -------------------------------------------------------------------------------- /tests/example3.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/example3.good -------------------------------------------------------------------------------- /tests/example4.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/example4.good -------------------------------------------------------------------------------- /tests/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/keys.py -------------------------------------------------------------------------------- /tests/md_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/md_module.py -------------------------------------------------------------------------------- /tests/mx-2-0.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/mx-2-0.pickle -------------------------------------------------------------------------------- /tests/nanonameserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/nanonameserver.py -------------------------------------------------------------------------------- /tests/query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/query -------------------------------------------------------------------------------- /tests/stxt_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/stxt_module.py -------------------------------------------------------------------------------- /tests/svcb_test_vectors.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/svcb_test_vectors.generic -------------------------------------------------------------------------------- /tests/svcb_test_vectors.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/svcb_test_vectors.text -------------------------------------------------------------------------------- /tests/test_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_address.py -------------------------------------------------------------------------------- /tests/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_async.py -------------------------------------------------------------------------------- /tests/test_btree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_btree.py -------------------------------------------------------------------------------- /tests/test_btreezone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_btreezone.py -------------------------------------------------------------------------------- /tests/test_bugs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_bugs.py -------------------------------------------------------------------------------- /tests/test_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_constants.py -------------------------------------------------------------------------------- /tests/test_ddr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_ddr.py -------------------------------------------------------------------------------- /tests/test_dnssec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_dnssec.py -------------------------------------------------------------------------------- /tests/test_dnssecalgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_dnssecalgs.py -------------------------------------------------------------------------------- /tests/test_doh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_doh.py -------------------------------------------------------------------------------- /tests/test_doq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_doq.py -------------------------------------------------------------------------------- /tests/test_edns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_edns.py -------------------------------------------------------------------------------- /tests/test_entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_entropy.py -------------------------------------------------------------------------------- /tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_exceptions.py -------------------------------------------------------------------------------- /tests/test_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_features.py -------------------------------------------------------------------------------- /tests/test_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_flags.py -------------------------------------------------------------------------------- /tests/test_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_generate.py -------------------------------------------------------------------------------- /tests/test_grange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_grange.py -------------------------------------------------------------------------------- /tests/test_immutable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_immutable.py -------------------------------------------------------------------------------- /tests/test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_message.py -------------------------------------------------------------------------------- /tests/test_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_name.py -------------------------------------------------------------------------------- /tests/test_namedict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_namedict.py -------------------------------------------------------------------------------- /tests/test_nsec3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_nsec3.py -------------------------------------------------------------------------------- /tests/test_nsec3_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_nsec3_hash.py -------------------------------------------------------------------------------- /tests/test_ntoaaton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_ntoaaton.py -------------------------------------------------------------------------------- /tests/test_processing_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_processing_order.py -------------------------------------------------------------------------------- /tests/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_query.py -------------------------------------------------------------------------------- /tests/test_rdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_rdata.py -------------------------------------------------------------------------------- /tests/test_rdataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_rdataset.py -------------------------------------------------------------------------------- /tests/test_rdtypeandclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_rdtypeandclass.py -------------------------------------------------------------------------------- /tests/test_rdtypeanydnskey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_rdtypeanydnskey.py -------------------------------------------------------------------------------- /tests/test_rdtypeanyeui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_rdtypeanyeui.py -------------------------------------------------------------------------------- /tests/test_rdtypeanykey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_rdtypeanykey.py -------------------------------------------------------------------------------- /tests/test_rdtypeanyloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_rdtypeanyloc.py -------------------------------------------------------------------------------- /tests/test_rdtypeanytkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_rdtypeanytkey.py -------------------------------------------------------------------------------- /tests/test_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_renderer.py -------------------------------------------------------------------------------- /tests/test_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_resolution.py -------------------------------------------------------------------------------- /tests/test_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_resolver.py -------------------------------------------------------------------------------- /tests/test_resolver_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_resolver_override.py -------------------------------------------------------------------------------- /tests/test_rrset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_rrset.py -------------------------------------------------------------------------------- /tests/test_rrset_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_rrset_reader.py -------------------------------------------------------------------------------- /tests/test_serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_serial.py -------------------------------------------------------------------------------- /tests/test_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_set.py -------------------------------------------------------------------------------- /tests/test_svcb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_svcb.py -------------------------------------------------------------------------------- /tests/test_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_tokenizer.py -------------------------------------------------------------------------------- /tests/test_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_transaction.py -------------------------------------------------------------------------------- /tests/test_tsig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_tsig.py -------------------------------------------------------------------------------- /tests/test_tsigkeyring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_tsigkeyring.py -------------------------------------------------------------------------------- /tests/test_ttl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_ttl.py -------------------------------------------------------------------------------- /tests/test_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_update.py -------------------------------------------------------------------------------- /tests/test_wire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_wire.py -------------------------------------------------------------------------------- /tests/test_xfr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_xfr.py -------------------------------------------------------------------------------- /tests/test_zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_zone.py -------------------------------------------------------------------------------- /tests/test_zonedigest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/test_zonedigest.py -------------------------------------------------------------------------------- /tests/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/tls/ca.crt -------------------------------------------------------------------------------- /tests/tls/private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/tls/private.pem -------------------------------------------------------------------------------- /tests/tls/public.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/tls/public.crt -------------------------------------------------------------------------------- /tests/ttxt_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/ttxt_module.py -------------------------------------------------------------------------------- /tests/utest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/utest.py -------------------------------------------------------------------------------- /tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/tests/util.py -------------------------------------------------------------------------------- /util/constants-tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/util/constants-tool -------------------------------------------------------------------------------- /util/generate-features: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/util/generate-features -------------------------------------------------------------------------------- /util/generate-mx-pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/util/generate-mx-pickle.py -------------------------------------------------------------------------------- /util/generate-rdatatype-doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/util/generate-rdatatype-doc.py -------------------------------------------------------------------------------- /util/make-test-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/util/make-test-project -------------------------------------------------------------------------------- /util/update-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/util/update-version -------------------------------------------------------------------------------- /util/uv-dev-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rthalley/dnspython/HEAD/util/uv-dev-setup --------------------------------------------------------------------------------