blob: 78a77c2f4d887e3795dbcbb138d4b36ac228327a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import os
import pynetbox
from app.core.config import settings
def setup_netbox():
return pynetbox.api(
settings.NETBOX_URL,
token=settings.NETBOX_TOKEN,
threading=True,
)
nb = setup_netbox()
|