embedize 1.0.1__tar.gz → 1.0.3__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.
- {embedize-1.0.1 → embedize-1.0.3}/PKG-INFO +4 -1
- {embedize-1.0.1 → embedize-1.0.3}/setup.cfg +5 -1
- {embedize-1.0.1 → embedize-1.0.3}/src/embedize/__init__.py +1 -1
- {embedize-1.0.1 → embedize-1.0.3}/src/embedize/dcore.py +2 -2
- {embedize-1.0.1 → embedize-1.0.3}/src/embedize.egg-info/PKG-INFO +4 -1
- {embedize-1.0.1 → embedize-1.0.3}/src/embedize.egg-info/SOURCES.txt +1 -0
- embedize-1.0.3/src/embedize.egg-info/requires.txt +3 -0
- {embedize-1.0.1 → embedize-1.0.3}/LICENSE +0 -0
- {embedize-1.0.1 → embedize-1.0.3}/README.md +0 -0
- {embedize-1.0.1 → embedize-1.0.3}/pyproject.toml +0 -0
- {embedize-1.0.1 → embedize-1.0.3}/src/embedize/dbs.py +0 -0
- {embedize-1.0.1 → embedize-1.0.3}/src/embedize.egg-info/dependency_links.txt +0 -0
- {embedize-1.0.1 → embedize-1.0.3}/src/embedize.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: embedize
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.3
|
|
4
4
|
Summary: SQLite and DuckDB Tiny Lib
|
|
5
5
|
Home-page: https://github.com/asinerum/embedize
|
|
6
6
|
Author: Asinerum Conlang Project
|
|
@@ -12,6 +12,9 @@ Classifier: Operating System :: OS Independent
|
|
|
12
12
|
Requires-Python: >=3.7
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
|
+
Requires-Dist: duckdb>=1.4.2
|
|
16
|
+
Requires-Dist: pydantic>=2.12.5
|
|
17
|
+
Requires-Dist: pyyaml>=6.0.3
|
|
15
18
|
Dynamic: license-file
|
|
16
19
|
|
|
17
20
|
Detailed tips, tricks, and examples, can be found at project's repository
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[metadata]
|
|
2
2
|
name = embedize
|
|
3
|
-
version = 1.0.
|
|
3
|
+
version = 1.0.3
|
|
4
4
|
author = Asinerum Conlang Project
|
|
5
5
|
author_email = asinerum.com@gmail.com
|
|
6
6
|
description = SQLite and DuckDB Tiny Lib
|
|
@@ -18,6 +18,10 @@ package_dir =
|
|
|
18
18
|
= src
|
|
19
19
|
packages = find:
|
|
20
20
|
python_requires = >=3.7
|
|
21
|
+
install_requires =
|
|
22
|
+
duckdb >= 1.4.2
|
|
23
|
+
pydantic >= 2.12.5
|
|
24
|
+
pyyaml >= 6.0.3
|
|
21
25
|
|
|
22
26
|
[options.packages.find]
|
|
23
27
|
where = src
|
|
@@ -577,10 +577,10 @@ def select_dict (query: str, model: BaseModel, db_path: str=None, func=db_select
|
|
|
577
577
|
setpandas(caller, pandas)
|
|
578
578
|
return db_execute(caller)
|
|
579
579
|
|
|
580
|
-
def select_list (query: str, model: BaseModel, db_path: str=None, engine=None, connect=None, pandas: bool=False, **kw) -> dict:
|
|
580
|
+
def select_list (query: str, model: BaseModel, db_path: str=None, layer=5, engine=None, connect=None, pandas: bool=False, **kw) -> dict:
|
|
581
581
|
engine = engine or sys_engine
|
|
582
582
|
connect = connect or sys_connect
|
|
583
|
-
return select_dict(func=db_list, query=query, model=model, db_path=db_path, engine=engine, connect=connect, pandas=pandas)
|
|
583
|
+
return select_dict(func=db_list, query=query, model=model, db_path=db_path, layer=layer, engine=engine, connect=connect, pandas=pandas)
|
|
584
584
|
|
|
585
585
|
def insert_one (query: str, model: BaseModel, retquery: str='', db_path: str=None, layer=4, engine=None, connect=None, pandas: bool=False, **kw) -> dict:
|
|
586
586
|
engine = engine or sys_engine
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: embedize
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.3
|
|
4
4
|
Summary: SQLite and DuckDB Tiny Lib
|
|
5
5
|
Home-page: https://github.com/asinerum/embedize
|
|
6
6
|
Author: Asinerum Conlang Project
|
|
@@ -12,6 +12,9 @@ Classifier: Operating System :: OS Independent
|
|
|
12
12
|
Requires-Python: >=3.7
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
|
+
Requires-Dist: duckdb>=1.4.2
|
|
16
|
+
Requires-Dist: pydantic>=2.12.5
|
|
17
|
+
Requires-Dist: pyyaml>=6.0.3
|
|
15
18
|
Dynamic: license-file
|
|
16
19
|
|
|
17
20
|
Detailed tips, tricks, and examples, can be found at project's repository
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|