When I've made any type of command line based app before, the only method I've used to display output has been something like print(stuff); or System.Console.print(moreStuff);.
However, I have seen and used console applications (nano is an example) that take control of the whole console window.
I am writing a console app (in python) that I think may be suited to this approach.
So, how can I achieve this (in python) (and preferably so that it works on Windows and Linux)?
Does the technique have a name?
By linear I mean like this:
->Searching for files...
->10 files found...
->Analyzing files...
When I'd like something more like:
->Searching files in directory [current_dir_goes_here]
->10 files found
->Analyzing [filename.txt]