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
poetry run graphedexcel <path_to_excel_file> [options]
60
99
```
61
100
62
-
## Usage
101
+
## Using the CLI tool and its varous options
63
102
64
103
```bash
65
104
python -m graphedexcel <path_to_excel_file>
@@ -208,7 +247,7 @@ This will render the graph using the custom settings defined in the JSON file.
208
247
Just run pytest in the root folder.
209
248
210
249
```bash
211
-
pytest
250
+
poetry run pytest
212
251
```
213
252
214
253
### Bandit Security Tests
@@ -219,16 +258,3 @@ It will report on medium and high severity safety issues.
219
258
```bash
220
259
poetry run bandit -c pyproject.toml -r . -lll
221
260
```
222
-
223
-
## Run with Docker
224
-
225
-
If you don't want to install the python dependencies on your machine, you can run the script in a Docker container. The following command will build the Docker image and run the script on the sample `docs/Book1.xlsx` file.
226
-
227
-
With a powershell terminal:
228
-
229
-
```powershell
230
-
docker build -t graphedexcel .
231
-
docker run --rm -v ${pwd}/docs:/app/docs graphedexcel docs/Book1.xlsx -o docs/av.png
0 commit comments