Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 1.3 KB

File metadata and controls

45 lines (33 loc) · 1.3 KB

Caution

This project is in public preview. We’ll do our best to maintain compatibility, but there may be breaking changes in upcoming releases.

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