lidb 1.0.7__py3-none-any.whl → 1.0.9__py3-none-any.whl
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 lidb might be problematic. Click here for more details.
lidb/__init__.py
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
# Copyright (c) ZhangYundi.
|
|
2
2
|
# Licensed under the MIT License.
|
|
3
|
-
# Created on 2025/7/17 14:09
|
|
4
|
-
# Description:
|
|
5
3
|
|
|
6
4
|
from .init import (
|
|
7
5
|
NAME,
|
|
@@ -19,4 +17,4 @@ from .database import (
|
|
|
19
17
|
read_ck,
|
|
20
18
|
)
|
|
21
19
|
|
|
22
|
-
__version__ = "1.0.
|
|
20
|
+
__version__ = "1.0.9"
|
lidb/init.py
CHANGED
|
@@ -22,8 +22,7 @@ if not CONFIG_PATH.exists():
|
|
|
22
22
|
except Exception as e:
|
|
23
23
|
logger.error(f"Failed to create settings file: {e}")
|
|
24
24
|
with open(CONFIG_PATH, "w") as f:
|
|
25
|
-
template_content = f
|
|
26
|
-
path={DB_PATH}"""
|
|
25
|
+
template_content = f'[global]\npath="{DB_PATH}"\n'
|
|
27
26
|
with open(CONFIG_PATH, "w") as f:
|
|
28
27
|
f.write(template_content)
|
|
29
28
|
logger.info(f"Settings file created: {CONFIG_PATH}")
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lidb
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.9
|
|
4
4
|
Requires-Python: >=3.12
|
|
5
5
|
Description-Content-Type: text/markdown
|
|
6
6
|
Requires-Dist: dynaconf>=3.2.11
|
|
7
7
|
Requires-Dist: polars>=1.31.0
|
|
8
8
|
Requires-Dist: sqlparse>=0.5.3
|
|
9
|
-
Requires-Dist: logair>=1.0.
|
|
9
|
+
Requires-Dist: logair>=1.0.1
|
|
10
10
|
Requires-Dist: clickhouse-df>=0.1.5
|
|
11
11
|
Requires-Dist: connectorx>=0.4.3
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
lidb/__init__.py,sha256=3E6e9o9jOBuI8oXUW7D3kcWf5-kGVr73dq2rEfV9ObE,262
|
|
2
|
+
lidb/database.py,sha256=U1h80jgmkRfgQW8sdhb7B3ISvQJUvPefLurWMsbzqa0,5372
|
|
3
|
+
lidb/init.py,sha256=jLHpeL5mIM4YjdMYAndZlDilMiKXJMr_51Ke3ZSJWCM,1170
|
|
4
|
+
lidb/parse.py,sha256=N1BBZoUhvLj58biZfEhFs4cGsqaZqsanx27bAp_P7Oo,2236
|
|
5
|
+
lidb-1.0.9.dist-info/METADATA,sha256=skBEoZKLLWNvT9v2mktM7POGlTmSa4JA3ukGhMstfsA,303
|
|
6
|
+
lidb-1.0.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
7
|
+
lidb-1.0.9.dist-info/top_level.txt,sha256=NgXJNwt6ld6oLXtW1vOPaEh-VO5R0JEX_KmGIJR4ueE,5
|
|
8
|
+
lidb-1.0.9.dist-info/RECORD,,
|
lidb-1.0.7.dist-info/RECORD
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
lidb/__init__.py,sha256=aVFgcTIjRYdaCOi2-AxGRX8KLLpp_K6m26XKg_KaTCI,306
|
|
2
|
-
lidb/database.py,sha256=U1h80jgmkRfgQW8sdhb7B3ISvQJUvPefLurWMsbzqa0,5372
|
|
3
|
-
lidb/init.py,sha256=YUrPG5D0KiFCSiLOxURgVnnKKzYcGYigJlHbPCI7cts,1169
|
|
4
|
-
lidb/parse.py,sha256=N1BBZoUhvLj58biZfEhFs4cGsqaZqsanx27bAp_P7Oo,2236
|
|
5
|
-
lidb-1.0.7.dist-info/METADATA,sha256=z3KDihB6ZlNy-Esxy1mhGnCV3Pdjib7zP4bpuiFc70Y,303
|
|
6
|
-
lidb-1.0.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
7
|
-
lidb-1.0.7.dist-info/top_level.txt,sha256=NgXJNwt6ld6oLXtW1vOPaEh-VO5R0JEX_KmGIJR4ueE,5
|
|
8
|
-
lidb-1.0.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|