» JSON parser
This site relies heavily on Javascript. You should enable it if you want the full experience. Learn more.

JSON parser

plugin
Credits: http://james.newtonking.com/projects/json-net.aspx http://sanchtv.com

about

simple json parser plugin with json.net

download

pluginJson.zip
31.08.12 [19:13 UTC] by sanch | 2008 downloads

sebl 05/10/2012 - 10:51

nice plugin, but wouldn't this make it "really" spreadable:

[PluginInfo(Name = "JsonParser", Category = "JSON", Help = "parse json string", Tags = "")]
public class JsonParser : IPluginEvaluate
{
    #region fields & pins
    [Input("JSON", DefaultString = "hello")]
    IDiffSpread<string> FInput;
 
    [Output("Output json")]
    ISpread<JObject> FJOutput;
 
    [Import()]
    ILogger FLogger;
    #endregion fields & pins
    //called when data for any output pin is requested
 
    public void Evaluate(int SpreadMax)
    {
        FJOutput.SliceCount = SpreadMax;
 
        if(FInput.IsChanged )
        {
            FJOutput[0] = JObject.Parse(FInput[0]);
        }
    }
}
sanch 05/10/2012 - 13:53

Yes the json itself is not spreadable , i didn't really needed that feature so i left it that way , but well source is here feel free to make it spredable.

sebl 05/10/2012 - 19:13

yes, i think it's just that few lines above... if someone with json knowledge confirms that working, i can update the contrib.

though it's needed or not, i alwayys try™ to make new nodes asap*

  • asap = as spreadable as possible
sanch 05/10/2012 - 20:14

I think it should work , but the problem will be that you'll have to change the other node to have json input spreadable as well , add a binsyze for the query node otherwise there will be no way to know wich query go with wich json.
Actually an easier way will be to add all the json together with +(string spectral) node with the correct json formatting and query it as a single json , much more easy than dealing with binsyze stuff and at the end you got the same result.
The node for the list is also not spreadable , but could be without to much work , as well a binsyze output will be needed to identify the ouput data with the corresponding query.

Usually when i don't have time, i don't care about doing stuff i don't need , but i still share the result...

herbst 23/02/2013 - 18:28

As alternative to that, fully spreadable:
((json-aselement,)) which parses JSON directly to XElement using the .NET builtin parser.

Of course, with XElement you still have the headache of caring about binsizes and stuff further down the expanding-lots-of-single-things-into-lots-of-spreaded-things road.

sansui 28/03/2014 - 14:50

sanch, hi
I used this plugin very usefully.
but, I have a trouble in parse of using JSON Array node.
{key1 :{key2:value2}, {key3:value3}, {key4:value4} }
this data could parse successfully.
but this data couldn't in case of just only json array except of key.{key2:value2}, {key3:value3}, {key4:value4}
maybe, I think JSON Array node always need path value.

andresc4 16/01/2018 - 00:54

I would like to filter bitcoin price from here
https://api.coinmarketcap.com/v1/ticker/?limit=10
but im not getting how to use this

anonymous user login

Shoutbox

~2d ago

joreg: vvvvTv S0204 is out: Custom Widgets with Dear ImGui: https://youtube.com/live/nrXfpn5V9h0

~2d ago

joreg: New user registration is currently disabled as we're moving to a new login provider: https://visualprogramming.net/blog/2024/reclaiming-vvvv.org/

~9d ago

joreg: vvvvTv S02E03 is out: Logging: https://youtube.com/live/OpUrJjTXBxM

~11d ago

~13d ago

joreg: Follow TobyK on his Advent of Code: https://www.twitch.tv/tobyklight

~16d ago

joreg: vvvvTv S02E02 is out: Saving & Loading UI State: https://www.youtube.com/live/GJQGVxA1pIQ

~16d ago

joreg: We now have a presence on LinkedIn: https://www.linkedin.com/company/vvvv-group

~23d ago

joreg: vvvvTv S02E01 is out: Buttons & Sliders with Dear ImGui: https://www.youtube.com/live/PuuTilbqd9w

~30d ago

joreg: vvvvTv S02E00 is out: Sensors & Servos with Arduino: https://visualprogramming.net/blog/2024/vvvvtv-is-back-with-season-2/

~30d ago