Detailed database of cloud providers for instantly looking up a domain or IP address. Current version: 9.3.0, requires Python >=3.9. Release cadence is active, with frequent updates.
pip install cloudcheckVerified import paths — ran on the pinned version, not inferred.
Create a CloudCheck instance and look up a domain or IP address. Returns provider info or None.
Upgrade Python to 3.9 or higher.
if result is not None: ...
Use lookup() instead of lookup_ip().
Implement caching or use with caution in loops.
Ensure the package is installed: pip install cloudcheck. Then import as from cloudcheck import CloudCheck.
Use: from cloudcheck import CloudCheck; cc = CloudCheck(); result = cc.lookup(...)
Check for None: if result: print(result['provider']) else: print('Not found')Ensure input is a valid IPv4 or IPv6 address string or a domain name.