목록Home (246)
without haste but without rest
https://docs.python.org/ko/3/whatsnew/3.10.html What’s New In Python 3.10 — Python 3.10.0 문서 Parenthesized context managers Using enclosing parentheses for continuation across multiple lines in context managers is now supported. This allows formatting a long collection of context managers in multiple lines in a similar way as it was previously pos docs.python.org 1. 새로운 구문 기능 (match 구문 추가) 2. zi..
가끔씩 인터프리터가 꼬여서 현재 워크스페이스에서 어떤 인터프리터를 사용하는지 확인해야할 때가 있다. import sys print(sys.path) 다양한 방법들이 있으나 위 방법이 제일 간편했다. How to Find Path Information in Python - dummies In this article, learn about the sources of path information in Python, and how to find path information using two different methods. www.dummies.com
문제 설명 생략 MaxCounters coding task - Learn to Code - Codility Calculate the values of counters after applying all alternating operations: increase counter by 1; set value of all counters to current maximum. app.codility.com 생각보다 시간복잡도 처리에서 오래 걸려서 잘 남기지 않는 ps 포스팅을 남기게 되었다.. 우선 생각나는 대로 풀어보니 88% 점수를 받았고, largest 케이스에서 시간 초과가 났다. 88% 풀이 def solution(N, A): answer = [0] * N max_counter = N + 1 maximum ..
에어플로우 로그에 시간이 안 찍혀서 최신 로그인지 감이 오지는 않는데... 로그 상에서 이미 프로세스 아이디가 존재한다는 내역을 확인했다. airflow home 디렉토리에 있는 airflow-webserver.pid, airflow-webserver-monitor.pid, airflow-scheduler.pid 파일을 제거하고 다시 실행하니까 정상적으로 실행이 된다. 에어플로우를 데몬으로 실행하고 정상적으로 종료하지 않아서, 이미 프로세스가 실행 중으로 간주되어 발생하는 이슈다. 에어플로우를 안전하게 종료하는 방법을 찾아보자.
환경 OS: Ubuntu 20.04 Python: 3.8 Konlpy: 0.5.2 총 4 단계를 거쳐야 한다. 모두 버전 업데이트에 따른 변수 이름 변경이 주요 원인이다. 에러 목록 1. konlpy AttributeError: module 'tweepy' has no attribute 'StreamListener' 2. def _start(self, async): ^ SyntaxError: invalid syntax 3. Konlpy TypeError: startJVM() got an unexpected keyword argument 'convertStrings' 4. AttributeError: module 'six' has no attribute 'ensure_str' 1. konlpy Attrib..
단일 필드 client = Elasticsearch(host="server:9200") result = client.search( index = "news-test", query = { "match": { "@timestamp": "20210929", } } ) 다중 필드 조건 client = Elasticsearch(host="server:9200") result = client.search( index = "news-test", query = { "bool": { "must": [ {"match": {"@timestamp": "20210929"}}, {"match": {"subject": "엘라스틱서치"}}, ] } } )
프로젝트 진행 중 엘라스틱 서치와 키바나를 활용해보던 중에 이전 버전에서는 뜨지 않던 경고 문구가 뜨는데, 상당히 거슬리고 여러번 올라온다. 검색 해보니 7.13버전에서부터 추가되었다고 한다. How to disable Kibana security warning message Here a snapshot of the Stack Management mentioned at Securing access to Kibana | Kibana Guide [7.13] | Elastic where I cannot find the Secure > Roles section nor the Secure > Users section So, question -> How can I add users to Kibana 7.13 ? F..