Skip to main content

An API wrapper for hackcheck.io

Project description

Hackcheck-py

Official python library for the hackcheck.io API

Installation

Install with pip

pip install -U git+https://github.com/hackcheckio/hackcheck-py

Quick start

from hackcheck import Hackcheck

# Get an api key by purchasing a developer plan https://hackcheck.io/plans
hc = Hackcheck("MY_API_KEY")

result = hc.lookup_email("your@email.com")

for r in result:
    print(f"Database: {r.source.name}")
    print(f"Date: {r.source.date}")
    print(f"Password: {r.password}")
    print(f"Username: {r.username}")
    print(f"IP: {r.ip}")
    print("------")

# Check your ratelimits
print(f"Current rate limit: {hc.current_rate_limit}")
print(f"Allowed rate limit: {hc.allowed_rate_limit}")

Methods

hc.lookup_email("your@email.com")
hc.lookup_username("username")
hc.lookup_password("password")
hc.lookup_name("Full Name")
hc.lookup_ip("8.8.8.8")
hc.lookup_phone("1234567890")
hc.lookup_domain("hackcheck.io")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hackcheck-1.0.0.tar.gz (2.5 kB view hashes)

Uploaded Source

Built Distribution

hackcheck-1.0.0-py3-none-any.whl (3.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page