개발자/파이썬 Python 썸네일형 리스트형 파이썬 lxml 패키지 설치 해결~ 이게 또 libxml2 와 연관이 있나. 웹 크로울러 예제가 올라와서 한 번 해본다고 하는데http://creativeworks.tistory.com/entry/PYTHON-3-Tutorials-24-%EC%9B%B9-%ED%81%AC%EB%A1%A4%EB%9F%AClike-Google-%EB%A7%8C%EB%93%A4%EA%B8%B0-1-How-to-build-a-web-crawler 위에서 실습한 소스코드는 아래에 있다. import requests from bs4 import BeautifulSoup def spider(max_pages): page = 1 while page < max_pages: url = 'http://creativeworks.tistory.com/' + str(page) source_code = requests.ge.. 파이썬 실행하고 import this 명령하면 나오는 문장 번역 파이썬 실행하고 가장 먼저 입력해보는 게 >>>import this 하시면 나오는 파이썬 계명을 번역해봤습니다. C:\Users\Administrator>python Python 3.4.1 (v3.4.1:c0e311e010fc, May 18 2014, 10:38:22) [MSC v.1600 32 bit (In tel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> >>> >>> import this The Zen of Python, by Tim Peters 파이썬 계명 by Tim Peters Beautiful is better than ugly. 아름다움이 추함보다 좋다. Explicit is be.. 이전 1 ··· 6 7 8 9 다음