This python library is fairly extensive and easily expanded. It's only issue is it can be pretty slow because the class doesn't create a persistent session making python initiate a new SSL session for every API call during the life of the script. I'm using a modified version where the requests.Session() is initialized in the class __init__ and it's about 3x faster when making a large number of calls during my automation.
https://github.com/pschmitt/guacapy -James On Fri, Dec 17, 2021 at 10:34 AM Nick Couchman <[email protected]> wrote: > On Fri, Dec 17, 2021 at 10:03 AM Craig Sawyer <[email protected]> wrote: > >> I had a need, and created this in python: >> >> https://github.com/csawyerYumaed/pyguacamole >> >> It's certainly not grand, and definitely nothing remotely official, >> but it works for us. Might help you if you write your own in figuring >> out how the API works. >> >> -Craig >> >> > Thanks for sharing, Craig! I also wrote a rudimentary Python script for > some basic Guacamole functions - probably far less complete than yours, but > more examples: > > https://github.com/necouchman/guacamole-python > > -Nick > -- James Scott
