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

Disqus API bindings for Python

Results 13 disqus-python issues
Sort by recently updated
recently updated
newest added

Add support for requests with access tokens.

This example code ``` paginator = Paginator(api.get, 'trends.listThreads', forum='disqus') for result in paginator: print result ``` throws the error mentioned in the title. Probably a little bit of update in...

After I started ipython3, and typed in the shell `import disqusapi`, it showed `ImportError: No module named 'httplib'`. Seems look like the `disqusapi` isn't supporting `python3`? I'm using `Python 3.5.2...

Add three endpoints missing from interfaces.json added (posts.update, forums.addModerator and forums.removeModerator); Somewhat cosmetic change: Some API calls (notably posts.create with certain args like ip_address) will not work as expected if...

So I'm trying to navigate around the functionality of this library and find the things I need but nothing seems to work at first try unfortunately. I got the first...

I installed disqus-python then tried the basic example with my secret key and public key: ``` pip install disqus-python from disqusapi import DisqusAPI disqus = DisqusAPI(secret_key, public_key) ``` However now...

code like this not working now: ``` disqus.threads.details(forum=settings.DISQUS_WEBSITE_SHORTNAME, **{'thread:ident': 'some_id'}) ``` because thread:ident don't passed validation in __call__ method of Resource class: ``` if not kwargs.get(k): raise ValueError('Missing required argument:...

Hey there :) I'm curious. Do you happen to know when the next version (0.5.0 as the https://github.com/disqus/disqus-python/blob/master/CHANGES states) will be released? I'd like to use this package but I...

update your setup.py to 0.5.0 and update https://pypi.python.org/pypi/disqus-python/0.4.2 please