Created
January 26, 2020 07:44
-
-
Save mturilin/699a50d0433010708350b8befe4f97a2 to your computer and use it in GitHub Desktop.
Converst TextExpander csv to espanso yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import yaml | |
import sys | |
import csv | |
# create root yaml | |
matches = [] | |
# open file | |
filename = sys.argv[1] | |
with open(filename, newline='') as csvfile: | |
csv_reader = csv.reader(csvfile, delimiter=',', quotechar='"') | |
for row in csv_reader: | |
matches.append({ | |
'trigger': row[0], | |
'replace': row[1] | |
}) | |
# dump results into a file | |
espanso_root = { | |
'parent': 'default', | |
'matches': matches | |
} | |
new_filename = filename[:-4]+".yml" | |
dump = yaml.dump(espanso_root, encoding='utf-8', allow_unicode=True) | |
print(dump) | |
with open(new_filename,'wb') as new_file: | |
new_file.write(dump) | |
print(F"Created {new_filename}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Kmfernan5 Try
Then, assuming it works, look for a
YOUR_TEXTEXPANDER_EXPORT_FILE.yml
file in the same folder as the CSV export.If you have trouble with the
DRIVE:\
parts, it helps to drag and drop the filename from the Windows file manager into the PowerShell window. The same trick will work on other platforms, e.g., macOS and Linux.To be clear, I have not tested this script personally—on Windows, or any other platform—I just recognized the error that you made trying to run the script with Python. You need to supply the name of the script to the
python
program, and then the pathname of the CSV export from TextExpander as an additional argument.