Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 703 Bytes

README.rst

File metadata and controls

29 lines (17 loc) · 703 Bytes

PNUTpy: pnut.io API for Python

PNUTpy aims to be an easy-to-use Python library for interacting with the pnut.io API.

Installation

To install, simply:

$ pip install pnutpy

Quick Start

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!'})