mirror of
https://github.com/YunoHost/zonefile-parser
synced 2026-06-29 01:29:34 +02:00
No description
- Python 95.3%
- Dockerfile 4.7%
| .devcontainer | ||
| .github | ||
| .vscode | ||
| docs | ||
| test-data/zonefiles | ||
| zonefile_parser | ||
| .gitignore | ||
| LICENSE.txt | ||
| pytest.ini | ||
| README.md | ||
| requirements.txt | ||
| setup.cfg | ||
| setup.py | ||
zone-file-parser
! this package is not currently RFC compliant, but if you open up an issue on github - i'm more than likely to attempt to solve it.
install
pip install zonefile-parser
usage
import zonefile_parser
with open("zone.txt","r") as stream:
content = stream.read()
records = zonefile_parser.parse(content)
for record in records:
print(record)
{'rtype': 'SOA', 'name': 'mywebsite.com.', 'rclass': 'IN', 'rdata': {'mname': 'mywebsite.com.', 'rname': 'root.mywebsite.com.', 'serial': '2034847964', 'refresh': '7200', 'retry': '3600', 'expire': '86400', 'minimum': '3600'}, 'ttl': '3600'}
{'rtype': 'A', 'name': 'mywebsite.com.', 'rclass': 'IN', 'rdata': {'value': '105.33.55.52'}, 'ttl': '7200'}
{'rtype': 'MX', 'name': 'mywebsite.com.', 'rclass': 'IN', 'rdata': {'priority': '10', 'host': 'alt3.aspmx.l.google.com.'}, 'ttl': '1'}
{'rtype': 'MX', 'name': 'mywebsite.com.', 'rclass': 'IN', 'rdata': {'priority': '5', 'host': 'alt2.aspmx.l.google.com.'}, 'ttl': '1'}
{'rtype': 'TXT', 'name': 'mywebsite.com.', 'rclass': 'IN', 'rdata': {'value': 'v=spf1 include:_spf.google.com ~all'}, 'ttl': '1'}
Detailed Documentation -> https://aredwood.github.io/zonefile-parser/