I need to call a 3rd party API for my Static site. But I don't want to set up a new server just for several endpoints.
How do you set up a serverless function to call a 3rd party API and get the results to the static site? I want to stick with python so I prefer django
Zappa sounds like exactly what you need. It allows you to deploy your Django app on AWS Lambda. There are some Django specific docs as well for extra bits.
I'm using it for 2 different sites so for and I'm about to make it 3. It mostly just works, the only part you need to work out if how to deal with the database if you need one.
Thanks, I will take a look. Before Zappa, I tried to read aws docs but they are just messy.