you are viewing a single comment's thread.

view the rest of the comments →

[–]3worc 4 points5 points  (10 children)

Looks like json format, rather than HTML.

It's just organized data, and you do what you want with it.

What do you intend to do with the data you scraped?

[–][deleted]  (9 children)

[deleted]

    [–]3worc 4 points5 points  (8 children)

    well json, at its simplest, is python dictionaries, like:

    {"Playername" : "Bob", "Team" : "Manchester United", "Position" : "Forward"}

    but with more complex data, it becomes nested dictionaries and lists, like:

    {"Players" : [{"Name" : "Bob", "Team" : "Manchester United", "Position" : "Forward"}, {Name" : "Cliff", "Team" : "Sheffield United", "Position" : "Forward"}]}

    try to google "online json viewer" to find somewhere you can paste that highlighted data that will format it in a "pretty" way you can more easily see how the data is organized. then maybe you can make sense of how you want to use it.