adding data

This commit is contained in:
2025-12-30 16:02:36 +01:00
parent f708f43b43
commit 1d6b86c74e
194 changed files with 133772 additions and 187 deletions

16
update_processed.py Normal file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python3
import re
with open('/Users/jonathan/code/anno-117/processed.md', 'r') as f:
content = f.read()
content = re.sub(
r'- \[~\] anno-117-skills_erfindergeist\.json',
'- [x] anno-117-skills_erfindergeist.json',
content
)
with open('/Users/jonathan/code/anno-117/processed.md', 'w') as f:
f.write(content)
print('Updated anno-117-skills_erfindergeist.json to [x]')