Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FaceSeek — Python SDK

Official Python client for the FaceSeek reverse face search API. Find where a face appears across the public web.

pip install faceseek

Usage

from faceseek import FaceSeek

fs = FaceSeek(api_key="fsk_...")          # or set FACESEEK_API_KEY

# Reverse face search
for match in fs.search("photo.jpg"):
    print(match["source_url"], match["score"])

# Check your balance
print(fs.account())   # {"email": ..., "credits_remaining": ...}

search() accepts a file path or a binary file-like object and returns a list of matches (source_url, score, and more).

Get an API key

Sign up free at faceseek.online — free daily searches included. Full API reference: /api-docs.

License

MIT

Releases

Packages

Contributors

Languages