This is related to a similar question about BIND, but in this case I'm trying to see if there's any easy way to parse various zone files into a dictionary, list, or some other manageable data structure, with the final goal being committing the data to a database.

I'm using BIND 8.4.7 and Python 2.4. I may be able to convince management to use a later Python version if needed, but the BIND version is non-negotiable at the moment.

link|improve this question

Possible duplicate: stackoverflow.com/questions/236859/… – aem Jul 26 '09 at 15:31
I mentioned that. That ?? was talking about config files. – lfaraone Jul 27 '09 at 13:43
feedback

1 Answer

up vote 1 down vote accepted

ISTM, easyzone might meet your needs. It sits on top of dnspython, which would be an alternative API.

link|improve this answer
easyzone lacks support for some record type like PTR. It's fine if you just need to work with CNAME, A and TXT etc, but if you really want to support all DNS record types, read easyzone's code and write your own using dnspython – yegle Apr 1 at 6:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.