The ProxyDetection class

The ProxyDetection class uses the CloudJet API to identify suspicious IP addresses. It's ideal for real-time fraud prevention, access control, and login filtering.

Installation

cmd : pip install cloudjet

How to use it?

from cloudjet import ProxyDetection
api = ProxyDetection("YOUR_API_TOKEN")
result = api.check_ip("8.8.8.8")

Public Methods:

ProxyDetection(token)

Initializes the class with your API token.

check_ip(ip_address)

Checks whether the IP is suspicious and returns structured JSON data.

Was this answer helpful? 1 Users Found This Useful (2 Votes)