diff --git a/app/templates/index.html b/app/templates/index.html index ad60325206945f8999b766f71fa97e91c7cc673c..0aa7bd36ff351460741514989c331e830f46246a 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -12,7 +12,7 @@
-

普通爬虫

+

普通爬虫


-
+

单页爬虫

@@ -60,24 +60,21 @@
-
+
-

单页爬虫

+

分页爬虫

+
最新更新
-

目标数据呈现在单一页面中,使用最简单的爬虫库可以直接采集,一般用正则表达式即可完成数据提取。

+

本案例是由 2760 条数据组成的分页爬虫,数据为国内学校清单,主要用于练习分页数据采集。

难度:⭐

案例: - 新闻页 - 图片清单 - 表格 + 学校分页数据

@@ -126,62 +123,7 @@
-
- -
-
-
-

单页爬虫

-
-
-

单独一个网页数据展示,可直接采集,单独一个网页数据展示,可直接采集

-
- -
-
- -
- -
-
-

单页爬虫

-
-
-

单独一个网页数据展示,可直接采集,单独一个网页数据展示,可直接采集

- -
- -
- -
-
- -
-
-

单页爬虫

-
-
-

单独一个网页数据展示,可直接采集,单独一个网页数据展示,可直接采集

- -
- -
- -
-

普通爬虫

@@ -312,7 +254,7 @@

-

爬虫训练场 Copyright © 梦想橡皮擦

+

爬虫训练场 Copyright © 梦想橡皮擦 冀ICP备2022009308号-1

diff --git a/app/templates/school/index.html b/app/templates/school/index.html index ee77ce32928d20cc4cbc8a026b6cc1f64ff41137..1894dc5ed4033eaec3e68f7062511efef11605d3 100644 --- a/app/templates/school/index.html +++ b/app/templates/school/index.html @@ -33,9 +33,34 @@
+ {% for school in pagination.data_list %} +
+
+
+
+ + + +
+
+
{{school.name}}
+

+ {% for fea in school.feature.split(',') %} + {{fea}} + {% endfor %} +

+

所在省市:{{school.province}} -- {{school.city}}

+
+
+
+
+ {% endfor %} + +
- 合计 {{pagination.total}} 条数据 + 合计 {{pagination.total}} 条数据