Read-only NetBox CLI with a classic command surface and an interactive shell.
Project description
NetBox CLI
What It Is
netbox-cli is a read-only Python CLI for NetBox.
The package is published on PyPI as netbox-explorer, while the installed command remains netbox.
It provides two aligned interfaces:
- a standard command line for automation, documentation, and copy/paste use
- an interactive shell for faster exploration, using the same service layer and command semantics
The CLI is the primary interface.
The shell is a convenience layer on top of it.
Features
- explicit configuration with
netbox init - config validation and connectivity checks with
netbox config test - discovery of apps, endpoints, filters, and known choices from the NetBox API
- read-only
list,get, and grouped globalsearch - Rich tables for interactive terminal output
- JSON and CSV output for automation and piping
- interactive shell with history, contextual navigation, and autocomplete
- local metadata caching for API root, schema, and endpoint
OPTIONS
Install
Using a virtual environment is the recommended install path.
Install from PyPI
Use this for the normal published package install.
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install netbox-explorer
Install from GitHub
Use this when you want to try the tool quickly without cloning the repository.
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install "git+https://github.com/fciarfella/netbox-cli.git"
Install a tagged release from GitHub
Use a tagged release when you want a specific published version from GitHub.
python3 -m pip install "git+https://github.com/fciarfella/netbox-cli.git@v0.1.0"
Install from a local clone
Use a local clone when you want to develop the project or make local changes.
git clone https://github.com/fciarfella/netbox-cli.git
cd netbox-cli
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install -e .
Install development dependencies
python3 -m pip install -e ".[dev]"
Verify the install
netbox --help
netbox --version
Reactivate the environment
If you open a new shell later, reactivate the environment first:
source .venv/bin/activate
Configuration
config.toml is the primary configuration source for the tool. Environment variables are supported as optional overrides, but normal usage should start with an explicit config file.
Examples in this README assume you have access to a reachable NetBox instance and a valid API token. DNS plugin examples apply only when that plugin is installed and exposed by your NetBox API.
Create config:
netbox init
Example:
netbox init \
--url https://netbox.example.com \
--token YOUR_TOKEN \
--default-format table \
--default-limit 25
Validate config, token, and connectivity:
netbox config test
Show config, cache, and history paths:
netbox config paths
Clear cached metadata:
netbox cache clear
Typical paths:
~/.config/netbox-cli/config.toml
~/.cache/netbox-cli/
~/.local/state/netbox-cli/shell-history
Optional environment variable overrides:
NETBOX_URL
NETBOX_TOKEN
NETBOX_CLI_DEFAULT_FORMAT
NETBOX_CLI_DEFAULT_LIMIT
NETBOX_CLI_TIMEOUT
NETBOX_CLI_VERIFY_TLS
NETBOX_CLI_CONFIG
NETBOX_CLI_CONFIG_DIR
NETBOX_CLI_CACHE_DIR
NETBOX_CLI_HISTORY_DIR
NETBOX_CLI_HISTORY_PATH
CLI Quick Start
Common first commands:
netbox config test
netbox list
netbox list dcim
netbox filters dcim/devices
netbox list dcim/devices status=active
netbox list dcim/devices q=router01 --cols name,site,status
netbox get dcim/devices id=1490
netbox search router01 --cols id,name,site,status
CLI Examples
Discover apps and endpoints:
netbox list
netbox list dcim
Compatibility commands remain available:
netbox apps
netbox endpoints dcim
Inspect endpoint filters and known choices:
netbox filters dcim/devices
List rows from an endpoint:
netbox list
netbox list dcim
netbox list dcim/devices status=active
netbox list dcim/devices router01
netbox list dcim/devices router 01
netbox list dcim/devices router01 status=active
netbox list dcim/devices site=dc1 site=lab
netbox list dcim/devices status=active status=offline
netbox list dcim/devices q=router01
netbox list dcim/devices name__ic=router
netbox list dcim/devices q=router01 --cols name,site,status
netbox list plugins/netbox-dns/records q=198.51.100.10 --cols zone,name,type,value,status
The CLI list command follows the same exploration flow and shorthand as the shell:
netbox list
netbox list dcim
netbox list dcim/devices
Inside an endpoint path, bare terms are treated as q=...:
netbox list dcim/devices router01
This behaves like:
netbox list dcim/devices q=router01
Fetch exactly one object:
netbox get dcim/devices id=1490
Run global search across curated endpoints:
netbox search router01
netbox search router01 --cols id,name,site,status
--cols takes a comma-separated list of fields and overrides the default profile columns for list and search.
Use netbox search <term> when you want a broad search across multiple object types.
Use netbox list to explore progressively:
netbox listshows top-level appsnetbox list <app>shows endpoints for that appnetbox list <app>/<endpoint>lists records from that endpoint
Use netbox list <endpoint> q=<term> when you already know the endpoint you want to search inside.
Examples:
netbox search router01
netbox list dcim/devices q=router01
Actual supported filters depend on the target endpoint and the schema exposed by your NetBox instance. For endpoint-specific lookups, netbox filters <app>/<endpoint> shows what the tool has discovered.
For multi-value filters, repeat the parameter instead of using a comma-separated value:
netbox list dcim/devices site=dc1 site=lab
This is separate from NetBox options like ordering, where comma-separated values are still the normal form:
netbox list dcim/devices ordering=name,-serial
Search Behavior
netbox search <term> searches a curated set of endpoints and groups results by object type.
The v1 search set includes:
dcim/devicesvirtualization/virtual-machinesipam/ip-addressesipam/prefixesipam/vlansdcim/sitesdcim/racksplugins/netbox_dns/recordswhen available
Ranking prefers:
- exact matches
- prefix matches
- substring matches
Search output is grouped by endpoint and shows the endpoint path, match count, and a useful default column set for each group.
Interactive Shell
Launch the shell:
netbox shell
The prompt always shows the current path, output format, and row limit:
netbox:/ [table|15]>
Typical session:
netbox:/ [table|15]> list
netbox:/ [table|15]> cd dcim
netbox:/dcim [table|15]> list
netbox:/dcim [table|15]> cd devices
netbox:/dcim/devices [table|15]> filters
netbox:/dcim/devices [table|15]> list status=active
netbox:/dcim/devices [table|15]> open 1
Change output format and row limit:
netbox:/dcim/devices [table|15]> format json
netbox:/dcim/devices [json|15]> limit 5
netbox:/dcim/devices [json|5]> get name=router01
Search and open:
netbox:/ [table|15]> search router01
netbox:/ [table|15]> open 2
Inside an endpoint context, list supports a shorthand search term:
netbox:/dcim/devices [table|15]> list web01
This behaves like:
netbox:/dcim/devices [table|15]> list q=web01
Quoted values work the same way:
netbox:/dcim/devices [table|15]> list "router 01"
This behaves like:
netbox:/dcim/devices [table|15]> list q="router 01"
Mixed shorthand and explicit filters also work:
netbox:/dcim/devices [table|15]> list web01 status=active
This behaves like:
netbox:/dcim/devices [table|15]> list q=web01 status=active
If q=... is already present explicitly, the shell does not add a second q.
Repeated filters are supported in the shell the same way they are in the CLI:
netbox:/dcim/devices [table|15]> list site=dc1 site=lab
netbox:/dcim/devices [table|15]> list web01 site=dc1 site=lab
Shell commands:
Navigation:
cd [path]
Inspection:
filters
list [term] [k=v ...]
get [k=v ...]
search <term>
open <index>
Session controls:
cols
cols a,b,c
cols reset
format <table|json|csv>
limit <n>
exit
help
Autocomplete
Shell completion is contextual.
It uses the current shell state plus cached metadata to suggest:
- shell commands
- app names
- endpoint path segments
- filter names for the current endpoint
- known choice values for filters
- known and default columns
- simple enum values such as output formats
Examples:
cd d<TAB> -> dcim
cd /plugins/ne<TAB> -> /plugins/netbox_dns
cd net<TAB> -> netbox_dns
list st<TAB> -> status=
list status=<TAB> -> active offline planned
cols na<TAB> -> name
format j<TAB> -> json
Completion is driven by shell state and cached metadata. If metadata for the current context is missing, the shell may fetch it lazily once and then reuse it for later completions.
Output Formats
CLI and shell share the same renderers.
Available formats:
tablejsoncsv
Use table output for interactive work:
netbox list dcim/devices status=active
Use JSON when you want machine-readable output:
netbox get dcim/devices id=1490 --format json
netbox list dcim/devices q=router01 --cols name,site,status --format json
Use CSV when you want simple pipe-friendly rows:
netbox list dcim/devices status=active --format csv
netbox search router01 --cols id,name,site,status --format csv
In the shell, numbered results are mainly meant for table-mode exploration with open <index>. JSON and CSV still include the index for consistency, but the primary workflow is interactive table output plus open.
Cache
The tool caches a small amount of discovery metadata locally:
- API root
- schema
- endpoint
OPTIONSmetadata
This cache improves discovery, filter help, choice lookups, and autocomplete responsiveness.
Use this command to clear it:
netbox cache clear
netbox cache clear is the supported reset path. There is no --no-cache flag.
Project Layout
The codebase is split by responsibility:
netbox_cli/
app.py
client.py
config.py
discovery.py
query.py
search.py
render.py
cache.py
profiles.py
repl/
shell.py
state.py
commands.py
completer.py
metadata.py
tests/
...
Known Limitations
- v1 is read-only
- the shell is line-oriented, not a full-screen TUI
- autocomplete is best-effort when metadata is incomplete or unavailable
- plugin endpoints are handled gracefully, but depend on what your NetBox instance exposes
- endpoint-specific filter support depends on the schema and metadata provided by your NetBox instance
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file netbox_explorer-0.1.2.tar.gz.
File metadata
- Download URL: netbox_explorer-0.1.2.tar.gz
- Upload date:
- Size: 59.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2448ccc0b3e97d0f8c9636b12145669d14002ceb49545405e0fd073bc671620a
|
|
| MD5 |
0711ddae4bb4cf6f7642c3684541bf44
|
|
| BLAKE2b-256 |
3a31bd2f26e8b903263ea4599d4000bfaf93178d43d1beed760cb80676124a91
|
Provenance
The following attestation bundles were made for netbox_explorer-0.1.2.tar.gz:
Publisher:
publish.yml on fciarfella/netbox-cli
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
netbox_explorer-0.1.2.tar.gz -
Subject digest:
2448ccc0b3e97d0f8c9636b12145669d14002ceb49545405e0fd073bc671620a - Sigstore transparency entry: 1247573079
- Sigstore integration time:
-
Permalink:
fciarfella/netbox-cli@0965db3761677f2eac2938877958b881139230c4 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/fciarfella
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@0965db3761677f2eac2938877958b881139230c4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file netbox_explorer-0.1.2-py3-none-any.whl.
File metadata
- Download URL: netbox_explorer-0.1.2-py3-none-any.whl
- Upload date:
- Size: 46.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
813f0be5aeff1ab98cee11ba6a0271bc4fe15d8c59219693ba76ed43f92ab3c2
|
|
| MD5 |
efdf3fcf8be2a73a0e7dfddae315bc68
|
|
| BLAKE2b-256 |
84e8d0a282742f36f7094214ed45546ac5a30f87cd577174cb841731ef019f95
|
Provenance
The following attestation bundles were made for netbox_explorer-0.1.2-py3-none-any.whl:
Publisher:
publish.yml on fciarfella/netbox-cli
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
netbox_explorer-0.1.2-py3-none-any.whl -
Subject digest:
813f0be5aeff1ab98cee11ba6a0271bc4fe15d8c59219693ba76ed43f92ab3c2 - Sigstore transparency entry: 1247573085
- Sigstore integration time:
-
Permalink:
fciarfella/netbox-cli@0965db3761677f2eac2938877958b881139230c4 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/fciarfella
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@0965db3761677f2eac2938877958b881139230c4 -
Trigger Event:
push
-
Statement type: