我需要使用 shodan API 执行 BULK whois 查询。
我遇到了这段代码
import shodan
api = shodan.Shodan('inserted my API-KEY- within single quotes')
info = api.host('8.8.8.8')
运行模块后,我收到以下错误:
回溯(最后一次调用):
文件“C:/Users/PIPY/AppData/Local/Programs/Python/Python37/dam.py”,第 1 行,在
import shodan
文件“C:/Users/PIPY/AppData/Local /Programs/Python/Python37\shodan.py", line 2, in
api = shodan.Shodan('the above inserted API KEY')
AttributeError: module 'shodan' has no attribute 'Shodan'
我正在学习 python,并且脚本/编程经验有限。
你能帮帮我吗?
干杯