hugomd / snapchat-python

Implementation of the Snapchat protocol in Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Snapchat for Python

Implementation of the Snapchat protocol in Python. Heavily based on php-snapchat.

Example

To get started, download snapchat.py and in another file enter the following:

from snapchat import Snapchat

s = Snapchat()
s.login('USERNAME', 'PASSWORD')

# Send a snapchat
media_id = s.upload(Snapchat.MEDIA_IMAGE, 'filename.jpg')
s.send(media_id, 'recipient')

# Get all snaps
snaps = s.get_snaps()

# Download a snap
s.get_media(snap['id'])

# Clear snapchat history
s.clear_feed()

About

Implementation of the Snapchat protocol in Python

License:MIT License