프로그래밍/python
-
dataspell 사용 설정프로그래밍/python 2023. 2. 28. 16:51
python interpreter 설정 설정 - 프로젝트 - python interpreter 에서 add interpreter를 클릭하여 컴퓨터에 설치된 conda 경로를 설정한다. 쥬피터 서버에도 동일하게 anaconda 폴더 위치를 설정한다. 이렇게 설치하고 jupyter 파일을 실행하는데 아래와 같은 오류 발생 Bad file descriptor (C:\ci\zeromq_1616055400030\work\src\epoll.cpp:100) https://stackoverflow.com/questions/65690540/python-stopped-working-on-jupyter-startup This error is related to your pyzmq library. It also trouble..
-
python에서 mysql db 사용하기프로그래밍/python 2022. 9. 13. 15:45
pymysql이 설치가 안되어있다면 pip install pymysql 로 설치를 한다. #pip install pymysql import pymysql conn = pymysql.connect(host='localhost', user='아이디', password='암호', db='디비이름', charset='utf8') 클라이언트의 charset이 제대로 명시되어 있지 않을 경우 한글이 깨질 수 있다. # SQL문 실행 sql = "SELECT * FROM `테이블이름` limit 10" with conn: with conn.cursor() as cur: cur.execute(sql) result = cur.fetchall() for data in result: print(data) print(data..
-
python으로 데이터 수집하기 - 3 ) selenium으로 웹사이트 크롤링하기프로그래밍/python 2022. 8. 11. 18:36
우선 간단하게 사용 예시 from selenium import webdriver driver = webdriver.Chrome('D:\Dropbox\crawler\chromedriver') driver.implicitly_wait(3) # url에 접근한다. driver.get('https://google.com') from selenium import webdriver from time import sleep options = webdriver.ChromeOptions() options.add_argument("window-size=1920x1080") options.add_argument("disable-gpu") options.add_argument("user-agent=Mozilla/5.0 (Ma..