You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: csv_parser/README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,18 @@
1
1
# Installation
2
2
```bash
3
-
pip install -r requirements.txt
3
+
uv sync
4
4
```
5
-
For the UML generator (run automatically within the CSV parser), in addition to the `requirements.txt`, you need to install graphviz on your execution environment https://graphviz.org/
5
+
For the UML generator (run automatically within the CSV parser), in addition to the Python dependencies, you need to install graphviz on your execution environment https://graphviz.org/
6
6
7
7
# Usage
8
8
## CSV Parser
9
9
```bash
10
10
# Params to specify the sheet and version
11
11
# by default, integrate uml generation process
12
-
python csv_parser.py -s RC-DE -v 0.5
13
-
python csv_parser.py --sheet RC-DE --version 0.5
12
+
uv run python csv_parser.py -s RC-DE -v 0.5
13
+
uv run python csv_parser.py --sheet RC-DE --version 0.5
0 commit comments