I would like to know how to read several json files from a single folder (without specifying the files names, just that they are json files).
json
Also, it
Iterating a (flat) directory is easy with the glob module
from glob import glob for f_name in glob('foo/*.json'): ...
As for reading JSON directly into pandas, see here.
pandas