__init__.py 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
  2. # Copyright (C) 2003-2007, 2009, 2011 Nominum, Inc.
  3. #
  4. # Permission to use, copy, modify, and distribute this software and its
  5. # documentation for any purpose with or without fee is hereby granted,
  6. # provided that the above copyright notice and this permission notice
  7. # appear in all copies.
  8. #
  9. # THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES
  10. # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  11. # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR
  12. # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  13. # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  14. # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  15. # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  16. """dnspython DNS toolkit"""
  17. __all__ = [
  18. "asyncbackend",
  19. "asyncquery",
  20. "asyncresolver",
  21. "dnssec",
  22. "dnssecalgs",
  23. "dnssectypes",
  24. "e164",
  25. "edns",
  26. "entropy",
  27. "exception",
  28. "flags",
  29. "immutable",
  30. "inet",
  31. "ipv4",
  32. "ipv6",
  33. "message",
  34. "name",
  35. "namedict",
  36. "node",
  37. "opcode",
  38. "query",
  39. "quic",
  40. "rcode",
  41. "rdata",
  42. "rdataclass",
  43. "rdataset",
  44. "rdatatype",
  45. "renderer",
  46. "resolver",
  47. "reversename",
  48. "rrset",
  49. "serial",
  50. "set",
  51. "tokenizer",
  52. "transaction",
  53. "tsig",
  54. "tsigkeyring",
  55. "ttl",
  56. "rdtypes",
  57. "update",
  58. "version",
  59. "versioned",
  60. "wire",
  61. "xfr",
  62. "zone",
  63. "zonetypes",
  64. "zonefile",
  65. ]
  66. from dns.version import version as __version__ # noqa