skip to Main Content

Get column headers dynamically from json in Power Automate

I have a json which looks like: [ { "TimePeriod": "12/12/23 - 12/26/23", "ResourceName": "rob brien", "TimesheetStatus": "Submitted", "SubmittedBy": "rob brien", "LastModified": "12/12/23 7:12 AM", "InvestmentTasks": [ { "InvestmentID": "PRO13796", "Investment": "Credit Risk Regulatory ", "Description": "A3-Dev/Build", "Hours": { "12/12":…

VIEW QUESTION

Broken Json file in python when decoding

I am making a mod manager which opens the mods manifest.json file for name, description, version and dependencies although when its reading the file... i think ill just show you: MANIFEST FILE: { "name": "HookGenPatcher", "version_number": "0.0.5", "website_url": "https://github.com/harbingerofme/Bepinex.Monomod.HookGenPatcher", "description":…

VIEW QUESTION

getting data from JSON in Python

I am trying to isolate several variables from a JSON file I have taken from https://api.weatherapi.com/v1/forecast.json?q='s-Hertogenbosch&days=3&alerts=yes&aqi=yes&key=X Key removed for safety reasons. Therefore I use the following code: import json response = urlopen(url) weer_data = json.loads(response.read()) location = weer_data['location']['name'] temp_current =…

VIEW QUESTION
Back To Top
Search