pyats.topology
pyATS Topology: Topology Objects and Testbed YAMLs
What it is and what it does
pyats.topology is the network modeling layer of the pyATS testing framework, a Cisco-developed end-to-end testing ecosystem. It provides object-oriented abstractions for testbeds, devices, interfaces, links, and segments—the core entities in network test environments. Topology definitions are typically loaded from YAML files, where devices, interfaces, and segments are declared; the package then exposes these as Python objects that test code can traverse and query (e.g., device.links, testbed.segments).
The package is designed as a building block within the larger pyATS ecosystem, which emphasizes data-driven, reusable, and scalable test suites. It depends on pyyaml for file parsing, yamllint for validation, and other pyats submodules (datastructures, connections, utils) for integration with the broader framework. It supports Python 3.8 through 3.14 on Linux and macOS, with no Windows support.
Use it for:
- Load and programmatically access network testbed topology from YAML files in automated test scripts.
- Query device interfaces, links, and segments to build dynamic test scenarios based on network structure.
- Integrate topology models with pyATS test cases to enable data-driven network testing workflows.
- Define multi-device network segments (e.g., QINQ) in YAML and reference them from interface configurations.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Models network testbeds, devices, interfaces, links and segments as Python objects, with support for YAML-based topology definitions.
Yes, if you are building test automation within the pyATS ecosystem or need to model and traverse network testbed topology in Python. The package is actively maintained, has no known vulnerabilities, and carries a permissive license. Medium install friction is acceptable for a specialized testing framework. Not recommended if you need Windows support or are not already committed to the pyATS testing model.
Install
pyats-topology on PyPI
pip
pip install pyats-topologyuv
uv add pyats-topologypoetry
poetry add pyats-topologyInstalling pyats.topology
Before you install
Active maintenance with a release 7 days ago. Medium install friction due to 5 runtime dependencies (pyyaml, yamllint, pyats.datastructures, pyats.connections, pyats.utils) and binary wheels for Python 3.10–3.14 across macOS and Linux platforms.
License in practice
Apache 2.0 permissive license allows commercial and private use with minimal restrictions.
Quickstart
pip install pyats.topology
from pyats.topology import Testbed
testbed = Testbed.load('topology.yaml')
devices = testbed.devices
links = testbed.links
Requires Python 3.8 or later; Linux and macOS only (Windows not supported).
Verify before relying
- Whether the package is suitable for dynamic topology updates after initial load.
- Performance characteristics when modeling large testbeds with hundreds of devices.
- Extent of YAML schema validation and error reporting for malformed topology files.
Package facts
| License | Apache 2.0 (permissive) |
| Python support | supports the current Python release (>=3.8) |
| Install friction | medium — platform-specific wheel |
| Runtime dependencies | 5 — pyyaml, yamllint, pyats.datastructures, pyats.connections, pyats.utils |
| Maintenance | actively maintained — 7 days since the last release |
| First released | |
| Downloads | 295,736/month — #7,916 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: pyats_topology-26.7-cp310-cp310-macosx_11_0_universal2.whl; pyats_topology-26.7-cp310-cp310-manylinux2014_aarch64.whl; pyats_topology-26.7-cp310-cp310-manylinux2014_x86_64.whl; pyats_topology-26.7-cp311-cp311-macosx_11_0_universal2.whl; pyats_topology-26.7-cp311-cp311-manylinux2014_aarch64.whl; pyats_topology-26.7-cp311-cp311-manylinux2014_x86_64.whl; pyats_topology-26.7-cp312-cp312-macosx_11_0_universal2.whl; pyats_topology-26.7-cp312-cp312-manylinux2014_aarch64.whl; pyats_topology-26.7-cp312-cp312-manylinux2014_x86_64.whl; pyats_topology-26.7-cp312-cp312-musllinux_1_2_x86_64.whl; pyats_topology-26.7-cp313-cp313-macosx_11_0_universal2.whl; pyats_topology-26.7-cp313-cp313-manylinux2014_aarch64.whl; pyats_topology-26.7-cp313-cp313-manylinux2014_x86_64.whl; pyats_topology-26.7-cp314-cp314-macosx_11_0_universal2.whl; pyats_topology-26.7-cp314-cp314-manylinux2014_aarch64.whl; pyats_topology-26.7-cp314-cp314-manylinux2014_x86_64.whl
Keywords: pyats, topology, testbed, device, interface, links
Tags
More Libraries packages
urllib3 is an HTTP client library that provides…
permissive · top 100 on PyPI
requestsRequests is a Python HTTP library that…
permissive · top 100 on PyPI
pluggyPluggy provides a plugin system that lets you…
permissive · top 100 on PyPI
python-dateutilProvides parsing, arithmetic, and recurrence…
permissive · top 100 on PyPI
sixSix provides utility functions to write Python…
permissive · top 100 on PyPI
pytestpytest is a testing framework that lets you…
permissive · top 100 on PyPI
pyats.aetestpyats.aetest is the test script engine…
permissive · top 15,000 on PyPI
pyats.connectionsProvides device connection abstraction and base…
permissive · top 15,000 on PyPI
pyats.utilspyats.utils provides utility functions and…
permissive · top 15,000 on PyPI
pyats.reporterCollects test results and generates reports for…
permissive · top 15,000 on PyPI
pyats.kleenexStandardizes testbed device preparation,…
permissive · top 15,000 on PyPI
pyatspyATS is Cisco's end-to-end testing framework…
permissive · top 15,000 on PyPI
pyats.logProvides logging format and utilities for…
permissive · top 15,000 on PyPI
yang.connectorProvides NETCONF and gRPC/GNMI client…
permissive · top 15,000 on PyPI
rest.connectorProvides REST API connectivity for network…
permissive · top 15,000 on PyPI
uniconUnicon provides a unified CLI connection…
permissive · top 15,000 on PyPI