This project is a lightweight Python module to render SVG trees like the following:
The documentation of πΏ pytreesvg is available at https://pytreesvg.readthedocs.io/en/latest/.
πΏ pytreesvg guarantees that the output SVG file strictly follows the W3C SVG 1.1 (Second Edition) Recommendation.
This module aims to be extremely basic and simple of use, thus it is based on no other existing modules. If you are looking for something more complex please take a look at Graphviz and the existing Python implementations.
To clone this repository on your local computer please run:
$ git clone https://github.com/PierreGuilmin/pytreesvg.git
- pipenv
The documentation of πΏ pytreesvg is available at https://pytreesvg.readthedocs.io/en/latest/.
It is built with Sphinx and updated every time a commit is pushed on the GitHub repository master branch.
-
doc/
: directory holding the Sphinx related files. -
images/
: project images. -
pytreesvg/
: the main Python module. -
temp/
: drafts, temporary files and old scripts.β οΈ This directory should not be versionned. -
test/
: Pythonunittest
directory for thepytreesvg
module.
Please use the following table to commit code:
emoji | meaning | code |
---|---|---|
π | critical bug | :sos: |
bug | :warning: |
|
π¦ | simplification/clarification | :flashlight: |
π | comment | :clipboard: |
β¨ | typos & style | :sparkles: |
π | new feature | :tada: |
βοΈ | minor modification | :cloud: |
For example if you want to commit a new rocket feature β π new feature, flying rocket!
β please do:
# bad syntax
- $ git commit -m 'new feature, flying rocket!'
# good syntax
+ $ git commit -m ':tada: new feature, flying rocket!'