zappa can easily be used to launch flask applications. But it only creates one lambda function for each application. Can I have a separate lambda function for each python function that I declare?
You can create trigger events for the command as shown below and zappa will call your python function:
{ "command": "mymodule.myfunction" }
Your application does not have to be a wsgi application. You can create each lambda function individually and download the same zappa package as zip on each of them.
SO, zappa -wsgi, .
Zappa AWS Lambda , WSGI, - :
def foo(event, context): print('foo bar') return 'lambda triggered!'
{ "dev": { "lambda_handler": "myapp.foo", ... } }
AWS Lambda "" , .
Source: https://habr.com/ru/post/1679999/More articles:Elixir mix file -: applications vs: extra_applications - when to use which? - elixirHow to restore a previous version as a new commit in Git? - gitApache Beam - Integration Test with Unlimited PCollection - javaDoes Scala Iterator ++ (concat) use a recursively stack safe? - iteratorMerge two tables in LIKE, but for whole rows they are not part of rows - regexhttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1680000/error-deploying-go-apps-to-google-app-engine&usg=ALkJrhgbwSUvcjnb6rrJiZvZJHIqEC6iewHow can I write this combinatorics algorithm more efficiently? - algorithmCSS - Sharing @Keyframes settings with animation mode and fill animation? - javascriptTS1148 ~ How to "import" using -module: "none" and typescricpt 2.x - javascripthttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1680004/how-to-use-typescript-definition-files-from-the-types-npm-repository-when-module-is-none&usg=ALkJrhhEeHjBZWfkSZK7vwYyGBS-425o3wAll Articles