python 작은 demo 의 자동 으로 경 동 혜택 전자 책 정 보 를 추천 합 니 다.
#coding=utf-8
__author__ = 'kysida'
#
import htmllib
import urllib2
import formatter
import string
import os
#
class GetLinks(htmllib.HTMLParser):
#
def __init__(self):
# :links{href:link}
self.links = {}
# ,
f = formatter.NullFormatter()
htmllib.HTMLParser.__init__(self, f)
#
def anchor_bgn(self, href, name, type):
self.save_bgn()
self.link = href
#
def anchor_end(self):
# a a n
text = string.strip(self.save_end())
if self.link and text:
self.links[text] = self.link
#
if __name__ == '__main__':
#
try:
os.remove('bookmenu.txt')
except WindowsError:
pass
fp = urllib2.urlopen("http://sale.jd.com/act/yufbrhZtjx6JTV.html")
data = fp.read()
fp.close()
#
demo = GetLinks()
demo.feed(data)
demo.close()
for href, link in demo.links.items():
# link ‘http://e.jd.com/’
link_result = link.startswith('http://e.jd.com/')
#href_result = href.startswith(' ')
# href
if link_result == True and href != ' ':
#print 'ok'
#
htmlfile = open('bookmenu.txt','a+')
htmlfile.write("《"+href+"》"+'-------------->'+link + '
')
htmlfile.close()
else:
continue
if True:
print 'The book had been send successfully! '
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
파이썬을 사용하여 10진수를 bin, 8진수 및 16진수 형식으로 변환하는 방법은 무엇입니까?텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.