This commit is contained in:
Joachim 2025-04-20 11:29:26 +02:00
commit 7e9e55d131
11 changed files with 324 additions and 0 deletions

5
clean.py Normal file
View file

@ -0,0 +1,5 @@
import re
def clean(input_text):
output_text = re.sub(r'keywords:', ', ', input_text)
output_text = re.sub(r'\n', ', ', input_text)
return output_text