gocardless-pro-python icon indicating copy to clipboard operation
gocardless-pro-python copied to clipboard

GoCardless Pro Python Client

Results 11 gocardless-pro-python issues
Sort by recently updated
recently updated
newest added

gocardless-pro 1.42.0 When I used `client.payments.create(params=params)`, throws error: gocardless_pro.errors.MalformedResponseError: Malformed response received from server Everything worked fine before

In our integration with GoCardless we need to be able to use a proxy to communicate with the API. Currently there is no option available in the library to do...

Lately our calls to GoCardless are taking an excessive amount of time and are even causing timeouts in our wsgi. Calls to [`BaseService._perform_request`](https://github.com/gocardless/gocardless-pro-python/blob/c97b66fa88685b06d1d8e13908a78e3cf0cde9f1/gocardless_pro/services/base_service.py#L31-L41) are all using hardcoded settings, e.g: [`RedirectFlowsService.create`](https://github.com/gocardless/gocardless-pro-python/blob/c97b66fa88685b06d1d8e13908a78e3cf0cde9f1/gocardless_pro/services/redirect_flows_service.py#L37-L39)....

The API documentation has [a ton of errors](https://developer.gocardless.com/pro/2015-07-06/#errors-invalid-api-usage-errors) listed, would it be possible to have these exact errors/exceptions be raised by the library? Currently we have to check for the...

gocardless-pro==1.49.0 When I delete a customer, the delete works, but the return fails. ``` Traceback (most recent call last): File ".../lib/python3.10/site-packages/requests/models.py", line 974, in json return complexjson.loads(self.text, **kwargs) File ".../lib/python3.10/site-packages/simplejson/__init__.py",...

This pull request was automatically created from the [`gocardless/gocardless-pro-python-template`][1] repository by the `push-files` action ([workflow run][2]). [1]: https://github.com/gocardless/gocardless-pro-python-template [2]: https://github.com/gocardless/gocardless-pro-python-template/actions/runs/14353797496

This pull request was automatically created from the [`gocardless/gocardless-pro-python-template`][1] repository by the `push-files` action ([workflow run][2]). [1]: https://github.com/gocardless/gocardless-pro-python-template [2]: https://github.com/gocardless/gocardless-pro-python-template/actions/runs/15856460344

Hello! Is there anywhere to get OpenApi json file to generate a custom client? For example to use with typed models for requests and do not type parameters as dicts...

The python requests library supports adding a timeout to requests([docs](https://requests.readthedocs.io/en/latest/user/advanced/#timeouts) - [source code](https://github.com/psf/requests/blob/4b9c546aa3f35fca6ca24945376fe7462bb007c4/src/requests/sessions.py#L541)). Would it be possible to expose a way to configure the gocardless-pro-python client (or individual requests) to...