e-data 2.0.0.dev126__tar.gz → 2.0.1.dev127__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.
- {e_data-2.0.0.dev126/e_data.egg-info → e_data-2.0.1.dev127}/PKG-INFO +2 -2
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127/e_data.egg-info}/PKG-INFO +2 -2
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/e_data.egg-info/requires.txt +1 -1
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/pyproject.toml +2 -2
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/LICENSE +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/MANIFEST.in +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/README.md +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/e_data.egg-info/SOURCES.txt +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/e_data.egg-info/dependency_links.txt +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/e_data.egg-info/top_level.txt +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/__init__.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/cli.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/core/__init__.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/core/const.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/core/utils.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/database/__init__.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/database/controller.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/database/models.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/database/queries.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/database/utils.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/models/__init__.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/models/bill.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/models/data.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/models/supply.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/providers/__init__.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/providers/datadis.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/providers/redata.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/services/bill_service.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/services/data_service.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/tests/__init__.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/tests/test_datadis_connector.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/tests/test_redata_connector.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/edata/tests/test_services.py +0 -0
- {e_data-2.0.0.dev126 → e_data-2.0.1.dev127}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: e-data
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1.dev127
|
|
4
4
|
Summary: Python library for managing spanish energy data from various web providers
|
|
5
5
|
Author-email: VMG <vmayorg@outlook.es>
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -696,7 +696,7 @@ Requires-Dist: Jinja2<4,>=3.1
|
|
|
696
696
|
Requires-Dist: pydantic<3,>=2.10
|
|
697
697
|
Requires-Dist: python_dateutil<3,>=2.8
|
|
698
698
|
Requires-Dist: Requests<3,>=2.31
|
|
699
|
-
Requires-Dist: SQLAlchemy<3,>=2.0
|
|
699
|
+
Requires-Dist: SQLAlchemy[asyncio]<3,>=2.0
|
|
700
700
|
Requires-Dist: sqlmodel<0.1,>=0.0.22
|
|
701
701
|
Requires-Dist: typer<1,>=0.12
|
|
702
702
|
Requires-Dist: aiosqlite<1,>=0.21
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: e-data
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1.dev127
|
|
4
4
|
Summary: Python library for managing spanish energy data from various web providers
|
|
5
5
|
Author-email: VMG <vmayorg@outlook.es>
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -696,7 +696,7 @@ Requires-Dist: Jinja2<4,>=3.1
|
|
|
696
696
|
Requires-Dist: pydantic<3,>=2.10
|
|
697
697
|
Requires-Dist: python_dateutil<3,>=2.8
|
|
698
698
|
Requires-Dist: Requests<3,>=2.31
|
|
699
|
-
Requires-Dist: SQLAlchemy<3,>=2.0
|
|
699
|
+
Requires-Dist: SQLAlchemy[asyncio]<3,>=2.0
|
|
700
700
|
Requires-Dist: sqlmodel<0.1,>=0.0.22
|
|
701
701
|
Requires-Dist: typer<1,>=0.12
|
|
702
702
|
Requires-Dist: aiosqlite<1,>=0.21
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "e-data"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.1.dev127"
|
|
8
8
|
description = "Python library for managing spanish energy data from various web providers"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [
|
|
@@ -29,7 +29,7 @@ dependencies = [
|
|
|
29
29
|
"pydantic>=2.10,<3",
|
|
30
30
|
"python_dateutil>=2.8,<3",
|
|
31
31
|
"Requests>=2.31,<3",
|
|
32
|
-
"SQLAlchemy>=2.0,<3",
|
|
32
|
+
"SQLAlchemy[asyncio]>=2.0,<3",
|
|
33
33
|
"sqlmodel>=0.0.22,<0.1",
|
|
34
34
|
"typer>=0.12,<1",
|
|
35
35
|
"aiosqlite>=0.21,<1",
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|