About 1,030,000 results
Open links in new tab
  1. How to flatten multilevel/nested JSON? - Stack Overflow

    I am trying to convert JSON to CSV file, that I can use for further analysis. Issue with my structure is that I have quite some nested dict/lists when I convert my JSON file. I tried to use pandas

  2. Using jq to extract values from column-oriented JSON and format …

    I would like to have a CSV file in this format, where the header come from the value of a column's displayName and the data in the column is the singular value key's value: First Name, Last …

  3. Converting a csv file to json using C# - Stack Overflow

    System.Web.Script.Serialization.JavaScriptSerializer().Serialize(csv); You might have more complex parsing requirements for the csv file and you might have a class that encapsulates …

  4. How to retrieve values from json object using awk or sed

    Aug 1, 2018 · JSON is structured data, by using tools that are unaware of the structure (awk, sed) you run the risk of creating regex matching that's very brittle and will fail because it's not taking …

  5. Convert JSON to CSV using PowerShell - Stack Overflow

    JSON strings do not always represent rectangular data sets. They may contain ragged data. For example, the Power BI activities log outputs JSON that contains different members depending …

  6. Convert json to csv with headers in jq - Unix & Linux Stack Exchange

    Aug 25, 2023 · Convert json to csv with headers in jq Ask Question Asked 2 years, 3 months ago Modified 10 months ago

  7. python - How can I convert JSON to CSV? - Stack Overflow

    Dec 9, 2009 · With the pandas library, this is as easy as using two commands! df = pd.read_json() read_json converts a JSON string to a pandas object (either a series or dataframe). Then: …

  8. Handling null (empty array) while converting json to csv with jq?

    Jul 15, 2019 · Handling null (empty array) while converting json to csv with jq? Ask Question Asked 6 years, 4 months ago Modified 6 years, 4 months ago

  9. How to convert CSV file to multiline JSON? - Stack Overflow

    How about using Pandas to read the csv file into a DataFrame (pd.read_csv), then manipulating the columns if you want (dropping them or updating values) and finally converting the …

  10. Convert json mapping object to managed csv row using bash script

    Convert json mapping object to managed csv row using bash script Ask Question Asked 11 years, 4 months ago Modified 2 years, 3 months ago