├── .gitignore ├── Beautifier ├── Beautifier.py └── __init__.py ├── LICENSE ├── README.rst ├── example.c ├── setup.py └── valgreen /.gitignore: -------------------------------------------------------------------------------- 1 | ejemplo 2 | __pycache__ -------------------------------------------------------------------------------- /Beautifier/Beautifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaccini/valgreen/HEAD/Beautifier/Beautifier.py -------------------------------------------------------------------------------- /Beautifier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaccini/valgreen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaccini/valgreen/HEAD/README.rst -------------------------------------------------------------------------------- /example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaccini/valgreen/HEAD/example.c -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaccini/valgreen/HEAD/setup.py -------------------------------------------------------------------------------- /valgreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaccini/valgreen/HEAD/valgreen --------------------------------------------------------------------------------