Intelligent Bots Everywhere: Microsoft Bot Framework

This repository contains code for the Python version of the Microsoft Bot Framework SDK, which is part of the Microsoft Bot Framework - a comprehensive framework for building enterprise-grade conversational AI experiences.

This SDK enables developers to model conversation and build sophisticated bot applications using Python. SDKs for JavaScript, .NET and Java (preview) are also available.

To get started building bots using the SDK, see the Azure Bot Service Documentation.

For more information jump to a section below.

  • Build status
  • Packages
  • Getting started
  • Getting support and providing feedback
  • Contributing and our code of conduct
  • Reporting security issues

Build Status

BranchDescriptionBuild StatusCoverage StatusCode Style
Main4.15.0 BuildsBuild StatusCoverage StatusCode style: black

Packages

BuildReleased Package
botbuilder-aiPyPI version
botbuilder-applicationinsightsPyPI version
botbuilder-azurePyPI version
botbuilder-corePyPI version
botbuilder-dialogsPyPI version
botbuilder-schemaPyPI version
botframework-connectorPyPI version
  

Getting Started

To get started building bots using the SDK, see the Azure Bot Service Documentation.

The Bot Framework Samples includes a rich set of samples repository.

If you want to debug an issue, would like to contribute, or understand how the Bot Builder SDK works, instructions for building and testing the SDK are below.

Prerequisites

  • Git
  • Python 3.8.2

Python "Virtual Environments" allow Python packages to be installed in an isolated location for a particular application, rather than being installed globally, as such it is common practice to use them. Click here to learn more about creating and activating Virtual Environments in Python.

Clone

Clone a copy of the repo:

git clone https://github.com/Microsoft/botbuilder-python.git

Change to the SDK's directory:

cd botbuilder-python

Using the SDK locally

To use a local copy of the SDK you can link to these packages with the pip -e option.

pip install -e ./libraries/botbuilder-schema
pip install -e ./libraries/botframework-connector
pip install -e ./libraries/botframework-streaming
pip install -e ./libraries/botbuilder-core
pip install -e ./libraries/botbuilder-ai
pip install -e ./libraries/botbuilder-applicationinsights
pip install -e ./libraries/botbuilder-dialogs
pip install -e ./libraries/botbuilder-azure
pip install -e ./libraries/botbuilder-integration-applicationinsights-aiohttp
pip install -e ./libraries/botbuilder-adapters-slack
pip install -e ./libraries/botbuilder-integration-aiohttp
pip install -e ./libraries/botbuilder-testing

Running unit tests

First execute the following command from the root level of the repo:

pip install -r ./libraries/botframework-connector/tests/requirements.txt
pip install -r ./libraries/botbuilder-core/tests/requirements.txt
pip install -r ./libraries/botbuilder-ai/tests/requirements.txt

Then enter run pytest by simply typing it into your CLI:

pytest

This is the expected output:

============================= test session starts =============================
platform win32 -- Python 3.8.2, pytest-3.4.0, py-1.5.2, pluggy-0.6.0
rootdir: C:\projects\botbuilder-python, inifile:
plugins: cov-2.5.1
...

Download Details:

Author: microsoft

Official Github: https://github.com/microsoft/botbuilder-python 

License: MIT

#microsoft 

Intelligent Bots Everywhere: Microsoft Bot Framework
2.95 GEEK