My python app calls MSSQL 2017 function trough pyodbc and function query response is JSON formatted on the server side.
cursor.execute("SELECT dbo.fnInvoiceJSON(%s,%s);" % (posted,vat))
row = cursor.fetchone()
Response that returns in the app is a class 'pyodbc.Row
like it should be.
I can pass this response trough requests.post
to other API call if i convert this to to string.
Is there any way to convert this response a accessible python dict / JSON object?