Metadata-Version: 2.1
Name: pybgpranking2
Version: 2.0.2
Summary: Python CLI and module for BGP Ranking
License: BSD-3-Clause
Author: Raphaël Vinot
Author-email: raphael.vinot@circl.lu
Requires-Python: >=3.8,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Telecommunications Industry
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Internet
Classifier: Topic :: Security
Provides-Extra: docs
Requires-Dist: Sphinx (<7.2) ; (python_version < "3.9") and (extra == "docs")
Requires-Dist: Sphinx (>=7.2,<8.0) ; (python_version >= "3.9" and python_version < "3.10") and (extra == "docs")
Requires-Dist: Sphinx (>=8,<9) ; (python_version >= "3.10") and (extra == "docs")
Requires-Dist: pyipasnhistory (>=2.1.2,<3.0.0)
Requires-Dist: requests (>=2.32.3,<3.0.0)
Description-Content-Type: text/markdown

# Python client and module for BGP Ranking

Queries BGP Ranking.

## Installation

```bash
pip install pybgpranking2
```

## Usage

### Command line

You can use the `bgpranking` command to query the instance:

```bash
bgpranking -h
usage: bgpranking [-h] [--url URL] [--date DATE] {index,simple,status} ...

Run a query against BGP Ranking

options:
  -h, --help            show this help message and exit
  --url URL             URL of the instance.
  --date DATE           Date of the dataset required

Available commands:
  {index,simple,status}

```

### Library

See [API Reference](https://pybgpranking.readthedocs.io/en/latest/api_reference.html)

