Python library to interact with MikroTik SwitchOS Lite
Caution
This library is deprecated and no longer maintained.
It has been replaced by python-switchos, which supports SwitchOS and SwitchOS Lite.
-
Get identity, model, serial number, OS version, MAC and IP address
-
Read cpu temperature, current, voltage, and power consumption of the switch
-
List ports with name, status, speed, duplex mode etc.
-
Check PoE status, power usage, voltage, and current per port
Install via pip:
pip install python-swos-liteRequires Python 3.10 or higher
- demjson3 3.0.6 or higher - for tolerant JSON parsing
Example with httpx
async def main(host, user, password):
auth = DigestAuth(user, password)
async with AsyncClient(auth=auth) as session:
client = Client(createHttpClient(session), host)
print(await client.fetch(SystemEndpoint))Example with aiohttp
async def main(host, user, password):
digest_auth = DigestAuthMiddleware(login=user, password=password)
async with ClientSession(middlewares=(digest_auth, )) as session:
client = Client(createHttpClient(session), host)
return await client.fetch(SystemEndpoint)This library targets MikroTik switches running SwitchOS Lite and has been tested with:
- MikroTik CSS610-8P-2S+ running Switch OS Lite 2.19
Other models with SwitchOS Lite may also work.
MIT License
Contributions are welcome!
Feel free to open issues, submit pull requests, or suggest features.