This commit is contained in:
parent
ed358a8a59
commit
7b669f833b
|
@ -13,7 +13,7 @@ def crawl(request):
|
|||
# info = scrapy_client.get_scrapy_info()
|
||||
crawl_info = CrawlInfos.objects.order_by('-id').first()
|
||||
platform_info = get_platform_info()
|
||||
news = News.objects.order_by('-id')[0:20]
|
||||
news = News.objects.order_by('-id').all()[0:20]
|
||||
return render(request, 'myapp/crawl.html', {"crawl_info": crawl_info,
|
||||
"platform_info":json.dumps(platform_info),
|
||||
"news": news})
|
||||
|
|
|
@ -52,6 +52,7 @@ def collect_crawl_info(spark):
|
|||
|
||||
def collect_news(spark):
|
||||
df = spark.sql("select * from jd_comment order by created_at desc limit 20")
|
||||
mysql_execute("delete from news")
|
||||
for row in df.rdd.collect():
|
||||
mysql_execute("insert into news (comment_time, content, comment_id) values ('{}', '{}', '{}')".format(
|
||||
row["comment_time"], row["content"], row["id"]))
|
||||
|
|
Loading…
Reference in New Issue