上传文件至 q2_1_crawler

This commit is contained in:
2026-06-23 11:24:11 +08:00
parent b951a15ec6
commit 1dd56683ae
3 changed files with 364 additions and 0 deletions

152
q2_1_crawler/movies.html Normal file
View File

@@ -0,0 +1,152 @@
<!-- exam_fingerprint: B-20260623-8659 -->
<!-- server_time: 2026-06-23 10:54:22 -->
<!-- exam_paper: B -->
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>电影列表</title>
<style>
body { font-family: "Microsoft YaHei", sans-serif; margin: 20px; background: #f5f5f5; }
h1 { color: #c0392b; }
.meta { color: #999; font-size: 12px; margin-bottom: 15px; }
.meta code { background: #e9ecef; padding: 2px 6px; border-radius: 3px; }
table { width: 100%; border-collapse: collapse; background: white; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
th, td { padding: 10px; text-align: left; border-bottom: 1px solid #ddd; }
th { background: #c0392b; color: white; }
tr:hover { background: #fef5f4; }
</style>
</head>
<body>
<h1>电影列表</h1>
<p class="meta">数据编号:<code>B-20260623-8659</code></p>
<table>
<thead>
<tr>
<th>编号</th>
<th>电影名</th>
<th>导演</th>
<th>上映年份</th>
<th>评分</th>
<th>时长(分钟)</th>
<th>类型</th>
<th>主演数</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>放牛班的春天</td>
<td>Frank Darabont</td>
<td>1998</td>
<td>8.3</td>
<td>103</td>
<td>喜剧</td>
<td>3</td>
</tr>
<tr>
<td>2</td>
<td>千与千寻</td>
<td>陈凯歌</td>
<td>2023</td>
<td>7.9</td>
<td>118</td>
<td>剧情</td>
<td>3</td>
</tr>
<tr>
<td>3</td>
<td>泰坦尼克号</td>
<td>Robert Zemeckis</td>
<td>2018</td>
<td>6.8</td>
<td>164</td>
<td>科幻</td>
<td>2</td>
</tr>
<tr>
<td>4</td>
<td>忠犬八公的故事</td>
<td>James Cameron</td>
<td>2012</td>
<td>7.6</td>
<td>135</td>
<td>爱情</td>
<td>5</td>
</tr>
<tr>
<td>5</td>
<td>阿甘正传</td>
<td>宫崎骏</td>
<td>2011</td>
<td>8.8</td>
<td>128</td>
<td>动画</td>
<td>4</td>
</tr>
<tr>
<td>6</td>
<td>霸王别姬</td>
<td>Christopher Nolan</td>
<td>2022</td>
<td>7.2</td>
<td>91</td>
<td>悬疑</td>
<td>5</td>
</tr>
<tr>
<td>7</td>
<td>三傻大闹宝莱坞</td>
<td>Lasse Hallström</td>
<td>2009</td>
<td>9.2</td>
<td>179</td>
<td>爱情</td>
<td>3</td>
</tr>
<tr>
<td>8</td>
<td>肖申克的救赎</td>
<td>Rajkumar Hirani</td>
<td>1991</td>
<td>7.1</td>
<td>175</td>
<td>喜剧</td>
<td>2</td>
</tr>
<tr>
<td>9</td>
<td>盗梦空间</td>
<td>Christophe Barratier</td>
<td>2024</td>
<td>8.8</td>
<td>144</td>
<td>喜剧</td>
<td>5</td>
</tr>
<tr>
<td>10</td>
<td>星际穿越</td>
<td>Christopher Nolan</td>
<td>2008</td>
<td>8.9</td>
<td>179</td>
<td>动画</td>
<td>3</td>
</tr>
</tbody>
</table>
</body>
</html>