Compare commits

...

2 Commits

Author SHA1 Message Date
Laurent
c78cad3b64 Clarify project goals and simplify scope 2026-02-08 10:53:07 +01:00
Laurent
caef0eb294 feat: add project structure with placeholder files
Co-authored-by: aider (openai/unsloth/Qwen3-Coder-Next) <aider@aider.chat>
2026-02-07 16:48:33 +01:00
9 changed files with 23 additions and 7 deletions

View File

@@ -1,13 +1,18 @@
# Leclerc Ticket Analyzer # Leclerc Ticket Analyzer
Analyse et compréhension de tickets de caisse Leclerc. Projet personnel pour analyser des tickets de caisse Leclerc.
## Objectif ## Objectif
- Importer des tickets - Importer des tickets de caisse (PDF, image ou texte)
- Extraire les données utiles - Extraire les informations utiles (date, articles, prix, total)
- Analyser les dépenses - Analyser les dépenses (par période, par catégorie)
## Statut ## Philosophie
Projet en cours de construction. - Projet simple et progressif
# leclerc-ticket-analyzer - Pas d'application web pour l'instant
- Analyse locale, orientée compréhension des dépenses
## Structure prévue
- data/ : tickets bruts et données traitées
- src/ : code d'extraction et d'analyse
- output/ : résultats (CSV, graphiques)

4
config/settings.json Normal file
View File

@@ -0,0 +1,4 @@
{
"app_name": "Leclerc Ticket Analyzer",
"version": "1.0.0"
}

1
docs/api.md Normal file
View File

@@ -0,0 +1 @@
# API Documentation

1
requirements.txt Normal file
View File

@@ -0,0 +1 @@
# Python dependencies

1
src/main.py Normal file
View File

@@ -0,0 +1 @@
# Main entry point for Leclerc Ticket Analyzer

1
src/models/ticket.py Normal file
View File

@@ -0,0 +1 @@
# Ticket model definition

1
src/utils/helpers.py Normal file
View File

@@ -0,0 +1 @@
# Utility helper functions

1
tests/test_main.py Normal file
View File

@@ -0,0 +1 @@
# Tests for main functionality

View File

@@ -0,0 +1 @@
# Tests for helper functions