drifTech-lib 0.2.0__tar.gz → 0.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of drifTech-lib might be problematic. Click here for more details.
- {driftech_lib-0.2.0 → driftech_lib-0.2.2}/PKG-INFO +1 -1
- {driftech_lib-0.2.0 → driftech_lib-0.2.2}/pyproject.toml +1 -1
- {driftech_lib-0.2.0 → driftech_lib-0.2.2}/pyproject.toml.orig +1 -1
- {driftech_lib-0.2.0 → driftech_lib-0.2.2}/src/driftech_lib/db.py +1 -1
- {driftech_lib-0.2.0 → driftech_lib-0.2.2}/src/driftech_lib/ipc/server.py +1 -1
- {driftech_lib-0.2.0 → driftech_lib-0.2.2}/LICENSE +0 -0
- {driftech_lib-0.2.0 → driftech_lib-0.2.2}/README.md +0 -0
- {driftech_lib-0.2.0 → driftech_lib-0.2.2}/src/driftech_lib/__init__.py +0 -0
- {driftech_lib-0.2.0 → driftech_lib-0.2.2}/src/driftech_lib/ipc/__init__.py +0 -0
- {driftech_lib-0.2.0 → driftech_lib-0.2.2}/src/driftech_lib/ipc/client.py +0 -0
- {driftech_lib-0.2.0 → driftech_lib-0.2.2}/src/driftech_lib/jsonIO.py +0 -0
|
@@ -8,7 +8,7 @@ build-backend = "uv_build"
|
|
|
8
8
|
|
|
9
9
|
[project]
|
|
10
10
|
name = "drifTech-lib"
|
|
11
|
-
version = "0.2.
|
|
11
|
+
version = "0.2.2"
|
|
12
12
|
authors = [{name = "driftbluestone", email = "driftbluestone@gmail.com"}]
|
|
13
13
|
description = "Common files/functions across most drifTech software"
|
|
14
14
|
readme = "README.md"
|
|
@@ -5,7 +5,7 @@ import psycopg, logging
|
|
|
5
5
|
from typing import Any
|
|
6
6
|
from psycopg import sql
|
|
7
7
|
|
|
8
|
-
__all__ = ["SCHEMA", "run", "single", "multiple", "insert", "delete", "get", "table"]
|
|
8
|
+
__all__ = ["SCHEMA", "start", "run", "single", "multiple", "insert", "delete", "get", "table"]
|
|
9
9
|
|
|
10
10
|
SCHEMA: sql.Identifier = None
|
|
11
11
|
cursor: psycopg.Cursor = None
|
|
@@ -9,7 +9,7 @@ async def start(HOST, PORT):
|
|
|
9
9
|
|
|
10
10
|
async def interface(reader: asyncio.StreamReader, writer: asyncio.StreamWriter):
|
|
11
11
|
addr = writer.get_extra_info("peername")
|
|
12
|
-
logging.info(f"[CONNECTION]:
|
|
12
|
+
logging.info(f"[CONNECTION]: Connection opened for {addr}")
|
|
13
13
|
try:
|
|
14
14
|
while True:
|
|
15
15
|
data = await reader.read(1024)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|