So I've got a bunch of JSON files that I'm trying to parse. Here's an excerpt from one of the files I'm working on: https://pastebin.com/MQiQyvXH
Pretty much what I'm trying to do is select all of the text between: "FileList":[{"Path":
and "Size"
(which happens hundreds of times throughout the file), and output that to a text file. I tried to do something in Python, but couldn't get it to work. So for the example I gave, I want La.317eme.Section.1965.DVDRip.x264-YOYO.mkv
in a text file. I have a list of about a thousand JSON responses with about 200 releases with -YOYO.mkv, and I'm trying to get a list of all of the -YOYO.mkv releases from the list.
Thanks!