garf-executors 0.0.8__tar.gz → 0.0.8.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.

Potentially problematic release.


This version of garf-executors might be problematic. Click here for more details.

Files changed (22) hide show
  1. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/PKG-INFO +1 -1
  2. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/garf_executors/__init__.py +1 -1
  3. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/garf_executors/api_executor.py +3 -1
  4. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/garf_executors.egg-info/PKG-INFO +1 -1
  5. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/README.md +0 -0
  6. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/garf_executors/bq_executor.py +0 -0
  7. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/garf_executors/entrypoints/__init__.py +0 -0
  8. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/garf_executors/entrypoints/cli.py +0 -0
  9. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/garf_executors/entrypoints/server.py +0 -0
  10. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/garf_executors/entrypoints/utils.py +0 -0
  11. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/garf_executors/exceptions.py +0 -0
  12. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/garf_executors/execution_context.py +0 -0
  13. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/garf_executors/executor.py +0 -0
  14. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/garf_executors/fetchers.py +0 -0
  15. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/garf_executors/sql_executor.py +0 -0
  16. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/garf_executors.egg-info/SOURCES.txt +0 -0
  17. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/garf_executors.egg-info/dependency_links.txt +0 -0
  18. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/garf_executors.egg-info/entry_points.txt +0 -0
  19. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/garf_executors.egg-info/requires.txt +0 -0
  20. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/garf_executors.egg-info/top_level.txt +0 -0
  21. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/pyproject.toml +0 -0
  22. {garf_executors-0.0.8 → garf_executors-0.0.8.post0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: garf-executors
3
- Version: 0.0.8
3
+ Version: 0.0.8.post0
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
@@ -42,4 +42,4 @@ __all__ = [
42
42
  'ApiExecutionContext',
43
43
  ]
44
44
 
45
- __version__ = '0.0.8'
45
+ __version__ = '0.0.8.post0'
@@ -51,8 +51,10 @@ class ApiQueryExecutor(executor.Executor):
51
51
 
52
52
  @classmethod
53
53
  def from_fetcher_alias(
54
- cls, source: str, fetcher_parameters: dict[str, str]
54
+ cls, source: str, fetcher_parameters: dict[str, str] | None = None
55
55
  ) -> ApiQueryExecutor:
56
+ if not fetcher_parameters:
57
+ fetcher_parameters = {}
56
58
  concrete_api_fetcher = fetchers.get_report_fetcher(source)
57
59
  return ApiQueryExecutor(concrete_api_fetcher(**fetcher_parameters))
58
60
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: garf-executors
3
- Version: 0.0.8
3
+ Version: 0.0.8.post0
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