Compare commits
2 Commits
fb2b38218c
...
c78cad3b64
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c78cad3b64 | ||
|
|
caef0eb294 |
19
README.md
19
README.md
@@ -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
4
config/settings.json
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"app_name": "Leclerc Ticket Analyzer",
|
||||||
|
"version": "1.0.0"
|
||||||
|
}
|
||||||
1
docs/api.md
Normal file
1
docs/api.md
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# API Documentation
|
||||||
1
requirements.txt
Normal file
1
requirements.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Python dependencies
|
||||||
1
src/main.py
Normal file
1
src/main.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Main entry point for Leclerc Ticket Analyzer
|
||||||
1
src/models/ticket.py
Normal file
1
src/models/ticket.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Ticket model definition
|
||||||
1
src/utils/helpers.py
Normal file
1
src/utils/helpers.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Utility helper functions
|
||||||
1
tests/test_main.py
Normal file
1
tests/test_main.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Tests for main functionality
|
||||||
1
tests/test_utils/test_helpers.py
Normal file
1
tests/test_utils/test_helpers.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Tests for helper functions
|
||||||
Reference in New Issue
Block a user