This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from datetime import datetime | |
| from Tools.DateParser import convert_to_unix_date # Parse Included In First GIST | |
| __author__ = 'Amir' | |
| from routeros_api.api import RouterOsApiPool | |
| class MKUtils(object): | |
| def __init__(self, router, username='admin', password=''): | |
| if not router: |