Last updated:
0 purchases
auroraprettyparser 1.0.4
aurora_response_parser
THIS PACKAGE IS NOW PART OF the appsync-tools package Use it instead
https://github.com/QuiNovas/appsync-tools
Parses aurora serverless API responses into a more usable format. Results are returned as a list of dictionaries with the column names being the key.
Nulls (returned by Aurora as isNull) are returned as None types. Any value that can be parsed as json is cast from a string to a list/dictionary.
Responses are returned formated as:
[
{"columnOneName": "value", "columnTwoName": "value"},
{"columnOneName": "value", "columnTwoName": "value"}
]
Where each item in the top level array is a separate row.
Methods
parseResults(records) -> list
Arguments:
records – The records from the API query (execute_statement()[“records”])
Example
from auroraPrettyParser import parseResults
response = client.execute_statement(
secretArn=environ["PG_SECRET"],
database=environ["DB_NAME"],
parameters=parameters,
resourceArn=environ["DB_ARN"],
includeResultMetadata=True,
sql=sql
)
print(parseResults(response))
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.