This commit is contained in:
Michael Beck
2025-01-31 00:31:25 +01:00
commit 026d6742db
12 changed files with 884 additions and 0 deletions

22
templates/results.html Normal file
View File

@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Scraping Results</title>
</head>
<body>
<h1>User Activity Statistics</h1>
<table border="1">
<tr>
<th>Hour</th>
<th>Activity Count</th>
</tr>
{% for hour, count in stats.items() %}
<tr>
<td>{{ hour }}</td>
<td>{{ count }}</td>
</tr>
{% endfor %}
</table>
</body>
</html>