The documentation you are viewing is for Dapr v1.7 which is an older version of Dapr. For up-to-date documentation, see the latest version.

Python

Dapr offers a variety of packages to help with the development of Python applications. Using them you can create Python clients, servers, and virtual actors with Dapr.

Available packages

  • Dapr client for writing Python applications to interact with the Dapr sidecar and other Dapr applications
  • Dapr actor for creating and interacting with stateful virtual actors in Python
  • Extensions for adding Dapr capabilities to other Python frameworks

Install the Dapr module


pip install dapr

pip install dapr-dev

Try it out

Clone the Python SDK repo to try out some of the examples.

git clone https://github.com/dapr/python-sdk.git

More information