No project description provided
Project description
Introduction
This project provides IP range data of multiple CDN vendors via a Python package named cdnmon
.
Installation
pip install -i https://pypi.org/simple/ cdnmon
Usage
List all supported CDNs
from cdnmon import Endpoint
endpoint = Endpoint(access_token="")
cdns = endpoint.list_cdns()
Get a CDN by name
from cdnmon import Endpoint
endpoint = Endpoint(access_token="")
cdn = endpoint.get_cdn(name="cloudflare")
print(cdn)
Get the IP ranges of a specific CDN
from cdnmon import Endpoint
endpoint = Endpoint(access_token="")
cdn = endpoint.get_cdn(name="cloudflare")
latest_ipv4_networks = cdn["ipv4_networks"][-1]
print("Updated at:", latest_ipv4_networks["updated_at"])
print("Source:", latest_ipv4_networks["source"])
print("Networks:")
for latest_ipv4_network in latest_ipv4_networks["networks"]:
print(latest_ipv4_network)
TODO
- Support downloading ingress / egress nodes list
- Add type annotations
FAQ
How to obtain an access token?
Please contact wangyihanger@gmail.com.
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
cdnmon-0.3.1.tar.gz
(2.1 kB
view hashes)
Built Distribution
cdnmon-0.3.1-py3-none-any.whl
(2.7 kB
view hashes)