Added readme

This commit is contained in:
2023-10-29 17:09:26 +03:00
parent 2efb4d4846
commit c735ca2ee5
7 changed files with 62 additions and 11 deletions

View File

@@ -10,4 +10,4 @@ python -m venv .venv
pip install -r requirements.txt
python -m runner
```
```

View File

@@ -1,5 +1,4 @@
import os
from parser import PR_COL_NS
REFETCH_PERIOD_H = int(os.environ.get("REFETCH_PERIOD_H", "4"))

View File

@@ -7,7 +7,6 @@ import psycopg
from .config import DB_COLUMNS_MAP, STORE_NULL_BID
from .database import db_credentials
sql_statement = "".join(
("COPY records (", ", ".join(DB_COLUMNS_MAP.values()), ") FROM STDIN")
)