So, i have an external plain text file that goes like this:
name,event,expenses (ex: Patrick,Lollapalooza,2975.49)
Structured exactly like that. There are A TON of data structured that exactly way in a single file, note that there are no keys, just the values. I can very much make the program read the file and print it without a problem, but i want to turn it into a JSON file so i can turn it into a key:value format, making some data processing easier.
How can i do that? Also, can i extract the values without needing to turn it into a JSON format somehow?
Thanks for the help!