Skip to content

temporalio/email-subscription-project-python

Repository files navigation

Subscription tutorial

Install

Install poetry.

curl -sSL https://install.python-poetry.org | python3 -

Install project dependencies.

poetry install

Run

poetry run python run_worker.py
poetry run python run_flask.py

Terminate

temporal workflow terminate --workflow-id=example@example.com

Curl commands

subscribe

Use the curl command to send a POST request to http://localhost:5000/subscribe with the email address as a JSON payload.

curl -X POST -H "Content-Type: application/json" -d '{"email": "example@example.com"}' http://localhost:5000/subscribe

get-details

The email address should be included in the query string parameter of the URL.

curl -X GET -H "Content-Type: application/json" http://localhost:5000/get_details?email=example@example.com

Unsubscribe

Send a DELETE request with the email address in a JSON payload:

curl -X DELETE -H "Content-Type: application/json" -d '{"email": "example@example.com"}' http://localhost:5000/unsubscribe

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages