.Install cheerio module- Install Cheerio from npm npm i cheerio .Using cheerio 달러 환율의 일별 시세를 크롤링 해보려고 한다. 12345678910111213141516171819202122232425const request = require("request");const cheerio = require("cheerio"); scrapingResult = { 'date': '', 'the_basic_rate': '', 'buy': '', 'sell': ''} function getData() { request("https://finance.naver.com/marketindex/exchangeDailyQuote.nhn", function (e..
.Install Express Framework- Install Express from npm npm i express - Node.JS 를 위한 가장 인기있는 웹 어플리케이션 프레임워크- 웹 페이지를 위한 서버 및 웹 기반 어플리케이션 개발에 사용 .Using Express Framework - expressServer.js12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849const express = require('express')const path = require('path'); // 기본 라이브러리의 path const app = express() //////////////////////..
모듈 : 메서드의 집합 참고글 : [Python] 파이썬 기초(변수, 출력, 모듈, 연산, 문자열) #. 모듈 생성# my_module.pydef func1() : 명령어 def func2() : 명령어 >>> import my_module>>> my_moduel.func1()>>> my_moduel.func2() # calculator.py 로 모듈 생성def sum(x, y) : return(x + y) def minus(x, y) : if x >= y : return(x - y) else : return(y - x) # 모듈 호출>>> import calculator>>> calculator.sum(1,3)4>>> calculator.minus(1,3)2 #. 모듈 호출# 모듈명을 생략하고 메서드 ..
#. 리스트 생성R에서 vector라고 불렀다면.. Python에서는 list라고 불러다오.. # 대괄호로 리스트 생성>>> l1 = [1,2,3] >>> l1[1, 2, 3] # 리스트는 중첩으로 생성 가능 -> R에서는 벡터 안에 벡터 생성이란 불가능했지만, 파이썬에서는 가능하다는 것!>>> l1 = [1,2,[3,4]]>>> l1[1, 2, [3, 4]] #. 리스트 색인>>> l1[1, 2, 3] # 파이썬의 색인은 0부터 시작 >>> l1[1] 2 # list[n:m] : n ~ m-1 까지 추출>>> l1[0:2] [1, 2] # 1차원 색인 시, 차원의 숙소가 일어나 리스트가 아닌 벡터로 출력>>> l1[0]1 #. 리스트 원소 추가>>> l1 = [1,2,3]>>> l1.append(4) ..