# Dapr pub/sub In this quickstart, you'll create a publisher microservice and a subscriber microservice to demonstrate how Dapr enables a publish-subcribe pattern. The publisher will generate messages of a specific topic, while subscribers will listen for messages of specific topics. See [Why Pub-Sub](#why-pub-sub) to understand when this pattern might be a good choice for your software architecture. Visit [this](https://docs.dapr.io/developing-applications/building-blocks/pubsub/) link for more information about Dapr and Pub-Sub. > **Note:** This example leverages the Dapr client SDK. If you are looking for the example using only HTTP `requests` [click here](../http). This quickstart includes one publisher: - Python client message generator `checkout` And one subscriber: - Python subscriber `order-processor` ### Run Python message subscriber with Dapr ```bash cd ./order-processor pip3 install -r requirements.txt ``` 2. Run the Python subscriber app with Dapr: ```bash dapr run --app-id order-processor --components-path ../../../components/ --app-port 6001 -- uvicorn app:app --port 6001 ``` ### Run Python message publisher with Dapr 1. Install dependencies: ```bash cd ./checkout pip3 install -r requirements.txt ``` 3. Run the Python publisher app with Dapr: ```bash dapr run --app-id checkout --components-path ../../../components/ -- python3 app.py ``` ```bash dapr stop --app-id checkout dapr stop --app-id order-processor ```