python-doctl
python-doctl copied to clipboard
A Python wrapper for the Digital Ocean CLI utility — doctl.
Bumps [babel](https://github.com/python-babel/babel) from 2.6.0 to 2.9.1. Release notes Sourced from babel's releases. Version 2.9.1 Bugfixes The internal locale-data loading functions now validate the name of the locale file to be...
Bumps [websockets](https://github.com/aaugustin/websockets) from 5.0.1 to 9.1. Changelog Sourced from websockets's changelog. 9.1 ... May 27, 2021 .. note:: **Version 9.1 fixes a security issue introduced in version 8.0.** Version 8.0...
Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.23 to 1.26.5. Release notes Sourced from urllib3's releases. 1.26.5 :warning: IMPORTANT: urllib3 v2.0 will drop support for Python 2: Read more in the v2.0 Roadmap Fixed...
Bumps [lxml](https://github.com/lxml/lxml) from 4.2.3 to 4.6.3. Changelog Sourced from lxml's changelog. 4.6.3 (2021-03-21) Bugs fixed A vulnerability (CVE-2021-28957) was discovered in the HTML Cleaner by Kevin Chung, which allowed JavaScript...
Bumps [pygments](https://github.com/pygments/pygments) from 2.2.0 to 2.7.4. Release notes Sourced from pygments's releases. 2.7.4 Updated lexers: Apache configurations: Improve handling of malformed tags (#1656) CSS: Add support for variables (#1633, #1666)...
Bumps [jinja2](https://github.com/pallets/jinja) from 2.10 to 2.11.3. Release notes Sourced from jinja2's releases. 2.11.3 This contains a fix for a speed issue with the urlize filter. urlize is likely to be...
There is a typo on [doctl.py#L254](https://github.com/do-community/python-doctl/blob/8602a258fbdf7c526cac969eaa4b97aa026eda1e/doctl.py#L254). ``` return self.do.doctl( "compute", "domain", create, domain, "--ip-address", ip_address ) ``` 'create' needs to be quoted ``` return self.do.doctl( "compute", "domain", "create", domain, "--ip-address",...
I'm a python n00b so maybe it's my error but it seems like I am having some issues using some of the methods. For example, I can do a simple...
I'm just going to fork and add this in for my purposes, but would be nice to allow the public key fingerprint so that login to droplets can be scripted...
I just tried using python-doctl from pip and ran into the missing 'self.do' from droplet creation. This fixes this and a missing deletion at head of master.