### Install pynetbox-api from Git for Development Source: https://github.com/emersonfelipesp/pynetbox-api/blob/main/README.md Clones the repository, sets up a Python virtual environment, installs dependencies from requirements.txt, and installs the project in editable mode for development. ```Shell git clone https://github.com/emersonfelipesp/pynetbox-api.git cd pynetbox-api python3 -m venv venv source venv/bin/activate python3 -m pip install -r requirements.txt python3 -m pip install -e . ``` -------------------------------- ### Start FastAPI App with Default Settings Source: https://github.com/emersonfelipesp/pynetbox-api/blob/main/README.md Starts the FastAPI application using uv with default host and port settings. This is primarily for testing the library's features. ```Shell uv run fastapi dev ``` -------------------------------- ### Install pynetbox-api via pip Source: https://github.com/emersonfelipesp/pynetbox-api/blob/main/README.md Installs the pynetbox-api library from PyPI using pip for production use. ```Shell pip install pynetbox-api ``` -------------------------------- ### Start FastAPI App with Custom Host and Port Source: https://github.com/emersonfelipesp/pynetbox-api/blob/main/README.md Starts the FastAPI application using uv, specifying a custom host (0.0.0.0) and port (8800) to listen on all network interfaces. ```Shell uv run fastapi dev --host 0.0.0.0 --port 8800 ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.