Skip to main content

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]
for latest_ipv4_network in cdn.latest_ipv4_networks:
    print(latest_ipv4_network.networks)
    print(latest_ipv4_network.updated_at)
    print(latest_ipv4_network.source)

FAQ

How to obtain an access token?

Please contact wangyihanger@gmail.com.

Project details


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.2.6.tar.gz (1.9 kB view hashes)

Uploaded Source

Built Distribution

cdnmon-0.2.6-py3-none-any.whl (2.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page