gensor 0.0.2__tar.gz → 0.0.4__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.
- {gensor-0.0.2 → gensor-0.0.4}/PKG-INFO +1 -1
- gensor-0.0.4/gensor/db/__init__.py +14 -0
- {gensor-0.0.2 → gensor-0.0.4}/gensor/db/connection.py +6 -2
- {gensor-0.0.2 → gensor-0.0.4}/pyproject.toml +1 -1
- gensor-0.0.2/gensor/db/__init__.py +0 -3
- {gensor-0.0.2 → gensor-0.0.4}/LICENSE +0 -0
- {gensor-0.0.2 → gensor-0.0.4}/README.md +0 -0
- {gensor-0.0.2 → gensor-0.0.4}/gensor/__init__.py +0 -0
- {gensor-0.0.2 → gensor-0.0.4}/gensor/compensation.py +0 -0
- {gensor-0.0.2 → gensor-0.0.4}/gensor/dtypes.py +0 -0
- {gensor-0.0.2 → gensor-0.0.4}/gensor/exceptions.py +0 -0
- {gensor-0.0.2 → gensor-0.0.4}/gensor/getters.py +0 -0
- {gensor-0.0.2 → gensor-0.0.4}/gensor/parse/__init__.py +0 -0
- {gensor-0.0.2 → gensor-0.0.4}/gensor/parse/vanessen.py +0 -0
- {gensor-0.0.2 → gensor-0.0.4}/gensor/preprocessing.py +0 -0
- {gensor-0.0.2 → gensor-0.0.4}/gensor/smoothing.py +0 -0
- {gensor-0.0.2 → gensor-0.0.4}/gensor/trend.py +0 -0
- {gensor-0.0.2 → gensor-0.0.4}/py.typed +0 -0
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
"""Module
|
|
1
|
+
"""Module defining database connection object.
|
|
2
|
+
|
|
3
|
+
Classes:
|
|
4
|
+
DatabaseConnection: Database connection object
|
|
5
|
+
"""
|
|
2
6
|
|
|
3
7
|
from pathlib import Path
|
|
4
8
|
|
|
@@ -10,7 +14,7 @@ from ..exceptions import DatabaseNotFound
|
|
|
10
14
|
|
|
11
15
|
|
|
12
16
|
class DatabaseConnection(pyd.BaseModel):
|
|
13
|
-
"""
|
|
17
|
+
"""Database connection object.
|
|
14
18
|
If no database exists at the specified path, it will be created.
|
|
15
19
|
If no database is specified, an in-memory database will be used.
|
|
16
20
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|