示例#1
0
# -*- coding: utf-8 -*-
# import scrapy
import sys
sys.path.insert(0, '../')

from crawler import NaverCrawler

crawler = NaverCrawler()

results = crawler.find_product_reviews(7789434971)

print "Total Reviews: %d" % (len(results))
print ""

for review in results:
    print '#'*50
    print review['content']
    print ""
示例#2
0
# -*- coding: utf-8 -*-
# import scrapy
import sys
sys.path.insert(0, '../')

from crawler import NaverCrawler

crawler = NaverCrawler()

results = crawler.find_blog_posts(u'피플 킬링 피플 다잉')

print "Total Reviews: %d" % (len(results))
print ""

for review in results:
    print '#' * 50
    print review['content']
    print ""
示例#3
0
# -*- coding: utf-8 -*-
# import scrapy
import sys
sys.path.insert(0, '../')

from crawler import NaverCrawler

crawler = NaverCrawler()

results = crawler.find_blog_posts(u'피플 킬링 피플 다잉')

print "Total Reviews: %d" % (len(results))
print ""

for review in results:
    print '#'*50
    print review['content']
    print ""
示例#4
0
# -*- coding: utf-8 -*-
# import scrapy
import sys
sys.path.insert(0, '../')

from crawler import NaverCrawler

crawler = NaverCrawler()

results = crawler.find_product_reviews(7789434971)

print "Total Reviews: %d" % (len(results))
print ""

for review in results:
    print '#' * 50
    print review['content']
    print ""