Metadata-Version: 2.4
Name: napalm-tplink-jetstream
Version: 0.1.0
Summary: NAPALM driver for TP-Link Jetstream managed switches
Author: Christian Manivong
License: Apache-2.0
Project-URL: Repository, https://github.com/napalm-automation-community/napalm-tplink-jetstream
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: Apache Software License
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: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: napalm>=4.0.0
Requires-Dist: napalm_device_types>=0.1.0
Requires-Dist: netmiko>=4.0.0
Requires-Dist: netaddr
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: ruff; extra == "dev"

# napalm-tplink-jetstream

NAPALM community driver for **TP-Link Jetstream** managed switches (T1500G, T1600G, T2600G, T3700G and compatible series).

## Tested devices

| Model | Series | Tested |
|---|---|---|
| TL-SG2210P | Jetstream Smart | ✅ |

> More devices from the T1500G, T1600G, T2600G and T3700G series should work as well — contributions welcome.

## Requirements

| Dependency | Minimum version |
|---|---|
| Python | 3.8 |
| NAPALM | 4.0 |
| Netmiko | 4.0 |

## Installation

```bash
pip install napalm-tplink-jetstream
```

Or from source:

```bash
git clone https://github.com/napalm-automation-community/napalm-tplink-jetstream
cd napalm-tplink-jetstream
pip install -e .
```

## Quick start

```python
from napalm import get_network_driver

driver = get_network_driver("tplink_jetstream")
with driver("192.168.0.1", "admin", "admin") as device:
    facts = device.get_facts()
    print(facts)
```

## Implemented getters

| Getter | Status |
|---|---|
| `get_facts` | ✅ |
| `get_interfaces` | ✅ |
| `get_interfaces_ip` | ✅ |
| `get_config` | ✅ |
| `get_arp_table` | ✅ |
| `get_mac_address_table` | ✅ |
| `get_lldp_neighbors` | ✅ |
| `get_lldp_neighbors_detail` | ✅ |
| `get_vlans` | ✅ |
| `cli` | ✅ |
| `is_alive` | ✅ |
| `get_bgp_neighbors` | ❌ Not applicable |
| `load_replace_candidate` | ❌ Not applicable |
| `commit_config` | ❌ Not applicable |

## Optional arguments

| Argument | Default | Description |
|---|---|---|
| `port` | `22` | SSH port |
| `force_no_enable` | `False` | Skip `enable` after login |
| `canonical_int_fmt` | `False` | Use canonical interface names |

Any additional keyword arguments are forwarded to Netmiko.

## Development

```bash
pip install -e ".[dev]"
pytest tests/
```

## License

Apache 2.0 — see [LICENSE](LICENSE).
