I am trying to open csv table and use it with sqlite. I've tried several methods but they all result with a table which inserts \n instead of a blank space ' ' or  letters. I tried to change the encoding but everything i do seems to end up with the same format. Please help! This is my code:
import csv_to_sqlite
options=csv_to_sqlite.CsvOptions(typing_style='full', encoding='windows-1250')
input_file = ["./datasets/choco_flavors/flavors_of_cacao.csv"]
csv_to_sqlite.write_csv(input_file, "flavors_of_cacao.sqlite", options)
con=sqlite3.connect("flavors_of_cacao.sqlite")
filter_data=pd.read_sql_query("""SELECT * FROM flavors_of_cacao""",con)
and the result of the first column title is "Company \n(Maker-if known)"
Thank you