Skip to main content

BGPKIT tools Python bindings

Project description

PyBGPKIT

Python bindings for BGPKIT software. For all software offerings, please check out our GitHub repository at https://github.com/bgpkit.

SDKs

BGPKIT Parser

See the bgpkit-parser-py documentation for the full API.

import bgpkit

# Full element parsing
parser = bgpkit.Parser(url="https://spaces.bgpkit.org/parser/update-example",
                       filters={"peer_ips": "185.1.8.65, 2001:7f8:73:0:3:fa4:0:1"})
for elem in parser:
    print(elem)

# Route-level parsing (faster, fewer fields)
for route in bgpkit.RouteParser(url="https://spaces.bgpkit.org/parser/update-example"):
    print(route.prefix, route.as_path)

# Reusable filter objects
from bgpkit import Filter
f = Filter.peer_ip("185.1.8.65")
parser = bgpkit.Parser.from_filters(url, [f])

BGPKIT Broker

import bgpkit
broker = bgpkit.Broker()

# Search MRT data files
items = broker.query(ts_start="2024-01-01T00:00:00Z", ts_end="2024-01-01T01:00:00Z")
print(len(items))

# Get latest files
latest = broker.latest()

# Query peer information
peers = broker.peers(asn=13335, full_feed=True)

# List collectors
collectors = broker.collectors(project="routeviews", active=True)

BGPKIT IP Lookup

ip_info = bgpkit.IpLookup().query("1.1.1.1")
print(ip_info.country, ip_info.as_number, ip_info.as_name)

BGPKIT ASN Lookup

result = bgpkit.AsnLookup().query(asn="13335", country="US")
for asn in result.data:
    print(asn.asn, asn.name, asn.country)

BGPKIT Community Lookup

entries = bgpkit.CommunityLookup().query(asn="13335", page_size=50)
for entry in entries:
    print(entry.value, entry.description)

sources = bgpkit.CommunityLookup().sources()

BGPKIT ROAS Lookup

BGPKIT ROAS Lookup

roas = bgpkit.Roas()
data = roas.query(asn=3333, date="2018-01-01")
for entry in data:
    print(entry.prefix, entry.asn, entry.tal)

# Current ROAs only
current = roas.query(prefix="1.1.1.0/24", current=True)

Build and Publish

Push a version tag to build and publish automatically via GitHub Actions:

git tag v0.7.0
git push origin v0.7.0

Manual release:

python -m pip install --upgrade build twine
python -m build
twine upload --skip-existing dist/*

PyPI Trusted Publishing is configured for automated releases. See .github/workflows/release.yml.

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

pybgpkit-0.8.0.tar.gz (6.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pybgpkit-0.8.0-py3-none-any.whl (8.2 kB view details)

Uploaded Python 3

File details

Details for the file pybgpkit-0.8.0.tar.gz.

File metadata

  • Download URL: pybgpkit-0.8.0.tar.gz
  • Upload date:
  • Size: 6.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pybgpkit-0.8.0.tar.gz
Algorithm Hash digest
SHA256 cab796ab68dcaf255e0299bc30cd96b86ba24bc2ead547efac68250d92947f4e
MD5 8c61a372a4b849010367d24f9c38d9d4
BLAKE2b-256 059985d7e5ffbda8eda94dab51eda0aa605762ecd56e6276623c304de0530417

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybgpkit-0.8.0.tar.gz:

Publisher: release.yml on bgpkit/pybgpkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybgpkit-0.8.0-py3-none-any.whl.

File metadata

  • Download URL: pybgpkit-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 8.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pybgpkit-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5e7cda9faa36d696d4dfdf2a2971cb687ea4f0adc7fcd64cb1032791bc5a4eff
MD5 10b115e68e954d84623343376773841b
BLAKE2b-256 3f09c20945c330039afb1b549d8430bab1dae3d1e57c8165974cb95371ce8c32

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybgpkit-0.8.0-py3-none-any.whl:

Publisher: release.yml on bgpkit/pybgpkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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