garf-core 0.1.2__tar.gz → 0.1.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.
- {garf_core-0.1.2 → garf_core-0.1.4}/PKG-INFO +1 -1
- {garf_core-0.1.2 → garf_core-0.1.4}/garf_core/__init__.py +1 -1
- {garf_core-0.1.2 → garf_core-0.1.4}/garf_core/parsers.py +5 -0
- {garf_core-0.1.2 → garf_core-0.1.4}/garf_core/query_editor.py +2 -2
- {garf_core-0.1.2 → garf_core-0.1.4}/garf_core.egg-info/PKG-INFO +1 -1
- {garf_core-0.1.2 → garf_core-0.1.4}/README.md +0 -0
- {garf_core-0.1.2 → garf_core-0.1.4}/garf_core/api_clients.py +0 -0
- {garf_core-0.1.2 → garf_core-0.1.4}/garf_core/base_query.py +0 -0
- {garf_core-0.1.2 → garf_core-0.1.4}/garf_core/exceptions.py +0 -0
- {garf_core-0.1.2 → garf_core-0.1.4}/garf_core/fetchers/__init__.py +0 -0
- {garf_core-0.1.2 → garf_core-0.1.4}/garf_core/fetchers/fake.py +0 -0
- {garf_core-0.1.2 → garf_core-0.1.4}/garf_core/fetchers/rest.py +0 -0
- {garf_core-0.1.2 → garf_core-0.1.4}/garf_core/report.py +0 -0
- {garf_core-0.1.2 → garf_core-0.1.4}/garf_core/report_fetcher.py +0 -0
- {garf_core-0.1.2 → garf_core-0.1.4}/garf_core.egg-info/SOURCES.txt +0 -0
- {garf_core-0.1.2 → garf_core-0.1.4}/garf_core.egg-info/dependency_links.txt +0 -0
- {garf_core-0.1.2 → garf_core-0.1.4}/garf_core.egg-info/entry_points.txt +0 -0
- {garf_core-0.1.2 → garf_core-0.1.4}/garf_core.egg-info/requires.txt +0 -0
- {garf_core-0.1.2 → garf_core-0.1.4}/garf_core.egg-info/top_level.txt +0 -0
- {garf_core-0.1.2 → garf_core-0.1.4}/pyproject.toml +0 -0
- {garf_core-0.1.2 → garf_core-0.1.4}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: garf-core
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.4
|
4
4
|
Summary: Abstracts fetching data from API based on provided SQL-like query.
|
5
5
|
Author-email: "Google Inc. (gTech gPS CSE team)" <no-reply@google.com>, Andrei Markin <andrey.markin.ppc@gmail.com>
|
6
6
|
License: Apache 2.0
|
@@ -83,6 +83,8 @@ class DictParser(BaseParser):
|
|
83
83
|
|
84
84
|
def get_nested_field(self, dictionary: dict[str, Any], key: str):
|
85
85
|
"""Returns nested fields from a dictionary."""
|
86
|
+
if result := dictionary.get(key):
|
87
|
+
return result
|
86
88
|
key = key.split('.')
|
87
89
|
try:
|
88
90
|
return functools.reduce(operator.getitem, key, dictionary)
|
@@ -102,6 +104,9 @@ class NumericConverterDictParser(DictParser):
|
|
102
104
|
return type_(value)
|
103
105
|
return value
|
104
106
|
|
107
|
+
if result := dictionary.get(key):
|
108
|
+
return convert_field(result)
|
109
|
+
|
105
110
|
key = key.split('.')
|
106
111
|
try:
|
107
112
|
field = functools.reduce(operator.getitem, key, dictionary)
|
@@ -20,7 +20,7 @@ import dataclasses
|
|
20
20
|
import datetime
|
21
21
|
import logging
|
22
22
|
import re
|
23
|
-
from typing import Generator
|
23
|
+
from typing import Generator, Union
|
24
24
|
|
25
25
|
import jinja2
|
26
26
|
import pydantic
|
@@ -29,7 +29,7 @@ from typing_extensions import Self
|
|
29
29
|
|
30
30
|
from garf_core import exceptions
|
31
31
|
|
32
|
-
QueryParameters = dict[str, str | float | int]
|
32
|
+
QueryParameters = dict[str, Union[str | float | int]]
|
33
33
|
|
34
34
|
|
35
35
|
class GarfQueryParameters(pydantic.BaseModel):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: garf-core
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.4
|
4
4
|
Summary: Abstracts fetching data from API based on provided SQL-like query.
|
5
5
|
Author-email: "Google Inc. (gTech gPS CSE team)" <no-reply@google.com>, Andrei Markin <andrey.markin.ppc@gmail.com>
|
6
6
|
License: Apache 2.0
|
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
|