Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 434 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 434 Bytes

incandescent python client

A simple python client for the Incadescent reverse image search API.

Installation

pip install -r requirements.txt

Usage

See example.py

# Add credentials
search = Client(uid, apikey)

# Add an image URL
search.addImageUrl(<image_url>)

# Generate the request and POST
search.makeRequestData()
search.makeRequest()

# Request the result 
search.getResults()