hy guys, im trying to set up a CSV extractor. Howe...
# singer-taps
i
hy guys, im trying to set up a CSV extractor. However, when I use the "meltano config tap-csv test" command to test it, I get an error message saying "Plugin configuration is invalid 'utf-8' codec can't decode byte 0xc1 in position 32: invalid start byte". But my CSV looks fine, I've double-checked and there's nothing outside of utf8. Any idea what might be going on? (I tried to put another csv in extractor, but the same error appeared)
e
You could try using the
normalizer
tool to confirm the encoding of your file. You can install it with
pipx install charset-normalizer
. Then, to check the encoding of a file, you can simply do something like:
Copy code
normalizer my_file.csv