所以我目前正在使用 Python 中的 Shodan 使用import shodan
. 周围的文档不是最好的,所以我想我会在这里提出我的问题。
使用 Shodan CLI 有一个命令,Shodan Info
它显示您的帐户剩余的搜索积分数。
在查看Shodan 文档时,我可以看到有一个info()
标签,但每当我使用它时,都会出现错误。
有谁知道在 python 脚本中使用 info 来显示帐户的信用数的正确语法?
我收到的错误:
ipinfo = shodan.info()
print (ipinfo)
错误
Traceback (most recent call last):
File "C:/Users/XXXX/OneDrive - XXXX/Documents/XX Documents/XXXX/Working
Segments/ShodanScraper.py", line 8, in <module>
ipinfo = shodan.info()
AttributeError: module 'shodan' has no attribute 'info'
和
ipinfo = shodan.Shodan(info())
print (ipinfo)
错误
Traceback (most recent call last):
File "C:/Users/XXXX/OneDrive - XXXX/Documents/XXXXDocuments/XXXXXX/Working
Segments/ShodanScraper.py", line 8, in <module>
ipinfo = shodan.Shodan(info())
NameError: name 'info' is not defined