Getting started with the Dapr actor Python SDK

    The Dapr actor package allows you to interact with Dapr virtual actors from a Python application.

    An actor service hosts the virtual actor. It is implemented a class that derives from the base type and implements the interfaces defined in the actor interface.

    An actor client contains the implementation of the actor client which calls the actor methods defined in the actor interface.

    1. import asyncio
    2. async def main():
    3. # Create proxy client
    4. resp = await proxy.GetMyData()