This repository was archived by the owner on Mar 6, 2026. It is now read-only.
feat: microgen - adds _helpers.py.j2 template#2287
Merged
Conversation
1 task
tswast
reviewed
Sep 15, 2025
| @@ -0,0 +1,79 @@ | |||
| from typing import Any, Dict, List, Optional, Type | |||
Contributor
There was a problem hiding this comment.
Nit: I presume we'll need a license header here?
tswast
approved these changes
Sep 15, 2025
chalmerlowe
added a commit
that referenced
this pull request
Sep 18, 2025
* chore: removes old proof of concept * removes old __init__.py * Adds two utility files to handle basic tasks * Adds a configuration file for the microgenerator * Removes unused comment * chore: adds noxfile.py for the microgenerator * feat: microgen - adds two init file templates * feat: microgen - adds _helpers.py.j2 template (#2287) * feat: adds _helpers.py.js template * Updates with two usage examples * updates the license header
chalmerlowe
added a commit
that referenced
this pull request
Sep 18, 2025
…tures (#2288) * chore: removes old proof of concept * removes old __init__.py * Adds two utility files to handle basic tasks * Adds a configuration file for the microgenerator * Removes unused comment * chore: adds noxfile.py for the microgenerator * feat: microgen - adds two init file templates * feat: adds _helpers.py.js template * Updates with two usage examples * feat: adds two partial templates for creating method signatures * feat: microgen - adds _helpers.py.j2 template (#2287) * feat: adds _helpers.py.js template * Updates with two usage examples * updates the license header * feat: Add microgenerator __init__.py (#2291) Migrates the empty __init__.py file to the microgenerator package. * adds comment explaining source of *Request names * adds comment regarding request_id_args
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This adds one template used to generate a
_helpers.pyfile that will be used by the centralized client.The main purpose of the
_create_request()function is to accept a string-based resource identifier (e.g."project_id.dataset_id"and use it to help create a*Requestobject.It is used inside of each action method (e.g.
get_dataset(),list_tables(),delete_routine()) as a convenience function so that users can provide string locations.