Here is my sample string:
[true, {"name": "NameofItem", "amount": "1", "price": 100, "sellerName": "Sellername1", "sellerId": 1},
{"name": "NameofItem2", "amount": "1", "price": 101, "sellerName": "Sellername2", "sellerId": 2}, 22250]
I need to find a way of grabbing the first instance of "price" and it's affiliated integer. I thought I could use re.match and
(\{.*?\}) to get a first set of content and then convert to a dictionary, but I can't seem to make that work.