content/posts/2022-08.md: syntax fix

This commit is contained in:
Alan Orth 2023-02-22 11:59:48 +03:00
parent 47f2c6c17f
commit ba6f826201
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 2 additions and 2 deletions

View File

@ -165,7 +165,7 @@ $ xsv join --left id ~/Downloads/2022-08-18-MELIAs-UTF-8-With-Files.csv id ~/Dow
- I was previously splitting up the text value field (title/abstract/etc) by spaces and searching for each word in the list of terms/countries like this:
```console
with open(r"/tmp/cgspace-countries.txt",'r') as f :
with open(r"/tmp/cgspace-countries.txt",'r') as f:
countries = [name.rstrip().lower() for name in f]
return "||".join([x for x in value.split(' ') if x.lower() in countries])
@ -176,7 +176,7 @@ return "||".join([x for x in value.split(' ') if x.lower() in countries])
```console
import re
with open(r"/tmp/agrovoc-subjects.txt",'r') as f :
with open(r"/tmp/agrovoc-subjects.txt",'r') as f:
terms = [name.rstrip().lower() for name in f]
return "||".join([term for term in terms if re.match(r".*\b" + term + r"\b.*", value.lower())])