humblebundle-python
humblebundle-python copied to clipboard
An unofficial library for querying Humble Bundle
I can break this PR up, but I figure it would be easier for you to merge it in all at once. - Fix login - Add email-based two-factor authentication...
Even basic usage doesn't work at all. ``` import humblebundle client = humblebundle.HumbleApi() client.search_store("ftl") ``` raises me an HumbleParseException: > Traceback (most recent call last): > File "Home.py", line 5,...
Just wanted to try out if the end point is still available. Looks like it isn't. I get the following error message: ```python Traceback (most recent call last): File "examples.py",...
The example doesn't include how to deal with having to solve captchas. The source code which I scanned through only mentions that a signed captcha query and its result are...
When trying to run https://github.com/ajs124/hib-dl-all (which uses this library), I get the following error message: Traceback (most recent call last): File "./hib-dl-all.py", line 31, in client.login(args.username, args.password) File "/usr/local/lib/python3.4/dist-packages/humblebundle-0.1.1-py3.4.egg/humblebundle/decorators.py", line...
After substituting some real credentials, with a clone of the repo (thus current master): ``` $ python examples.py Traceback (most recent call last): File "examples.py", line 21, in order.ensure_subproducts() AttributeError:...
Assuming I comment out a line to avoid #12 , during the iteration, I eventually get ``` Traceback (most recent call last): File "examples.py", line 23, in for subproduct in...
I followed the example and am blocked by a CAPTCHA request: > > > import humblebundle > > > client = humblebundle.HumbleApi() > > > client.login("******_", "**_*****_") > > >...