Cute Running Puppy
본문 바로가기
728x90

개발일기89

파이썬 기초, 웹스크래핑(크롤링) 기초 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.
부트스트랩, Javascript 사용 2023.01.12 1-10 본격 부트스트랩 써보기 이미지 카드 Components > Card // 컬럼 숫자를 변경한다. ↓ 한 줄에 4 컬럼씩 출력 // ↓ 이미지 경로 입력 // ↓ 제목 입력 여기에 제목이 들어갑니다. // ↓ 내용 입력 여기에 내용이 들어가지요 꿀팁 - 이모티콘 모음 ⭐⭐⭐ (별 표기) https://kr.piliapp.com/facebook-symbols/ 페이스 북 기호 : 웃는 기호, 이모티콘 기호, 이모티콘과 코드 목록 × 이모지 - 이모티콘 혹은 웃는 얼굴이라고도 불립니다. iOS와 Android는 기본적으로 845개의 이모티콘을 지원하고 있으며, 페이스북은 하트/사랑 기호, 별, 부호 및 동물 모양을 포함한 절반을 지원 kr.piliapp.com 컨텐츠 가운데로 이동.. 2023. 1. 14.
728x90