Skip to main content

Python client for FB Messenger Platform Bot

Project description

https://img.shields.io/pypi/v/messengerbot.svg https://img.shields.io/pypi/dm/messengerbot.svg Build Status https://img.shields.io/gratipay/geeknam.svg

Python client for Messenger Platform API

Installation

pip install messengerbot

Usage

Read about Messenger Platform

from messengerbot import MessengerClient, messages, attachments, templates, elements

# Manully initialise client
messenger = MessengerClient(access_token='your_token')

# With env var export MESSENGER_PLATFORM_ACCESS_TOKEN=your_token
from messengerbot import messenger

recipient = messages.Recipient(recipient_id='123')

# Send text message
message = messages.Message(text='Hello World')
request = messages.MessageRequest(recipient, message)
messenger.send(request)

# Send button template
web_button = elements.WebUrlButton(
   title='Show website',
   url='https://petersapparel.parseapp.com'
)
postback_button = elements.PostbackButton(
   title='Start chatting',
   payload='USER_DEFINED_PAYLOAD'
)
template = templates.ButtonTemplate(
   text='What do you want to do next?',
   buttons=[
       web_button, postback_button
   ]
)
attachment = attachments.TemplateAttachment(template=template)

message = messages.Message(attachment=attachment)
request = messages.MessageRequest(recipient, message)
messenger.send(request)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

messengerbot-0.1.4.tar.gz (4.0 kB view details)

Uploaded Source

File details

Details for the file messengerbot-0.1.4.tar.gz.

File metadata

File hashes

Hashes for messengerbot-0.1.4.tar.gz
Algorithm Hash digest
SHA256 f5d019d95736793cae2a249531862371b81fd6b16ce501f78f837e3886cde949
MD5 f889a55baeb21c9e64aecc3dd4904fb3
BLAKE2b-256 e9e5874e7853fc3cd64c87e8a5c013723ecb33ee55eb9d6f7fc4188090b75188

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page