나를 위한 코드52 파이썬 엑셀 데이터 입력하기 (xlsx, csv) openpyxl 읽기,쓰기 속도 느림 파일 읽어오기 import openpyxl wb = openpyxl.load_workbook('파일명') ws = wb.worksheets[0] # 전체 row for cell in list(ws) : print(cell[0].value, cell[1].value) # 특정 열 선택 for cell in list(ws.columns)[0] : print(cell[0].value) # 특정 행,열 선택 for cell in ws.iter_rows(min_row=1, max_row=10, min_col=1, max_col=1): print(cell) wb.close() # 수식을 제외하고 데이터만 가져오기 data_only=True wb = load_workbook('파.. 2023. 3. 17. 뷰티풀숩 속도 높이기 html.parser 보다 lxml 이 빠르다. chatgpt 한테 물어봤다. 어떻게 해야 뷰티풀숩 속도를 높일 수 있는지 대답 lxml 사용하기, Use the lxml library: The lxml library is faster than the default parser (html.parser) in BeautifulSoup. You can install lxml using pip: pip install lxml. To use lxml as the parser, pass 'lxml' as the second argument to the BeautifulSoup constructor. select 대신 find 사용하기, Use find instead of select: The find method.. 2023. 3. 14. 이전 1 ··· 8 9 10 11 다음