9
7

More than 1 year has passed since last update.

AWS Lambda(Python)を使うならのまとめ

Last updated at Posted at 2020-03-07

はじめに

AWS Lambda(Python)を使うならやったほうが良いことをまとめてみた。
まだ試していないものも含む。随時更新。

公式

Lambdaを理解

やったほうがよさそうなこと & 関連便利機能

便利な小ネタ

関連

  • pipの最新化(buildspec.ymlに追加)
# pipでアップデートがあるパッケージの一覧を表示
pip list -o
# コマンドで一括アップデート
pip list -o | tail -n +3 | awk '{ print $1 }' | xargs pip install -U
9
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
7