2021-09-16 13:51:22 +03:00
|
|
|
# turinglab
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
2021-09-16 16:59:52 +03:00
|
|
|
```bat
|
2022-10-19 10:05:46 +03:00
|
|
|
pip install git+https://git.slipenko.com/UniversityProjects/turinglab.git
|
2021-09-16 13:51:22 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
## Develop
|
|
|
|
|
2021-09-16 16:59:52 +03:00
|
|
|
```bat
|
2021-09-16 13:51:22 +03:00
|
|
|
python setup.py develop
|
|
|
|
```
|
2021-09-16 16:59:52 +03:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
```bat
|
2021-09-20 12:23:29 +03:00
|
|
|
turinglab input_file output_dir [-t TESTS [TESTS ...]] [-e EMPTY_CHARACTER] [-f]
|
2021-09-16 16:59:52 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
### Example
|
|
|
|
|
|
|
|
```bat
|
2021-09-19 09:22:50 +03:00
|
|
|
turinglab 0to1to0.txt .\out -t 101 1E -e E -f
|
|
|
|
```
|
|
|
|
or
|
|
|
|
```bat
|
|
|
|
turinglab 0to1to0.txt .\out --tests 101 1E --empty-character E --force
|
2021-09-16 16:59:52 +03:00
|
|
|
```
|
|
|
|
|
2021-09-19 00:33:01 +03:00
|
|
|
Content of ```out\report.docx```:
|
|
|
|
|
2021-09-19 09:22:50 +03:00
|
|
|
![image](https://user-images.githubusercontent.com/36362599/133917663-f725d137-e33e-4440-8640-15262120c5bb.png)
|
2021-09-19 00:33:01 +03:00
|
|
|
|
|
|
|
Content of ```out\graph.svg```:
|
|
|
|
|
|
|
|
![image](https://user-images.githubusercontent.com/36362599/133909074-e1928d40-263f-4c80-94ef-4ae495662419.png)
|
2021-09-16 16:59:52 +03:00
|
|
|
|