Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 500 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 500 Bytes

Canopy n. A python SDK for Cisco Meeting Server (Acano).

The full documentation can be viewed here: http://canopy.readthedocs.io/en/latest/

Requires: Python 3

Getting started, quickly:

acano_vm_ip = "192.168.12.100"
username = "admin"
password = "admin"

a = Acano(acano_vm_ip, username, password)

coSpace_id = a.create_coSpace()["@id"]

print(a.modify_coSpace(coSpace_id, payload = {
	"name" : "George"
	}))
print(a.get_coSpace(coSpace_id))
print(a.delete_coSpace(coSpace_id))