A Python client for Pinterest. There's at this point in time no API for Pinterest that one can use, so this client consist of somewhat clumsy code.
Supports the following operations: login, pin, repin, boards, like, comment, search_pins, follow board, create board, follow user, search users, search boards.
If you have downloaded the source code:
python setup.py installPip
pip install pinterest-pinatapython -m unittest discover testspython pinterest_pinata.py youremail yourpassword yourusernamefrom pinata.client import PinterestPinata
pinata = PinterestPinata(email='youremail', password='yourpassword', username='yourusername')
pinata.create_board(name='my test board', category='food_drink', description='my first board')More tests...