|
api_client = default_client() |
All of these methods (List, Find, Delete, Wait, Show, Create) have a similar api_client = default_client() assignment which overrides any provided api_client parameters.
As this library is currently written it seems impossible to call any of these methods with a non-default client.
Also: I do not want to use the global __client__ variable as I am trying to wrap the cloudconvert library into a more specific use-case library.
cloudconvert-python/cloudconvert/resource.py
Line 117 in 584c7e2
All of these methods (List, Find, Delete, Wait, Show, Create) have a similar
api_client = default_client()assignment which overrides any provided api_client parameters.As this library is currently written it seems impossible to call any of these methods with a non-default client.
Also: I do not want to use the
global __client__variable as I am trying to wrap the cloudconvert library into a more specific use-case library.