garf-executors 0.0.10__tar.gz → 0.0.11__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 (23) hide show
  1. {garf_executors-0.0.10 → garf_executors-0.0.11}/PKG-INFO +1 -1
  2. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors/__init__.py +1 -1
  3. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors/execution_context.py +2 -0
  4. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors.egg-info/PKG-INFO +1 -1
  5. {garf_executors-0.0.10 → garf_executors-0.0.11}/README.md +0 -0
  6. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors/api_executor.py +0 -0
  7. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors/bq_executor.py +0 -0
  8. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors/config.py +0 -0
  9. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors/entrypoints/__init__.py +0 -0
  10. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors/entrypoints/cli.py +0 -0
  11. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors/entrypoints/server.py +0 -0
  12. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors/entrypoints/utils.py +0 -0
  13. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors/exceptions.py +0 -0
  14. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors/executor.py +0 -0
  15. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors/fetchers.py +0 -0
  16. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors/sql_executor.py +0 -0
  17. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors.egg-info/SOURCES.txt +0 -0
  18. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors.egg-info/dependency_links.txt +0 -0
  19. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors.egg-info/entry_points.txt +0 -0
  20. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors.egg-info/requires.txt +0 -0
  21. {garf_executors-0.0.10 → garf_executors-0.0.11}/garf_executors.egg-info/top_level.txt +0 -0
  22. {garf_executors-0.0.10 → garf_executors-0.0.11}/pyproject.toml +0 -0
  23. {garf_executors-0.0.10 → garf_executors-0.0.11}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: garf-executors
3
- Version: 0.0.10
3
+ Version: 0.0.11
4
4
  Summary: Executes queries against API and writes data to local/remote storage.
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
@@ -48,4 +48,4 @@ __all__ = [
48
48
  'ApiExecutionContext',
49
49
  ]
50
50
 
51
- __version__ = '0.0.10'
51
+ __version__ = '0.0.11'
@@ -55,6 +55,8 @@ class ExecutionContext(pydantic.BaseModel):
55
55
  self.fetcher_parameters = {}
56
56
  if self.writer_parameters is None:
57
57
  self.writer_parameters = {}
58
+ if not self.query_parameters:
59
+ self.query_parameters = query_editor.GarfQueryParameters()
58
60
 
59
61
  @classmethod
60
62
  def from_file(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: garf-executors
3
- Version: 0.0.10
3
+ Version: 0.0.11
4
4
  Summary: Executes queries against API and writes data to local/remote storage.
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