PNUTpy aims to be an easy-to-use Python library for interacting with the pnut.io API.
To install, simply:
$ pip install pnutpy
In order to use PNUTpy, You'll need an access token. If you don't already have one, first create an app, and then generate an access token for your app.
import pnutpy
pnutpy.api.add_authorization_token(<Access Token Here>)
# Create a post
post, meta = pnutpy.api.create_post(data={'text':'Hello pnut.io from pnutpy!'})