Ability to run python scripts in separate envinronment
As above, we can add to clean coder ability to run python scripts it creating (if we working on python project), run them and see output.
Work in progress
Hey @BuczynskiRafal! Here is my suggestion to make your work more simplier and make you understand project faster: do not bother about separate envinronment for running python scripts for beginning; you can just run them within same env using exec() function of python. exec() allows to run python code from inside of other python code.
In my opinion, at the beginning it's much important to integrate process of running of code in the development pipeline; we'll be bother later about how to run it in clean envinronment.