Export Censys Search Results
Censys makes it easy to query the entire Internet for very specific data. While there is no way to export the results of a query directly from the Censys Search UI, we have a CLI Tool that makes exporting results just as easy as querying for them.
For example, after you install the CLI Tool, run a command like this to print the first 50 hosts matching your query to the screen:
from censys.search import CensysHosts
h = CensysHosts()
query = h.search ("services.service_name: HTTP", per_page=50, pages=1)
print(query.view_all())
Full documentation for the CLI module is located here, or you can read this short introduction.