Cute Running Puppy
본문 바로가기
728x90

전체 글94

크롤링 연습 (기상청 홈페이지) 강의를 통해 파이썬 기초와 크롤링 기초를 배운 후 크롤링을 연습해보기로 했다. 파이썬 기초, 웹스크래핑(크롤링) 기초 2023.01.18 3-1 3주차 설치 파이썬(윈도우 다운로드) https://www.python.org/ftp/python/3.8.6/python-3.8.6-amd64.exe (5주차를 위한) gitbash 다운로드 https://git-scm.com/ Git git-scm.com 3-2 연습 겸 복습 - 스파르타피디아에 Op pingu514.tistory.com 기상청 홈페이지의 황사관측일수를 가져와서 년도별로 황사 관측이 많이된 월을 조회하기로 했다. https://www.weather.go.kr/w/dust/dust-obs-days.do 황사관측일수 - 기상청 날씨누리 개편된 날씨.. 2023. 1. 18.
파이썬 기초, 웹스크래핑(크롤링) 기초 2023.01.18 3-1 3주차 설치 파이썬(윈도우 다운로드) https://www.python.org/ftp/python/3.8.6/python-3.8.6-amd64.exe (5주차를 위한) gitbash 다운로드 https://git-scm.com/ Git git-scm.com 3-2 연습 겸 복습 - 스파르타피디아에 OpenAPI 붙여보기 스파르타피디아 API(GET) http://spartacodingclub.shop/web/api/movie 로딩 후 바로실행 $(document).ready(function(){ listing(); }); function listing() { console.log('화면 로딩 후 잘 실행되었습니다'); } 반복 출력 let star_image = '⭐'.repe.. 2023. 1. 18.
Ajax 2023.01.14 ​ 2-7 Ajax 시작하기 Ajax 기본 골격 $.ajax({ type: "GET", url: "여기에URL을입력", data: {}, success: function (response) { console.log(response) } }) $.ajax({ type: "GET", url: "http://spartacodingclub.shop/sparta_api/seoulair", data: {}, success: function (response) { let rows = response['RealtimeCityAir']['row'] for (let i = 0; i < rows.length; i++){ let gu_name = rows[i]['MSRSTE_NM'] let gu_mise .. 2023. 1. 14.
JQuery 2023.01.13 ​ 2-1 2주차 오늘 배울 것 짝수 홀수 버튼 만들기 let count = 0 function hey(){ count += 1 if (count % 2 == 0){ alert('짝수입니다!') } else { alert('홀수입니다!') } } 영화 기록하기 2-2 JQuery 시작하기 jQuery CDN https://www.w3schools.com/jquery/jquery_get_started.asp jQuery Get Started W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML.. 2023. 1. 14.
728x90