Skip to content

mnx-solutions/automoxapi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

automoxapi

A thin python wrapper for the Automox API

Usage

Log into Automox, navigate to settings and locate and copy the Access Key.

In your python environment, install automoxapi:

pip install automoxapi

In your python project import and create an Automox instance:

from automoxapi import Automox

automox = Automox('thisis-not-areal-accesskey')

for org in automox.get_organizations():
    for server in automox.get_servers(org['id']):
        print(server['display_name'])

For details on interacting with the API visit the website: https://docs.automox.com/api/

About

Thin python wrapper for the Automox API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%