Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- list.sorted()
- sort()
- Unknown command: cask
- list to set
- 프로그래머스
- string
- 알고리즘
- zip()
- List 초기화
- sting position
- Algorithm
- 피보나치 수
- Boto3
- cask
- index
- List to String
- list.pop(0)
- RecursionError
- homebrew-core is a shallow clone.
- Python 나머지
- COUNT
- set to list
- Python 몫
- permutations
- List
- python3
- Split
- Python
- 알고리즘 풀이
- Modified Date
Archives
- Today
- Total
목록file name (1)
데이터와 코드로 세상을 바라봅니다.
[AWS] S3 / Lambda / Python / File Name Check / Modified Date : 특정 일자, 파일 명칭 정상 여부 체크 로직
import json import boto3 from datetime import datetime, timedelta src_bucket = '{버킷 명}' file_upload_date = str(datetime(2020, 12, 14).strftime("%Y%m%d")) def check_data_form_yyyymm(yyyymm) : result = False if len(yyyymm) == 6 and yyyymm.isdigit(): result = True return result def get_s3_file_name_list(file_upload_date) : s3 = boto3.client('s3', region_name='ap-southeast-2') response = s3.list_obj..
Code/Python
2021. 1. 5. 14:16