전체 글34 [파이썬] txt 텍스트 파일 읽기 f = open('파일이름.txt', 'r',-1, "utf-8") lines=[] while True: line = f.readline() if not line: break lines.append(line) f.close() 2020. 6. 12. [파이썬] xlsx 엑셀파일 읽기. pip install openpyxl from openpyxl import load_workbook #data_only=Ture로 해줘야 수식이 아닌 값으로 받아온다. load_wb = load_workbook("/경로/파일이름.xlsx", data_only=True) #시트 이름으로 불러오기 load_ws = load_wb['Sheet1'] #셀 주소로 값 출력 print(load_ws['A1'].value) #셀 좌표로 값 출력 print(load_ws.cell(1,2).value) 2020. 6. 12. jupyter notebook 주피터 IOPub data rate exceeded. 해결방법 IOPub data rate exceeded. The notebook server will temporarily stop sending output to the client in order to avoid crashing it. To change this limit, set the config variable `--NotebookApp.iopub_data_rate_limit`. Current values: NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec) NotebookApp.rate_limit_window=3.0 (secs) 출력 데이터 초과시 발생하는 오류이다. 해결방법 누르면 나타나는 cmd 창에 jupyter notebook --NotebookAp.. 2020. 6. 12. 로그인 사이트 크롤링 #1 크롤링 방법이 구글에 돌아다니는 사이트 외에 처음 보는 사이트를 크롤링 하려하니 이런 저런 방법을 동원하게 됬다. 잠깐 웹해킹 스터디를 할 때 접했던 burp suite 를 활용해서 로그인이 필요한 사이트를 크롤링 해보겠다. https://portswigger.net/burp Burp Suite - Cybersecurity Software from PortSwigger Burp Suite is a leading range of cybersecurity tools, brought to you by PortSwigger. Find out more, and request your free trial of Burp today. portswigger.net Community 버젼으로 다운로드 받는다. 인터넷 옵션.. 2020. 4. 11. 이전 1 ··· 4 5 6 7 8 9 다음