python-ubersmith
python-ubersmith copied to clipboard
Python client library for the Ubersmith API 2.0
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. ```...
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...
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...
It would be nice if: ``` assert isinstance(dict_response, dict) assert isinstance(int_response, int) ```
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.