Wiki source code of Python AWS
Last modified by Douglas Bower on 2026/02/04 04:05
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | **S3** | ||
| 2 | How keys and separators work with Prfix and Delimiter | ||
| 3 | [[https://docs.aws.amazon.com/AmazonS3/latest/dev/ListingKeysHierarchy.html]] | ||
| 4 | |||
| 5 | [[https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/GettingStarted.Python.03.html]] | ||
| 6 | |||
| 7 | [[https://docs.aws.amazon.com/cli/latest/userguide/cli-config-files.html]] | ||
| 8 | |||
| 9 | [[https://aws.amazon.com/developers/getting-started/python/]] | ||
| 10 | |||
| 11 | [[http://boto3.readthedocs.io/en/latest/guide/quickstart.html]] | ||
| 12 | |||
| 13 | Interesting Examples: | ||
| 14 | |||
| 15 | [[http://boto3.readthedocs.io/en/latest/guide/examples.html]] | ||
| 16 | |||
| 17 | [[https://github.com/boto/boto3-sample/blob/master/transcoder.py]] | ||
| 18 | |||
| 19 | [[http://boto3.readthedocs.io/en/latest/guide/s3-example-creating-buckets.html]] | ||
| 20 | |||
| 21 | [[boto3-sample-transcoder.py at master · boto-boto3-sample>>https://github.com/boto/boto3-sample/blob/master/transcoder.py]] | ||
| 22 | |||
| 23 | Sophisticated S3 Examples | ||
| 24 | [[dlow · PyPI>>https://pypi.org/project/dlow/#history]] | ||
| 25 | |||
| 26 | Python Lambda Information | ||
| 27 | [[https://docs.aws.amazon.com/lambda/latest/dg/python-programming-model-handler-types.html]] | ||
| 28 | |||
| 29 | [[http://boto3.readthedocs.io/en/latest/reference/services/lambda.html#Lambda.Client.invoke]] | ||
| 30 | |||
| 31 | [[https://www.twilio.com/blog/2017/05/send-sms-text-messages-aws-lambda-python-3-6.html]] | ||
| 32 | |||
| 33 | [[https://medium.com/@stephinmon.antony/aws-lambda-with-python-examples-2eb227f5fafe>>https://medium.com/%40stephinmon.antony/aws-lambda-with-python-examples-2eb227f5fafe]] | ||
| 34 | |||
| 35 | [[https://codeburst.io/aws-lambda-functions-made-easy-1fae0feeab27]] | ||
| 36 | |||
| 37 | [[https://www.fullstackpython.com/blog/aws-lambda-python-3-6.html]] | ||
| 38 | |||
| 39 | [[https://docs.aws.amazon.com/lambda/latest/dg/get-started-create-function.html]] | ||
| 40 | |||
| 41 | How to get response from Lambda - Synchronously. Also some information on how to return a json object : | ||
| 42 | return json.dumps(obj) and then decode in calling routine: | ||
| 43 | |||
| 44 | Or possibly JSON.parse(sampleData)); where sampleData is a string of jason data. {data1:{key1:value1, key2:value2}} | ||
| 45 | |||
| 46 | [[https://stackoverflow.com/questions/36784925/how-to-get-return-response-from-aws-lambda-function]] | ||
| 47 | |||
| 48 | Interesting article on returning value from lambda | ||
| 49 | [[https://stackoverflow.com/questions/43438966/return-variables-in-aws-lambda]] | ||
| 50 | |||
| 51 | ---- | ||
| 52 | **Originally created:** 2018-04-12 03:12 |