#!/usr/bin/env python # coding: utf-8 # # 네이버 실시간 급상승 크롤링 # # http://naver.com # # # 짧으면서 최대한 많은 의미를 담기 위한 Python 크롤링 코드. import 문을 제외하면 딱 1줄 ! # # #### 2017 https://fb.com/financedata # # # # 딱 한줄 # In[1]: import re import requests re.findall('(.*?)', requests.get('http://naver.com').text)[:20] # #### 2017 https://financedata.github.io #