demo code error (pip installing the wrong version)
When initializing the client with search keywords, demo code says: keywords = ["word1", "word2"] client = pornhub.PornHub(keywords) But given the params of Pornhub is init(self, ProxyIP=None, ProxyPort=None, keywords=[], *args), the demo code actually assigns keywords to the ProxyIP, which took me some time to troubleshoot this minor error.
Correct demo code should be: keywords = ["word1", "word2"] client = pornhub.PornHub(keywords=keywords) , where the input is assign to the keywords param
Hmm, as far as I remember, I changed it in pull request #13
I think I'm starting to figure out where these errors come from.
Did you install the package via pip?
Hmm, as far as I remember, I changed it in pull request #13 I think I'm starting to figure out where these errors come from. Did you install the package via
pip?
Yeah, I did pip3 install pornhubapi
Hmm, as far as I remember, I changed it in pull request #13 I think I'm starting to figure out where these errors come from. Did you install the package via
pip?
Okay, I see what your saying, it seems like I have installed a different version (pornhubapi-0.1.0) of the module, but I am not sure why this is the case since I used pip
I tried to install the package using pip + git, but it fails because there is no setup.py in the library
It works when I re-install the package manually into the site-packages folder
Hmm, as far as I remember, I changed it in pull request #13 I think I'm starting to figure out where these errors come from. Did you install the package via
pip?Okay, I see what your saying, it seems like I have installed a different version (pornhubapi-0.1.0) of the module, but I am not sure why this is the case since I used pip
pip is not updated to the current version, it remains only to wait for @sskender to do this, he is the owner of the repository. I here just send pull requests from time to time
Hmm, as far as I remember, I changed it in pull request #13 I think I'm starting to figure out where these errors come from. Did you install the package via
pip?Okay, I see what your saying, it seems like I have installed a different version (pornhubapi-0.1.0) of the module, but I am not sure why this is the case since I used pip
pipis not updated to the current version, it remains only to wait for @sskender to do this, he is the owner of the repository. I here just send pull requests from time to time
Cool, np, I think this issue should be considered as solved, thx
It is suggested that I leave this issue open until the installation from pip is correct
At the moment pip version is maintained by @FormerlyChucks
If the issue stays unresolved I will create another pip package.
Update:
There will be an official release soon, in the meantime please use the source code from GitHub and NOT pip library.