Skip to content
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.

Latest commit

 

History

History
34 lines (20 loc) · 644 Bytes

README.rst

File metadata and controls

34 lines (20 loc) · 644 Bytes

tikapy

tikapy is a simple API client for MikroTik RouterOS written in python3.

Travis CI build status (master)

Installation

$ pip install tikapy

Examples

#!/usr/bin/python3

from tikapy import TikapySslClient
from pprint import pprint

client = TikapySslClient('10.140.66.11', 8729)

client.login('api-test', 'api123')
pprint(client.talk(['/routing/ospf/neighbor/getall']))