Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 1.47 KB

File metadata and controls

45 lines (33 loc) · 1.47 KB

Warning

Deprecated — This package was originally in preview, but we have decided to stop maintaining it before General Availability. We recommend testing with Microsoft Teams directly, or with the Agents Playground.

Microsoft Teams DevTools

📖 Documentation

Developer tools for locally testing and debugging Teams applications. Streamlines the development process by eliminating the need to deploy apps or expose public endpoints during development.

Installation

pip install microsoft-teams-devtools

Or if using uv:

uv add microsoft-teams-devtools

Usage

from microsoft_teams.apps import App
from microsoft_teams.devtools import DevToolsPlugin

app = App()
app.use(DevToolsPlugin())

await app.start()
# Open http://localhost:3979/devtools in your browser