feat: add documentation, Streamlit GUI, and full source tree

- Rewrite README.md with project overview, quick-start, and CLI summary
- Add docs/CLI-REFERENCE.md with full flag reference and 8 recipe sections
- Add docs/DEVELOPER.md with architecture, data flow, and extension guides
- Rewrite src/core/__init__.py with public API exports and module docstring
- Add Streamlit GUI (src/gui/) with file upload, advanced options, interactive
  match group review with side-by-side diff, and download buttons
- Add .gitignore, requirements.txt, all source code, tests, and sample data
- Add streamlit to requirements.txt

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-28 23:06:39 +00:00
parent 0613dc420c
commit b871ab24fc
47 changed files with 4413 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
customer_id,name,email
B001,Andersén,andersen@example.com
B002,Andersen,andersen@example.com
B003,Smith,smith@example.com
B004,SMITH,Smith@Example.com
B005,Lee,lee@example.com
1 customer_id name email
2 B001 Andersén andersen@example.com
3 B002 Andersen andersen@example.com
4 B003 Smith smith@example.com
5 B004 SMITH Smith@Example.com
6 B005 Lee lee@example.com