Fast cloud-provider IP detection (AWS, GCP, Azure, Cloudflare, DigitalOcean, Oracle)
Project description
py-cloudip
Fast cloud-provider IP detection for Python. Identify whether an IP address belongs to AWS, GCP, Azure, Cloudflare, DigitalOcean, or Oracle Cloud via longest-prefix-match lookups over a Patricia/binary trie.
A Python port of js-cloudip and go-cloudip, backed by the daily-updated cloudip-db MessagePack database.
- Fast — binary trie, IPv4 + IPv6, longest-prefix match.
- Auto-updating — fetches fresh data from
cloudip-dbwith SHA-256 verification. - Offline-capable — file cache plus an embedded database bundled in the wheel.
- Zero config — works on first call; one tiny dependency (
msgpack).
Install
pip install py-cloudip
Usage
import cloudip
cloudip.is_aws("52.94.76.1") # True
cloudip.get_provider("34.64.0.1") # "gcp"
cloudip.is_cloud_provider("1.1.1.1") # True
r = cloudip.lookup("52.94.76.1")
# LookupResult(found=True, provider="aws", region="us-east-1", service="EC2",
# cidr="52.94.76.0/22", ip_type="ipv4")
r.to_dict()
# {"found": True, "provider": "aws", "cidr": "52.94.76.0/22",
# "ip_type": "ipv4", "region": "us-east-1", "service": "EC2"}
# Forward lookup: every CIDR for one or more providers
cloudip.get_ips("cloudflare") # list[IPEntry]
cloudip.get_ips(["aws", "gcp"])
Provider checks
is_aws, is_gcp, is_azure, is_cloudflare, is_digitalocean, is_oracle,
is_cloud_provider.
Metadata & updates
cloudip.version() # "2026-06-05"
cloudip.range_count() # 124455
cloudip.providers() # ["aws", "gcp", "cloudflare", "azure", "digitalocean", "oracle"]
cloudip.check_update() # CheckUpdateResult(has_update=..., info=VersionInfo(...))
cloudip.update() # force refresh
cloudip.clear_cache()
Custom detector
detector = cloudip.new_detector(
data_dir="./cache", # None disables file caching; "" = default ~/.cache/py-cloudip
auto_update_seconds=86400, # background refresh (min 1h); 0 disables
offline=False, # air-gapped mode
verify_sha256=True,
ttl_seconds=86400,
)
detector.lookup("52.94.76.1")
detector.close() # stop the background updater
# or: with cloudip.Detector(...) as d: ...
Offline / air-gapped
The cloudip.embedded module never touches the network — it uses only the
database bundled in the package:
from cloudip import embedded
embedded.is_aws("52.94.76.1") # uses bundled data only
embedded.age_days() # how old the bundled data is
CLI
cloudip lookup 52.94.76.1
cloudip provider 34.64.0.1
cloudip get cloudflare
cloudip get aws,gcp
cloudip providers
cloudip version
cloudip check-update
cloudip update
cloudip clear-cache
(Also runnable as python -m cloudip.)
How it works
- Fetch
version.json+cloudip.msgpack.gzfromcloudip-db. - Verify the SHA-256 of the decompressed MessagePack against
version.json. - Decode and build per-protocol tries for sub-millisecond lookups.
- On network failure, fall back to the on-disk cache, then the embedded database.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file py_cloudip-0.1.0.tar.gz.
File metadata
- Download URL: py_cloudip-0.1.0.tar.gz
- Upload date:
- Size: 770.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a17185eab767581f621cce53a27f3963c1399e0178afdc56d38b126adef58b04
|
|
| MD5 |
1e379fdfdc8373acc7d0fc97ec860201
|
|
| BLAKE2b-256 |
b936290d7eae5e1468b721bcd068b63a183c330da0084f97e8c9b62f3cb717ae
|
File details
Details for the file py_cloudip-0.1.0-py3-none-any.whl.
File metadata
- Download URL: py_cloudip-0.1.0-py3-none-any.whl
- Upload date:
- Size: 773.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9db5cbd1c0cfb188b6cd536a8965fbcbf99ff624f4751bfded9e04798779f41a
|
|
| MD5 |
2199f51e4853fb4ed34cf7277b511b51
|
|
| BLAKE2b-256 |
06cf79c8de1e2b5558e359e13d0ba2b97a1a033206ef3f2a961cd255d46a576e
|