Skip to content

jess3/disqus-python

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

disqus-python

Let's start with installing the API:

pip install disqus-python

Use the API by instantiating it, and then calling the method through dotted notation chaining:

from disqusapi import DisqusAPI
disqus = DisqusAPI(secret_key)
disqus.trends.listThreads()

Parameters (including the ability to override version, api_secret, and format) are passed as keyword arguments to the resource call:

disqus.posts.details(post=1, version='3.0')

Documentation on all methods, as well as general API usage can be found at http://disqus.com/api/

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%