A simple Python wrapper for Pinterest REST API (Beta) (5.x) ✨ 🍰 ✨
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/
The API is exposed via the pinterest.Api
class and pinterest.AsyncApi
class.
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")
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/
- Tests