* Deprecate Cuckoo `host/post/api_path` in favor of `url`.
* Add proxy support for all sandboxes.
* Add `verify_ssl` flag to FireEye class (PR 1 from nbareil).
* Update docstrings, publish new documentation at https://sandboxapi.readthedocs.io/.
Note: Support for Cuckoo `host/port/api_path` will be removed in a future version. If you are currently using this style to initialize `CuckooAPI` objects, please update your code as soon as possible.
Example old code:
Don't do this!
CuckooAPI('192.168.0.0') Deprecated!
CuckooAPI('192.168.0.0', 8090, '/') Deprecated!
Example new code:
Do this instead!
CuckooAPI('http://192.168.0.0:8090/')