Socket
Socket
Sign inDemoInstall

tapioca-disqus

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    tapioca-disqus

Disqus API wrapper using tapioca


Maintainers
1

Readme

tapioca-disqus

Disqus API wrapper implemented with tapioca-wrapper.

Installation

pip install tapioca-disqus

Documentation

This wrapper can execute any Disqus Web API method listed in Disqus API docs.

For example, if we want to call threads/details/ method we can do the following:

from tapioca_disqus import Disqus

disqus = Disqus(api_secret='your-disqus-api-secret')
thread = disqus.threads_details().get(params={'thread': '42'})
print(thread.response.id().data())  # prints '42'

All methods should be called with snake_case naming in order to fit Python convention. If we want to execute forums/listFollowers API method we should use disqus.forums_list_followers() method.

More

  • Learn how Tapioca works here
  • Explore this package using ipython
  • Have fun!

Keywords

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc