Check whether an IP address belongs to a cloud provider
Project description
RadixTarget
RadixTarget is a performant radix implementation designed for quick lookups of IP addresses/networks and DNS hostnames.
RadixTarget is:
- Written in pure python
- Capable of ~100,000 lookups per second regardless of database size
- 100% test coverage
- Used by:
Installation (PyPi)
pip install radixtarget
Example Usage
from radixtarget import RadixTarget
rt = RadixTarget()
# IPv4
rt.add("192.168.1.0/24")
rt.get("192.168.1.10") # IPv4Network("192.168.1.0/24")
rt.get("192.168.2.10") # None
# IPv6
rt.add("dead::/64")
rt.get("dead::beef") # IPv6Network("dead::/64")
rt.get("dead:cafe::beef") # None
# DNS
rt.add("net")
rt.add("www.example.com")
rt.add("test.www.example.com")
rt.get("net") # "net"
rt.get("evilcorp.net") # "net"
rt.get("www.example.com") # "www.example.com"
rt.get("asdf.test.www.example.com") # "test.www.example.com"
rt.get("example.com") # None
# Custom data nodes
rt.add("evilcorp.co.uk", "custom_data")
rt.get("www.evilcorp.co.uk") # "custom_data"
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
radixtarget-3.0.13.tar.gz
(108.2 kB
view details)
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
radixtarget-3.0.13-py3-none-any.whl
(108.8 kB
view details)
File details
Details for the file radixtarget-3.0.13.tar.gz.
File metadata
- Download URL: radixtarget-3.0.13.tar.gz
- Upload date:
- Size: 108.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
668b77a91c8d642fe5ed29b929a807f6a0c411c4b0805b6be37c15383bf5c536
|
|
| MD5 |
0981f9c06f122b27e642e96470fa58c3
|
|
| BLAKE2b-256 |
e92501a3fc47525ec0d758bf2af2e990236810534e4bb4001e43a1baab086ad1
|
File details
Details for the file radixtarget-3.0.13-py3-none-any.whl.
File metadata
- Download URL: radixtarget-3.0.13-py3-none-any.whl
- Upload date:
- Size: 108.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe8e0faa9fcfe62629583625c606e690a7002baa0243a6f00b85f1e96824d734
|
|
| MD5 |
dd15fa27de1a81c103fe0b1b4653bef9
|
|
| BLAKE2b-256 |
e9cf46f67c61b7ecbb40f6d78d752566d07568fbad99930d12909f28e464e93c
|