-
Notifications
You must be signed in to change notification settings - Fork 0
Quick Start
Nick edited this page Dec 18, 2025
·
1 revision
Get your first chart extracted in 2 minutes.
pip install chart2csvBasic command:
python -m chart2csv.cli.main your_chart.pngThis creates your_chart.csv with the extracted data.
Add --overlay to see what was detected:
python -m chart2csv.cli.main your_chart.png --overlay check.pngOpen check.png to see the detected points highlighted on your chart.
python -m chart2csv.cli.main line_chart.pngexport MISTRAL_API_KEY=your_key
python -m chart2csv.cli.main chart.png --use-mistralpython -m chart2csv.cli.main charts_folder/ --batch --output-dir results/python -m chart2csv.cli.main chart.png --chart-type scatterCSV output example:
x,y
0,10
5,25
10,42
15,38
20,55
- CLI Reference — All command options
- Troubleshooting — If something doesn't work
- FAQ — Common questions