일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 우한코로나바이러스
- 어서와한국은처음이지
- 전염병
- 우한코로나
- 봉준호감독통역
- 봉준호감독통역사
- wuhan
- cnn
- red hearse
- parasite
- 신종코로나
- everybody wants you
- 치앙마이
- 미중
- 우한
- 확진자수
- sharonchoi
- 코로나바이러스
- 우한 코로나
- 중국외교부
- 웨일즈
- 최성재
- 정은경 본부장님
- Bolton
- 코로나
- 조현병
- 창궐
- 필리핀사망
- 코로나19
- 진짜영웅
- Today
- Total
오지's blog
kill `ps -ef | grep 프로세스이름 | awk '{print $2}'` ex. airflow관련 프로세스 죽이기 kill -9 `ps -ef|grep airflow|awk '{print $2}'`
https://medium.com/analytics-vidhya/speed-up-bulk-inserts-to-sql-db-using-pandas-and-python-61707ae41990 Speed up Bulk inserts to SQL db using Pandas and Python This article gives details about 1.different ways of writing data frames to database using pandas and pyodbc 2. How to speed up the… medium.com
\특정문자.*$ ex1. :이후의 특정문자 모두 선택 \:.*$ ex2. 세미콜론 이후의 모든 문자 \;.*$ 특정문자이전 모두선택 ^.* ex. pyc이전 모두 선택 ^.*pyc
if __name__ =="__main__": dict_arr={"val1":"key1", "val2":"key2"} list_dict_arr1 = [dict_arr] list_dict_arr2=list(dict_arr) for item in list_dict_arr1: print(item) for item in list_dict_arr2: print(item) 결과 {'val1': 'key1', 'val2': 'key2'} val1 val2
ip address가 맞음에도 다음과 같이 unknown server host 에러가 발생한다. 원인: ip주소를 읽을때 앞 패스워드 입력시 reserved word가 있어서 인터프리터 입장에서 ip주소를 오해함에서 문제가 발생 해결 방법: password = urllib.parse.quote_plus(f"{dbinfo['MARIADB_PWD']}") 다음과 같이 password자체를 connection string에 포함하지 말고 구문분석해주는 urllib라이브러리를 이용하여 password를 connection string에 포함한다. 아래는 예제코드 def dbcon(): with open("dbinfo.json") as fp: dbinfo = json.loads(fp.read()) # dbconn..