Skip to content
/ snappy Public

A driver using selenium in python for snapchat

License

Notifications You must be signed in to change notification settings

Labfox/snappy

Repository files navigation

A snapchat API (webdriver)

Features

Connect to snapchat

import snappy
import selenium.webdriver

snapchat_c = snappy.main.SnapchatCredentials("<your username>", "<your password>")

client = snappy.main.SnapchatClient(selenium.webdriver.Edge(), snapchat_c)

List conversations

client.listConversations()

Get messages list on a conversation

client.getMessagesBacklog(conversation)

Send a message to a conversation

client.sendMessage(conversation, message, cool_down=True)