Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Console EchoBot

To try this sample

  • Clone the repository
git clone https://github.com/Microsoft/botbuilder-python.git

Visual studio code

  • open botbuilder-python\samples\Console-EchoBot folder
  • Bring up a terminal, navigate to botbuilder-python\samples\Console-EchoBot folder
  • type 'python main.py'

Adapters

Adapters provide an abstraction for your bot to work with a variety of environments.

A bot is directed by it's adapter, which can be thought of as the conductor for your bot. The adapter is responsible for directing incoming and outgoing communication, authentication, and so on. The adapter differs based on it's environment (the adapter internally works differently locally versus on Azure) but in each instance it achieves the same goal.

In most situations we don't work with the adapter directly, such as when creating a bot from a template, but it's good to know it's there and what it does. The bot adapter encapsulates authentication processes and sends activities to and receives activities from the Bot Connector Service. When your bot receives an activity, the adapter wraps up everything about that activity, creates a context object, passes it to your bot's application logic, and sends responses generated by your bot back to the user's channel.

Further reading