Any python libs for parsing Bind zone files? Basically something that will aid in adding/removing zones and records. This needs to work even if someone modifies the zone fi
I know this is old but the only working one I could find is called iscpy. You can do an easy_install.
easy_install iscpy
Then in python:
import iscpy iscpy.ParseISCString(open('somefile.conf', 'r').read())
Which returns a dictionary.