python read from .json code example
Example: reading json
Not that difficult really it's just a formatted array that is made
in such a way to be human readable and also parsed by a piece of code
(parsing example:
https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Objects/JSON )
but the main things to remember is that it is grouped so there may be lots of
"names" in one part of a json file but this allows you to just find the names
section and see all info inside. :) hope this helped