1. Python 설치
설치 경로 : C:\Users\유저명\AppData\Local\Programs\Python
pip 위치 : C:\Users\유저명\AppData\Local\Programs\Python\Python310\Scripts
파이썬 다운로드
https://www.python.org/downloads/
2. Visual Studio Code에서 Python 위치 설정
- Command Palette (Ctrl+Shift+P),
- 타이핑 Python: Select Interpreter
- 경로를 잡아준다. ( 1번에서 설치한 위치로)
3. Visual Studio Code 플러그인 설치
- python 검색 : python 설치 (MS 에서 만든걸루)
- Python Extension Pack 설치
4. 필요 라이브러리 설치
PIP 를 실행하려면..커맨드 창에서..다음 경로로 이동....PATH 를 잡아주는 것은 알아서 하면 됨.
C:\Users\유저명\AppData\Local\Programs\Python\Python310\Scripts
pip3 install beautifulsoup4
pip3 install requests
5. 샘플코드 작성
import requests
from bs4 import BeautifulSoup
url = 'https://kin.naver.com/search/list.nhn?query=%ED%8C%8C%EC%9D%B4%EC%8D%AC'
response = requests.get(url)
if response.status_code == 200:
html = response.text
soup = BeautifulSoup(html, 'html.parser')
print(soup)
else :
print(response.status_code)
'IT > PYTHON' 카테고리의 다른 글
Python Library 수동 설치하기 (0) | 2022.09.28 |
---|---|
웹 사이트 자동 입력 하기 (0) | 2022.09.28 |
numpy 와 python 버전이 안 맞을때 (0) | 2022.03.31 |
Celery? (0) | 2021.10.28 |
WSGI란 ? GUNICORN? (0) | 2021.10.28 |
댓글