zoomeye-rb

Build Status Coverage Status CodeFactor

ZoomEye API wrapper for Ruby.

Installation

gem install zoomeye

Usage

require "zoomeye"

# when given nothing, it tries to load your usernamem & password via ENV["ZOOMEYE_USERNAME"] and ENV["ZOOMEYE_PASSWORD"]
api = ZoomEye::API.new

# or you can set them manually
api = ZoomEye::API.new(username: "USERNAME", password: "PASSWORD")

# Host search
api.host.search("port:80 nginx")
api.host.search("port:80 nginx", page: 7, facets: "app,device")

# Web search
api.web.search("wordpress")
api.web.search("wordpress", page: 1, facets: "app.os")

# Resource info
api.resource_info.get

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/ninoseki/zoomeye-rb.

License

The gem is available as open source under the terms of the MIT License.