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

Interact with the Patreon API via OAuth

Results 11 patreon-python issues
Sort by recently updated
recently updated
newest added

I'm trying to use patreon api with python. patreon-python is a great library but v0.5.1, which use latest api endpoints, is not available on pypi.org. Do you plan to publish...

I see in example you call to patreon.API.get_identity() But when i exactly try the same I get: AttributeError: 'API' object has no attribute 'get_identity' Has it been removed? How do...

Using: https://docs.patreon.com/?python#paging-through-a-list-of-pledges ``` import patreon access_token = '...' # your Creator Access Token api_client = patreon.API(access_token) # Get the campaign ID campaign_response = api_client.fetch_campaign() campaign_id = campaign_response.data()[0].id() # Fetch all...

I want to use the API to fetch data from creators I support on Patreon with my own account. I created a client and found my creator access token. ```python...

I've found a number of users who, according to the Patreon Manager, have their Status set to 'Declined' but when using this API to query the database the pledge attribute...

If the payment has been completed and the payment has expired (cancelled) despite the remaining expiration date, users cannot be imported through `fetch_page_of_pledges`. How can I get it?

Python 2 is no longer maintained and is considered very insecure/bad to be used in new systems. By supporting it, you're advocating to mostly non technical people that they should...

- [x] Fix API.extra_cursor() - [x] Add some missing attributes of resource `member`

Hi, I'm having trouble to get the optional fields from the pledges. I need to get `status` see https://docs.patreon.com/#pledge ```{ "type": "pledge" "id": "attributes": { "amount_cents": // Amount cents in...