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

0.5.1 not available on pypi.org

Open lent1 opened this issue 4 years ago • 8 comments

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?

lent1 avatar Nov 09 '19 23:11 lent1

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.

jeffheaton avatar Jan 06 '20 02:01 jeffheaton

Any resolution to this??

jenyeeiam avatar Jan 19 '20 20:01 jenyeeiam

I would also like to see this updated.

nstephenh avatar Mar 07 '20 18:03 nstephenh

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.

kbyatnal avatar Jun 17 '20 06:06 kbyatnal

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?

Ganonmaster avatar Jul 01 '20 17:07 Ganonmaster

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

DrLarck avatar Aug 05 '20 13:08 DrLarck

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+?

AznStevy avatar Jul 15 '21 06:07 AznStevy

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

themagic314 avatar Oct 08 '21 10:10 themagic314