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

Python library for the Stripe API.

Results 37 stripe-python issues
Sort by recently updated
recently updated
newest added

Hello, I want to delete a price inside a product, I can do it in the Stripe dashboard, but I can’t do this using API Code: ``` stripe.Price.delete("price_HLez6Zi58HejNP") ``` Result:...

future
feature-request

### Describe the bug Incoming webhook events have a `request` data attribute, but the `event` instance already has a `request` bound method, so we end up with a bit of...

bug
future

Hi folks, I was wondering what it would take to get this library to support asyncio. This would mean it would be possible to use Python 3.5+ [async/await coroutines](https://www.python.org/dev/peps/pep-0492/) with...

future

### Describe the bug # Bug location auto-pagination in python library # Description When I call the charge API using the python library and set the limit to 100, with...

bug

:eyes: Some source code analysis tools can help to find opportunities for improving software components. :thought_balloon: I propose to [increase the usage of augmented assignment statements](https://docs.python.org/3/reference/simple_stmts.html#augmented-assignment-statements "Augmented assignment statements") accordingly....

### Describe the bug When trying to clear out the list of previously set blocked_categories on a cardholder, calling ```Python stripe.issuing.Cardholder.modify( "ich_...", spending_controls={'blocked_categories': []}, stripe_account="acct_...", ) ``` returns successfully but...

bug

Hello, I've recently upgraded my stripe library version to the latest v2.67.0 and after checking my app I saw all the stripe related endpoints failing. Checking my AWS Lambda CloudWatch...

Hello, It would be great to allow users to format logs in json format instead of the hardcoded `logfmt` format in the library. For those looking to make this work,...

I think adding type annotations to this library would be helpful for mypy users.

future

While it is entirely possible to set the `api_key` of the imported stripe object, when using the stripe object in various locations in a project it is inconvenient to require...

speculative