I have a problem reading big json file. JSONDecodeError: Extra data: line 1 column 884 (char 883).
The files test2.json is here: https://github.com/SilverYar/TransportDataMiner
The error is due to these lines of line code:
import nltk
from nltk.stem.snowball import RussianStemmer
from nltk.corpus import stopwords
import nltk, string, json
with open('C:\\Creme\\token\\test2.json') as fin:
text = json.load(fin)
I don’t understand how to fix it. Help me fix it.