garf-core 0.1.3__tar.gz → 0.1.4.post0__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.
Files changed (21) hide show
  1. {garf_core-0.1.3 → garf_core-0.1.4.post0}/PKG-INFO +1 -1
  2. {garf_core-0.1.3 → garf_core-0.1.4.post0}/garf_core/__init__.py +1 -1
  3. {garf_core-0.1.3 → garf_core-0.1.4.post0}/garf_core/query_editor.py +2 -2
  4. {garf_core-0.1.3 → garf_core-0.1.4.post0}/garf_core.egg-info/PKG-INFO +1 -1
  5. {garf_core-0.1.3 → garf_core-0.1.4.post0}/README.md +0 -0
  6. {garf_core-0.1.3 → garf_core-0.1.4.post0}/garf_core/api_clients.py +0 -0
  7. {garf_core-0.1.3 → garf_core-0.1.4.post0}/garf_core/base_query.py +0 -0
  8. {garf_core-0.1.3 → garf_core-0.1.4.post0}/garf_core/exceptions.py +0 -0
  9. {garf_core-0.1.3 → garf_core-0.1.4.post0}/garf_core/fetchers/__init__.py +0 -0
  10. {garf_core-0.1.3 → garf_core-0.1.4.post0}/garf_core/fetchers/fake.py +0 -0
  11. {garf_core-0.1.3 → garf_core-0.1.4.post0}/garf_core/fetchers/rest.py +0 -0
  12. {garf_core-0.1.3 → garf_core-0.1.4.post0}/garf_core/parsers.py +0 -0
  13. {garf_core-0.1.3 → garf_core-0.1.4.post0}/garf_core/report.py +0 -0
  14. {garf_core-0.1.3 → garf_core-0.1.4.post0}/garf_core/report_fetcher.py +0 -0
  15. {garf_core-0.1.3 → garf_core-0.1.4.post0}/garf_core.egg-info/SOURCES.txt +0 -0
  16. {garf_core-0.1.3 → garf_core-0.1.4.post0}/garf_core.egg-info/dependency_links.txt +0 -0
  17. {garf_core-0.1.3 → garf_core-0.1.4.post0}/garf_core.egg-info/entry_points.txt +0 -0
  18. {garf_core-0.1.3 → garf_core-0.1.4.post0}/garf_core.egg-info/requires.txt +0 -0
  19. {garf_core-0.1.3 → garf_core-0.1.4.post0}/garf_core.egg-info/top_level.txt +0 -0
  20. {garf_core-0.1.3 → garf_core-0.1.4.post0}/pyproject.toml +0 -0
  21. {garf_core-0.1.3 → garf_core-0.1.4.post0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: garf-core
3
- Version: 0.1.3
3
+ Version: 0.1.4.post0
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
@@ -12,4 +12,4 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- __version__ = '0.1.3'
15
+ __version__ = '0.1.4.post0'
@@ -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
3
+ Version: 0.1.4.post0
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