Questions around Python Serverless Functions

Hi @alaucius ,

Execution environments in Lambda are reused, the static initialization code is only executed once. This can be leveraged to establish connections or in my case get an oauth2 token that is reused.

https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtime-environment.html#static-initialization

Any thoughts on supporting this? What about setting the number of vCPUs? What is the default?
Thanks!