Last updated:
0 purchases
pythonpinterest 0.2.0
A simple Python wrapper for Pinterest REST API (Beta) (5.x) ✨ 🍰 ✨
Introduction
This library provides a service to easily use Pinterest REST API for v5.x.
And support Async And sync mode.
More docs has published on https://sns-sdks.lkhardy.cn/python-pinterest/
Using
The API is exposed via the pinterest.Api class and pinterest.AsyncApi class.
INSTANTIATE
You can initial an instance with access token:
# Sync
>>> from pinterest import Api
>>> p = Api(access_token="Your access token")
# Async
>>> from pinterest import AsyncApi
>>> ap = AsyncApi(access_token="Your access token")
Usage
Get pin info:
# Sync
>>> p.pins.get(pin_id="1022106077902810180")
# Pin(id='1022106077902810180', created_at='2022-02-14T02:54:38')
# Async
>>> await ap.pins.get(pin_id="1022106077902810180")
# Pin(id='1022106077902810180', created_at='2022-02-14T02:54:38')
More docs has published on https://sns-sdks.lkhardy.cn/python-pinterest/
TODO
Tests
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.