So, after some hard searching, I’ve found out how to use curses for my program.
But I’ve run into an error.
This piece of code:
import curses
stdscr = curses.initscr()
results in this error:
Traceback (most recent call last):
File "C:\Documents and Settings\Home\Bureaublad\curses.py", line 1, in ?
import curses
File "C:\Documents and Settings\Home\Bureaublad\curses.py", line 2, in ?
stdscr = curses.initscr()
AttributeError: 'module' object has no attribute 'initscr'
And I don’t like that attitude.
I’m using Windows XP.
How can I solve this problem?
Thanks for replying!
Cheers