Disqus API wrapper using tapioca
Project description
# tapioca-disqus
Disqus API wrapper implemented with tapioca.
## Installation
```
pip install tapioca-disqus
```
## Documentation
This wrapper can execute any Disqus Web API method listed in [Disqus API docs](https://disqus.com/api/docs/).
For example, if we want to call __threads/details/__ method we can do the following:
``` python
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](http://tapioca-wrapper.readthedocs.org/en/latest/quickstart/)
- Explore this package using ipython
- Have fun!
Disqus API wrapper implemented with tapioca.
## Installation
```
pip install tapioca-disqus
```
## Documentation
This wrapper can execute any Disqus Web API method listed in [Disqus API docs](https://disqus.com/api/docs/).
For example, if we want to call __threads/details/__ method we can do the following:
``` python
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](http://tapioca-wrapper.readthedocs.org/en/latest/quickstart/)
- Explore this package using ipython
- Have fun!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tapioca-disqus-0.1.1.tar.gz
(10.0 kB
view details)
File details
Details for the file tapioca-disqus-0.1.1.tar.gz
.
File metadata
- Download URL: tapioca-disqus-0.1.1.tar.gz
- Upload date:
- Size: 10.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4a14d741ee41b22f5334d66f6fafd4028bbda1f89e730ff59c5785ac67676d8 |
|
MD5 | 37e86f374f65a2f4e6a5e3e514d2a989 |
|
BLAKE2b-256 | ee08713d25e2a8efd52a033310b05d932c7197f8659d8bb3b9c6deb712c347e3 |