This is a Python wrapper for the MANRS API, designed to simplify the process of making requests to the MANRS Public API. This class assists in querying data related to routing security, such as ROAs by ASN or country, ASN info, IXP info, and conformance details for CDNs, IXPs, network operators, and equipment vendors.
The official documentation for the MANRS API can be found here
- Query ROAs by ASN or country.
- Retrieve information about all known ASNs and their holders.
- Fetch data about Internet Exchange Points (IXPs).
- Get conformance details for different entities participating in MANRS.
Note: You must request access to get an API key!
- Initialization: Instantiate the
MANRS
class with your API key.
import manrs
api = manrs.API('YOUR_API_KEY')
- Making Calls: Use the provided methods to make calls to the MANRS API. For instance, to get ROAs by ASN:
response = api.roa_by_asn('AS16661')
- Development Mode: If you're working in a development environment, set the
dev
flag toTrue
during initialization.
api = manrs.API('YOUR_API_KEY', dev=True)