__init__.py 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. 'e164',
  23. 'edns',
  24. 'entropy',
  25. 'exception',
  26. 'flags',
  27. 'immutable',
  28. 'inet',
  29. 'ipv4',
  30. 'ipv6',
  31. 'message',
  32. 'name',
  33. 'namedict',
  34. 'node',
  35. 'opcode',
  36. 'query',
  37. 'rcode',
  38. 'rdata',
  39. 'rdataclass',
  40. 'rdataset',
  41. 'rdatatype',
  42. 'renderer',
  43. 'resolver',
  44. 'reversename',
  45. 'rrset',
  46. 'serial',
  47. 'set',
  48. 'tokenizer',
  49. 'transaction',
  50. 'tsig',
  51. 'tsigkeyring',
  52. 'ttl',
  53. 'rdtypes',
  54. 'update',
  55. 'version',
  56. 'versioned',
  57. 'wire',
  58. 'xfr',
  59. 'zone',
  60. 'zonefile',
  61. ]
  62. from dns.version import version as __version__ # noqa