Joris de Vries

Results 1 comments of Joris de Vries

You can do this by instantiating the `detector` yourself: ```python import csv import html import langdetect with open('rawdata.csv', newline='', encoding="UTF-8") as rawdata: rawreader = csv.reader(rawdata, delimiter=',', quotechar='"') # instantiate the...