I am new in Python and I am using curses for my script.
But when I am try to run the script in server(let say 1) I am getting below error.
_curses.error: addstr() returned ERR
And the same script when I am try to run in another server(let say 2) it is running successfully.
The reason is server 1 is producing more data to display on screen and server 1 is producing less data to display on screen.
So while searching found that curses.intscr() getting the screen size fixed and that's why it is producing error.
So is there any way to overcome it or to increase the screen resolution.
And I am executing this script in linux.