konklone / json

A free, in-browser JSON to CSV converter.
https://konklone.io/json/
Other
755 stars 211 forks source link

Error parsing some specific JSON #176

Closed Dasybao closed 6 years ago

Dasybao commented 7 years ago

I'm having an issue converting this JSON:

{
  "aliceblue": [240, 248, 255, 1],
  "antiquewhite": [250, 235, 215, 1],
  "aqua": [0, 255, 255, 1],
  "aquamarine": [127, 255, 212, 1],
  "azure": [240, 255, 255, 1],
  "beige": [245, 245, 220, 1],
  "bisque": [255, 228, 196, 1],
  "black": [0, 0, 0, 1],
  "blanchedalmond": [255, 235, 205, 1],
  "blue": [0, 0, 255, 1],
  "blueviolet": [138, 43, 226, 1],
  "brown": [165, 42, 42, 1],
  "burlywood": [222, 184, 135, 1],
  "cadetblue": [95, 158, 160, 1],
  "chartreuse": [127, 255, 0, 1],
  "chocolate": [210, 105, 30, 1],
  "coral": [255, 127, 80, 1],
}
konklone commented 7 years ago

You've got a stray comma at the end of the last row.

Dasybao commented 7 years ago

Many thanks Konklone Now I still look for a way to adapt your Python parsing method on Ruby.