fastAPI 심화
- Chart.js - pdf, csv 파일 업로드 후 데이터 정제하여 llm으로 처리 후 결과 도출 - sqlite로 데이터 저장 - ORM - SQLAlchemy
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Title</title>
|
||||
</head>
|
||||
<body>
|
||||
<h2>카드 소비 내역</h2>
|
||||
<table border = "1">
|
||||
<tr>
|
||||
<th>날짜</th>
|
||||
<th>카테고리</th>
|
||||
<th>가맹점</th>
|
||||
<th>금액</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
{% for row in history %}
|
||||
<tr>
|
||||
<td>{{ row.date }}</td>
|
||||
<td>{{ row.category }}</td>
|
||||
<td>{{ row.merchant }}</td>
|
||||
<td>{{ row.amount }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user