Move temp data out

This commit is contained in:
2024-08-26 16:49:38 +02:00
parent fd9cf2ca66
commit 01749367e8
3 changed files with 3 additions and 41 deletions

2
.gitignore vendored
View File

@@ -148,3 +148,5 @@ dmypy.json
# Cython debug symbols # Cython debug symbols
cython_debug/ cython_debug/
temp_data

View File

@@ -1,40 +0,0 @@
12:50 | Thu, 20 Jun 🟢 Healthy
08:22 | Fri, 21 Jun 🟢 Healthy
22:06 | Fri, 21 Jun 🟢 Healthy
13:21 | Sat, 22 Jun 🟢 Healthy
22:20 | Sat, 22 Jun 🟢 Healthy
14:09 | Sun, 23 Jun 🟢 Healthy
08:04 | Mon, 24 Jun 🟢 Healthy
17:39 | Mon, 24 Jun 🟡 Soft
08:12 | Tue, 25 Jun 🟢 Healthy
21:40 | Tue, 25 Jun 🟡 Soft
21:10 | Wed, 26 Jun 🟢 Healthy
14:30 | Thu, 27 Jun 🟢 Healthy
08:00 | Fri, 28 Jun 🟢 Healthy
22:42 | Fri, 28 Jun 🟢 Healthy
12:32 | Sat, 29 Jun 🟢 Healthy
10:40 | Sun, 30 Jun 🟢 Healthy
17:30 | Sun, 30 Jun 🟢 Healthy
14:30 | Mon, 01 Jul 🟢 Healthy
21:31 | Mon, 01 Jul 🟢 Healthy
13:48 | Tue, 02 Jul 🟢 Healthy
09:31 | Wed, 03 Jul 🟢 Healthy
17:55 | Wed, 03 Jul 🟢 Healthy
18:06 | Thu, 04 Jul 🟢 Healthy
12:18 | Thu, 04 Jul 🟢 Healthy
15:03 | Fri, 05 Jul 🟢 Healthy
22:07 | Fri, 05 Jul 🟢 Healthy
16:35 | Sat, 06 Jul 🟢 Healthy
17:05 | Sun, 07 Jul 🟢 Healthy
13:38 | Mon, 08 Jul 🟢 Healthy
22:30 | Tue, 09 Jul 🟢 Healthy
14:15 | Tue, 09 Jul 🟢 Healthy
21:59 | Wed, 10 Jul 🟢 Healthy
17:41 | Thu, 11 Jul 🟢 Healthy
14:06 | Fri, 12 Jul 🟢 Healthy
09:27 | Sat, 13 Jul 🟢 Healthy
22:00 | Sun, 14 Jul 🟢 Healthy
12:20 | Mon, 15 Jul 🟢 Healthy
08:09 | Tue, 16 Jul 🟤 Hard
13:20 | Tue, 16 Jul 🟢 Healthy
08:15 | Wed, 17 Jul 🟤 Hard

View File

@@ -20,7 +20,7 @@ rows: list[str] = []
async def update_rows() -> None: async def update_rows() -> None:
header: dict = await notion.get_block_children(block_id=Config.get_env("POO_RECORD_NOTION_TABLE_ID"), page_size=1) header: dict = await notion.get_block_children(block_id=Config.get_env("POO_RECORD_NOTION_TABLE_ID"), page_size=1)
header_id = header["results"][0]["id"] header_id = header["results"][0]["id"]
with Path.open(current_dir + "/old_poo_record.txt") as file: with Path.open(current_dir + "/../../../temp_data/old_poo_record.txt") as file:
content = file.read() content = file.read()
rows = content.split("\n") rows = content.split("\n")
rows.reverse() rows.reverse()