blob: 51e1ef3474e7e77b8deb59e0a11f71f8efbee356 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
from pathlib import Path
import httpx
import psycopg
from com import eval_config, parse_graph, progressbar
config = eval_config()
conn: psycopg.Connection = config["connect"]()
token: str = config["token"]
api: str = config["api"]
graph = parse_graph()
print("reading filterlist")
filtered = Path("filtered.list").read_text().strip().splitlines()
queue = []
def enqueue(note):
for reply in note["replies"]:
enqueue(graph[reply])
for quote in note["quotes"]:
enqueue(graph[quote])
if "self" in note["flags"]:
files = conn.execute('select "fileIds" from note where id = %s', [note["id"]]).fetchone()[0]
queue.append((note["id"], files))
for id in filtered:
enqueue(graph[id])
print(queue)
# client = httpx.Client()
|