일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- raspberry
- 충전기
- AWS
- 급속충전기
- thread
- esp8266
- 라즈베리파이
- 전기차충전
- 전기차충전기
- 전기차
- homeassistant
- 파이썬
- dynamodb
- 펌웨어
- 홈어시스턴트
- 디자인패턴
- everon
- Android
- YMODEM
- flask
- 플라스크
- IOT Core
- 에버온
- 안드로이드
- STM32
- lambda
- OCPP
- 보안
- 서버리스
- 완속충전기
- Today
- Total
목록서버시스템 (120)
Louie NRT Story
Copy Application .exe File in this folder.
[Reference] https://www.qwiklabs.com
[Reference] https://www.qwiklabs.com
[출처] https://www.qwiklabs.com
[Reference] https://www.qwiklabs.com
Download file from S3 and upload this again.1234567891011121314151617181920import boto3import osimport sysimport urllib s3_client = boto3.client('s3') def handler(event, context): bucket = 'codebuild-oregon-louie0724-output-bucket' key = 'test01.png' raw_key = urllib.parse.unquote_plus(key) download_path = '/tmp/{}'.format(key) upload_path = '/tmp/{}'.format(key) s3_client.download_file(bucket, ..
Create Table12345678910111213141516171819202122232425262728293031323334import boto3 dynamodb = boto3.resource('dynamodb', region_name='us-west-2')table = dynamodb.create_table( TableName='Movies', KeySchema=[ { 'AttributeName': 'year', 'KeyType': 'HASH' #Partition key }, { 'AttributeName': 'title', 'KeyType': 'RANGE' #Sort key } ], AttributeDefinitions=[ { 'AttributeName': 'year', 'AttributeType..