Patreon / patreon-python

Interact with the Patreon API via OAuth
Apache License 2.0
122 stars 33 forks source link

0.5.1 not available on pypi.org #30

Open lent1 opened 4 years ago

lent1 commented 4 years ago

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 this version on pypi?

jeffheaton commented 4 years ago

Agree, just trying to follow the instructions on README you will get this error:

AttributeError: 'API' object has no attribute 'get_identity'

This is due to the fact that get_identity is not a part of the version currently on pipy.

jenyeeiam commented 4 years ago

Any resolution to this??

nstephenh commented 4 years ago

I would also like to see this updated.

kbyatnal commented 4 years ago

In the meantime, you can run (if you're using pipenv) pipenv install -e git+https://github.com/Patreon/patreon-python.git@master#egg=patreon to get the latest version. Haven't tried for pip but I imagine it's very similar.

Ganonmaster commented 4 years ago

I just ran into this issue myself, and having the correct version up on PyPI would have saved me some time. Since this repository has seen virtually no changes for over a year, it's probably safe to push the update?

Also; should we be concerned that the primary contributors to the repository are no longer with the company?

DrLarck commented 4 years ago

In the meantime, you can run (if you're using pipenv) pipenv install -e git+https://github.com/Patreon/patreon-python.git@master#egg=patreon to get the latest version. Haven't tried for pip but I imagine it's very similar.

Inspired by this method, I've installed this repo as a python module using pip by typing the following command :

pip install git+https://github.com/Patreon/patreon-python.git@master#egg=patreon
AznStevy commented 3 years ago

The version for python3.8 (which is what the rest of my project is in) is 0.3.1. Is there no way to update to 0.5.0+?

themagic314 commented 3 years ago

pip install --upgrade https://github.com/Patreon/patreon-python/tarball/master

geerlingguy commented 5 months ago

Coming here years after the fact... it feels strange none of the Patreon API libraries have been updated in 6 or so years :(

I thought it would be easy to write a little script to grab patron names by tier but am finding it to be frustrating, probably easier to just interact with the API endpoints directly instead of using this library!