ANN: dnspython 1.0.0a2
Bob Halley
halley@dnspython.org
05 Jun 2003 22:56:32 -0700
dnspython 1.0.0a2 has been released. Here is the README file from
the release:
dnspython
INTRODUCTION
dnspython is a DNS toolkit for Python. It supports all of the common
record types and will support all types. It can be used for queries,
zone transfers, and dynamic updates. It supports TSIG authenticated
messages and EDNS0.
dnspython provides both high and low level access to DNS. The high
level classes perform queries for data of a given name, type, and
class, and return an answer set. The low level classes allow direct
manipulation of DNS zones, messages, names, and records.
To see a few of the ways dnspython can be used, look in the examples/
directory.
dnspython originated at Nominum where it was developed to facilitate
the testing of DNS software. Nominum has generously allowed it to be
open sourced under a BSD-style license, and helps support its future
development by continuing to employ the author :).
ABOUT THIS RELEASE
This is dnspython 1.0.0a2.
New in this release:
An Update class. You can now generate and execute DNS dyanmic updates
more easily than before. For example:
update = DNS.update.Update('dyn.test.example', keyring=keyring)
update.replace('host', 300, 'a', sys.argv[1])
response = DNS.query.tcp(update, '10.0.0.1')
Names have become immutable.
The documentation has been extensively enhanced and corrected.
This release fixes all known bugs from 1.0.0a1.
Although the software is already useful, there are a number of things
to do before the first stable release, including: implementing the
rest of the DNS rdata types, creating some introductory documentation
to go along with the existing reference documentation, and thorough
testing.
See the ChangeLog file for more detailed information on changes since
the prior release.
REQUIREMENTS
Python 2.2 or later.
INSTALLATION
To build and install dnspython, type
python setup.py install
HOME PAGE
For the latest in releases, documentation, and information, visit the
dnspython home page at
http://www.dnspython.org/
DOCUMENTATION
Documentation is sparse at the moment. Use pydoc, or read the HTML
documentation at the dnspython home page, or download the HTML
documentation.
BUG REPORTS
Bug reports may be sent to bugs@dnspython.org
MAILING LISTS
A number of mailing lists are available. Visit the dnspython home
page to subscribe or unsubscribe.