Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

45 linhas
1.8 KiB

  1. Metadata-Version: 2.0
  2. Name: dnspython
  3. Version: 1.16.0
  4. Summary: DNS toolkit
  5. Home-page: http://www.dnspython.org
  6. Author: Bob Halley
  7. Author-email: halley@dnspython.org
  8. License: BSD-like
  9. Download-URL: http://www.dnspython.org/kits/1.16.0/dnspython-1.16.0.tar.gz
  10. Description-Content-Type: UNKNOWN
  11. Platform: UNKNOWN
  12. Classifier: Development Status :: 5 - Production/Stable
  13. Classifier: Intended Audience :: Developers
  14. Classifier: Intended Audience :: System Administrators
  15. Classifier: License :: Freeware
  16. Classifier: Operating System :: Microsoft :: Windows :: Windows 95/98/2000
  17. Classifier: Operating System :: POSIX
  18. Classifier: Programming Language :: Python
  19. Classifier: Topic :: Internet :: Name Service (DNS)
  20. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  21. Classifier: Programming Language :: Python :: 2
  22. Classifier: Programming Language :: Python :: 2.7
  23. Classifier: Programming Language :: Python :: 3
  24. Classifier: Programming Language :: Python :: 3.4
  25. Classifier: Programming Language :: Python :: 3.5
  26. Classifier: Programming Language :: Python :: 3.6
  27. Classifier: Programming Language :: Python :: 3.7
  28. Provides: dns
  29. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
  30. Provides-Extra: DNSSEC
  31. Requires-Dist: pycryptodome; extra == 'DNSSEC'
  32. Requires-Dist: ecdsa (>=0.13); extra == 'DNSSEC'
  33. Provides-Extra: IDNA
  34. Requires-Dist: idna (>=2.1); extra == 'IDNA'
  35. dnspython is a DNS toolkit for Python. It supports almost all
  36. record types. It can be used for queries, zone transfers, and dynamic
  37. updates. It supports TSIG authenticated messages and EDNS0.
  38. dnspython provides both high and low level access to DNS. The high
  39. level classes perform queries for data of a given name, type, and
  40. class, and return an answer set. The low level classes allow
  41. direct manipulation of DNS zones, messages, names, and records.