The fofa SDK written in python3 makes it easy for developers to call fofa's API interface.
pip install pyfofa
Only Python 3.6 is supported.
import pyfofa
email = '[email protected]'
key = 'xxxxxxx'
search = pyfofa.FofaAPI(email, key)
for host, ip in search.get_data('cert="baidu.com"', 1, "host,ip")['results']:
print(host, ip)