3주차 개발일지

22.01.27 Python 시작하기, 기초 공부, 패키지 설치하기 & 사용해보기
https://dandi-coding.tistory.com/11
22.01.27 Python 시작하기, 기초 공부, 패키지 설치하기 & 사용해보기
주의사항 new project 1. location : pythonprac 으로 설정 2. venv 붙었는지 꼭 확인 (안 붙었으면 써주기) 3. base interpreter : python3.8 로 설정 (우리가 설치한거임) 4. create a main ~ 체크해제 오픈..
dandi-coding.tistory.com
22.01.28 python 웹스크래핑(크롤링)
https://dandi-coding.tistory.com/12
22.01.28 python 웹스크래핑(크롤링)
필요한 패키지 - requests / beautiful soup(BS4) * 크롤링 기본 세팅 코드 import requests #import하기 from bs4 import BeautifulSoup headers = {'User-Agent' : 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)..
dandi-coding.tistory.com
22.02.02 DB개괄, pymongo로 DB 조작하기, 웹스크래핑 결과 이용하기
https://dandi-coding.tistory.com/13
22.02.02 DB개괄, pymongo로 DB 조작하기, 웹스크래핑 결과 이용하기
mongoDB는 눈에 보이지 않지만 작동되고 있음 그걸 시각화해서 볼 수 있게 하는 프로그램이 robo3T 데이터 베이스의 목적은 단순 보관이 아니라 잘 활용하기 위해서임 SQL - 엑셀에 가까움. 열,행을
dandi-coding.tistory.com
22.02.02 <3주차 숙제> 지니 뮤직 크롤링하기
https://dandi-coding.tistory.com/14
22.02.02 <3주차 숙제> 지니 뮤직 크롤링하기
import requests from bs4 import BeautifulSoup headers = {'User-Agent' : 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36'} data = r..
dandi-coding.tistory.com