本文整理匯總了Python中Helper.Helper.convertPrefixToAddress方法的典型用法代碼示例。如果您正苦於以下問題:Python Helper.convertPrefixToAddress方法的具體用法?Python Helper.convertPrefixToAddress怎麽用?Python Helper.convertPrefixToAddress使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Helper.Helper
的用法示例。
在下文中一共展示了Helper.convertPrefixToAddress方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: sendQuery
# 需要導入模塊: from Helper import Helper [as 別名]
# 或者: from Helper.Helper import convertPrefixToAddress [as 別名]
def sendQuery(outputfile, asn, lg, command, queryAddress=False):
prevq = ""
if command == "traceroute" or command == "neighbor" or lg["http"]["prefix"] == False:
# if IP prefix is given strip out the prefix length
#print queryAddress
if isinstance(queryAddress, Iterable):
if '/' in queryAddress:
queryAddress = Helper.convertPrefixToAddress(address)
# validate the ip address
ipIsValid = Helper.validateIPNetwork(queryAddress)
if ipIsValid or command == "summary" or command == "regex":
q = lg["commands"][command]
if lg["commands"][command]["lg_query_arg"] in q:
prevq = q[lg["commands"][command]["lg_query_arg"]]
if lg["http"]["rarg"] != 0:
if not isinstance(q[lg["http"]["rarg"]], basestring):
q[lg["http"]["rarg"]] = q[lg["http"]["rarg"]][0]
# set the command argument
if command != "summary":
q[lg["commands"][command]["lg_query_arg"]] = q[lg["commands"][command]["lg_query_arg"]].replace("$", queryAddress);
# send the http request
the_page = qh.send_http_request(q, str(lg["http"]["url"]), str(lg["http"]["referer"]), lg["http"]["type"])
#print the_page
q[lg["commands"][command]["lg_query_arg"]] = prevq
# scrape the output
table = qh.parse_html(the_page, lg["html"])
if lg["html"]["striphtml"] == True:
table = qh.strip_tags(table)
filename = outputfile
filename = filename.replace(":", "-")
if command != "summary":
Helper.saveToFile(filename, "#> " + str(queryAddress) + "\n", "a+", asn)
Helper.saveToFile(filename, str(table), "a+", asn)
filepath = Helper.saveToFile(filename, "\n-----------------------------------------------------\n\n", "a+", asn)
time.sleep(15)
return filepath