nautobot 0.3.0

ergonomic rust client for Nautobot REST API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# examples

all examples use these environment variables:

- `NAUTOBOT_URL` (default: `http://localhost:8000`)
- `NAUTOBOT_TOKEN` (required for auth)
- `NAUTOBOT_INSECURE` (optional, set to `1` to disable tls verification)

run an example:

```bash
cargo run -p nautobot --example status
```

```bash
cargo run -p nautobot --example raw_request
```