Clearing screen in Python using curses?


 
Thread Tools Search this Thread
Top Forums Programming Clearing screen in Python using curses?
# 1  
Old 08-19-2008
Clearing screen in Python using curses?

Hi guys,

I've got the following code for clearing the screen in my Python shell using curses:

Code:
import curses 

scrn = curses.initscr() 
scrn.clear()

However, upon execution, my shell crashes. Would appreciate a pointer in the right direction. Thanks. Smilie
# 2  
Old 08-19-2008
if you are using bash try this
import os
os.system("clear")
# 3  
Old 08-19-2008
Quote:
Originally Posted by vidyadhar85
if you are using bash try this
import os
os.system("clear")
Thanks for that but I was looking to make it work independent of the shell.
# 4  
Old 08-19-2008
vidyadhar IMHO the problem is not clear. When we initscr() there is a call to tcsetattr() to change terminal attributes (termios). The real problem is that he's not calling endwin() when he terminates his program.

Code:
import curses

scrn = curses.initscr()
scrn.clear()
curses.endwin()

# 5  
Old 08-19-2008
Quote:
Originally Posted by redoubtable
vidyadhar IMHO the problem is not clear. When we initscr() there is a call to tcsetattr() to change terminal attributes (termios). The real problem is that he's not calling endwin() when he terminates his program.

Code:
import curses

scrn = curses.initscr()
scrn.clear()
curses.endwin()

Got it working great. Thanks for that guys, overlooked the fact that I had to endwin().
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Python Screen Capture of RIGOL 1054Z on macOS Catalina Using NI-VISA

On the NI-VISA boards there has been some frustration where folks cannot get NI-VISA to work on macOS Catalina because Catalina (macOS 10.15.x) is "not supported" by NI-VISA (for many months, it seems). Currently, the README shows: NI-VISA 19.0 for macOS supports the following platforms: ... (10 Replies)
Discussion started by: Neo
10 Replies

2. UNIX for Dummies Questions & Answers

Accidentally made a screen within a screen - how to move it up one level?

I made a screen within a screen. Is there a way to move the inner screen up one level so that it is at the same level as the first screen running from the shell? (2 Replies)
Discussion started by: phpchick
2 Replies

3. Shell Programming and Scripting

Python regular expression screen scrub

Hi I am trying to write a python script that executes a command to screen scrub results below I will appreciate it very much if you can help me with a python script that can pick the percentage USAGE in the second column based on the supplied queue number in the first column import re... (0 Replies)
Discussion started by: kaf3773
0 Replies

4. Shell Programming and Scripting

Clearing part of screen in Korn Shell

Hi, I am writing a menu driven Korn script where I am getting some input from the users (host details, like Hostname, HBA WWN, Devices etc...). I face a challenge when the number of input lines goes past my window size. For this reason, I am planning to use a part of the screen for user input, say... (3 Replies)
Discussion started by: lasko
3 Replies

5. Red Hat

command line tool to disable screen lock and/or screen saver

Hi, I have a simple question : how to disable screen lock and/or sreen saver with command line with RHEL5.4 ? (1 Reply)
Discussion started by: albator1932
1 Replies

6. Programming

python curses , segmentation fault on screen.addstr()

I have an application that's running curses on a weird linux environment... a lot of the base paths of stuff are non standard. But other screen applications run fine. I've set TERMINFO_DIRS and gotten the ncurses application to run. Using a nonstandard terminfo path. I see windows draw up... (5 Replies)
Discussion started by: openfly
5 Replies

7. UNIX for Advanced & Expert Users

How to disable the clearing of the first page when executing screen tool

Hi Guy, In order to monitor the user sessions, I have put the screen tool in the .profile in order to record the whole session. However, when the user logs in, the screen command is executed and the screen is first cleared, then the command prompt appears. so, I basically want to disable the... (2 Replies)
Discussion started by: saad26
2 Replies

8. Programming

curses.h

hi all i get a segmentation fault error in the following program. couldn't understand why it happens. can anyone explain what is really happening. s1.c #include<curses.h> main(){ int c; noecho(); cbreak(); c=getch(); printf("%c",(char)c); } I compiled this program as cc s1.c... (2 Replies)
Discussion started by: bankpro
2 Replies

9. Shell Programming and Scripting

PERL: clearing the screen

I would like to clear the screen in perl scripts without having to use system(). Is there a way to do this? (7 Replies)
Discussion started by: dangral
7 Replies

10. UNIX for Dummies Questions & Answers

curses.h

hi i'd like to know how to draw a rectangle using the curses.h library, you know with all the WINDOW *newwin stuff and all thanx!:) (1 Reply)
Discussion started by: chomano
1 Replies
Login or Register to Ask a Question