python-ubersmith icon indicating copy to clipboard operation
python-ubersmith copied to clipboard

Python client library for the Ubersmith API 2.0

Results 7 python-ubersmith issues
Sort by recently updated
recently updated
newest added

It appears a number of API calls, such as `client.get()`, return `dict` types as part of the results. In the `client.get()` example, the 'access' is part of the results. ```...

Prevent TLS handshake for every damn request.

enhancement

A lot of calls are just [GenericCalls](https://github.com/jasonkeene/python-ubersmith/blob/master/ubersmith/calls/__init__.py#L99-L101) that lack response cleaning. This will take some work but as soon as it is done I will mark the library as 1.0...

enhancement

This api implementation does not respond to redirects very well. For example, lets say you have a site that redirects all traffic from http://ubersmith.site to https://ubersmith.site and the client uses...

enhancement

It would be nice if: ``` assert isinstance(dict_response, dict) assert isinstance(int_response, int) ```

enhancement

Via @theY4Kman: > It's possible to create new modules dynamically. See [this StackOverflow answer](http://stackoverflow.com/questions/3799545/dynamically-importing-python-module/3799609#3799609), and be sure to add the new module to sys.modules.

enhancement