mirror of
https://github.com/adulau/pdns-qof-server.git
synced 2024-11-21 17:47:09 +00:00
IANA nameserver RR type converter to JSON/Python dict
This commit is contained in:
commit
6ffd802b93
1 changed files with 43 additions and 0 deletions
43
bin/rr-types.py
Normal file
43
bin/rr-types.py
Normal file
|
@ -0,0 +1,43 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Tool to dump in IANA RR DNS parameters in JSON or Python dict format
|
||||
#
|
||||
# Software is free software released under the "Modified BSD license"
|
||||
#
|
||||
# Copyright (c) 2013 Alexandre Dulaunoy - a@foo.be
|
||||
|
||||
import argparse
|
||||
import csv
|
||||
import json
|
||||
import codecs
|
||||
import urllib.request
|
||||
|
||||
#IANA format (CSV) is TYPE,Value,Meaning,Reference,Template,Registration Date
|
||||
ianarrurl = "http://www.iana.org/assignments/dns-parameters/dns-parameters-4.csv"
|
||||
|
||||
argParser = argparse.ArgumentParser(description='Dump IANA DNS parameters in various formats')
|
||||
argParser.add_argument('-d', action='store_true', help='Python dict')
|
||||
argParser.add_argument('-j', action='store_true', default=True, help='JSON output (default format)')
|
||||
argParser.add_argument('-i', action='store_false', default=True, help='Disable integer value RR check')
|
||||
argParser.add_argument('-v', action='store_true', help='Verbose output')
|
||||
args = argParser.parse_args()
|
||||
|
||||
|
||||
rrset=[row for row in csv.DictReader(codecs.iterdecode(urllib.request.urlopen(ianarrurl),'utf-8'),fieldnames = ( "Type","Value","Meaning","Reference","Template","Registration Date" ))]
|
||||
|
||||
if args.i:
|
||||
rri = []
|
||||
for rr in rrset[1:]:
|
||||
if rr['Value'].isdigit():
|
||||
rri.append(rr)
|
||||
rrset=rri
|
||||
else:
|
||||
rrset=rrset[1:]
|
||||
|
||||
if args.d:
|
||||
print (rrset)
|
||||
|
||||
if args.j:
|
||||
jsonout = json.dumps( rrset )
|
||||
print (jsonout)
|
Loading…
Reference in a new issue