Python library to scrape Google Code and srchub
github.com1 pointsby nadams1 comments
parameters = {'hostname': self.hostname, 'myip': myip}
Change to: parameters = {'hostname': self.hostname, 'myip': ip}
Change: for host in hosts:
print(host)
To: for host in hosts:
host.update(myip)
print(host)