Metadata-Version: 2.4
Name: csv-to-dot
Version: 0.0.2
Summary: Convert a 2 columns CSV file to a .dot, who can be converted with Graphviz to .jpg, .ps, ...
Author-email: Valentin Henon <vhenon@mindbaz.com>
License-Expression: GPL-3.0-only
Project-URL: repository, https://github.com/Mindbaz/python-csv-to-dot
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Jinja2
Provides-Extra: dev
Requires-Dist: pynose; extra == "dev"
Requires-Dist: coverage; extra == "dev"
Dynamic: license-file

# Csv > Dot

Convert a 2 columns CSV file to a .dot, who can be converted with
[Graphviz](https://graphviz.org/) to .jpg, .ps, ...

# How to use it

```sh
python entry_points_csv_to_dot/csv_to_dot.py -h
> usage: csv_to_dot [-h] [--csv-file [CSV_FILE]] [--csv-delim [CSV_DELIM]] [--dot-file [DOT_FILE]] [--nodes-shape [NODES_SHAPE]] [--nodes-style [NODES_STYLE]] [--nodes-bg-color [NODES_BG_COLOR]] [--nodes-font-color [NODES_FONT_COLOR]] [--version]
```

* Available node shapes : https://graphviz.org/doc/info/shapes.html
* Node styles : https://graphviz.org/doc/info/shapes.html#styles-for-nodes
* Node font/background colors : https://graphviz.org/docs/attr-types/color/

# Support version

Python : `>=3.9`
