Tagged Questions
The raw input API provides a stable and robust way for applications to accept raw input from any HID (Human Interface Devices), including the keyboard and mouse.
14
votes
1answer
750 views
Tab completion in Python's raw_input()
i know i can do this to get the effect of tab completion in python sure.
import readline
COMMANDS = ['extra', 'extension', 'stuff', 'errors',
'email', 'foobar', 'foo']
def ...
5
votes
3answers
1k views
raw_input and timeout
I have thise huge code that I'm going to implement . Before I start that, I want to do a raw_input('Enter something: .'). I want it to sleep for 3 secs and if there's no input, then cancel the ...
4
votes
1answer
100 views
How do I update a dictionary value having the user choose the key to update and then the new value, in Python?
I am trying to write a program where my brother and I can enter and edit information from our football game rosters to compare teams and manage players, etc.
This is my first 'big' project i've tried.
...
4
votes
3answers
1k views
Tab Completion in Python Command Line Interface - how to catch Tab events
I'm writing a little CLI in Python (as an extension to Mercurial) and would like to support tab-completion. Specifically, I would like catch tabs in the prompt and show a list of matching options ...
3
votes
1answer
45 views
raw_input recognizes ^? but not ^H
I'm trying to get the backspace key to work in a python script that I have. Basically, the code in the script looks something like:
print("Please type the character 'h':")
choice = raw_input()
if ...
3
votes
2answers
139 views
Understanding raw_input function in Python
I have the following code:
age = raw_input("How old are you? ")
height = raw_input("How tall are you? ")
weight = raw_input("How much do you weigh? ")
print " So, you're %r old, %r tall and %r ...
3
votes
2answers
81 views
the loop does not execute correctly
class cga(object):
''''''
def __int__(self,i,o):
''''''
self.i = i
self.o = o
def get(self):
''''''
self.i = []
c = raw_input("How many ...
3
votes
2answers
635 views
WX Python and Raw Input on Windows (WM_INPUT)
Does anyone know how to use the Raw Input facility on Windows from a WX Python application?
What I need to do is be able to differentiate the input from multiple keyboards. So if there is another way ...
2
votes
1answer
44 views
Getting device input (mouse, keyboard …) on LINUX
I am building cross-platform game engine and now I am focused on Input system.
I have written an abstract Input system which passes the messages up
and is beeing fed by platform dependent modules, ...
2
votes
1answer
39 views
How to make non-blocking raw_input when using eventlet.monkey_patch() and why it block everything, even when executed on another thread?
I wrote this minimum code to explain my case:
import threading
import time
import eventlet
eventlet.monkey_patch()
def printing_function():
while True:
# here i want to do some work
...
2
votes
0answers
51 views
Why is WM_Input reporting mouse delta values of 1 for large changes?
Due to some documentation on MSDN, I've opted to use the Windows Raw Input API for mouse movement. Supposedly, it offers high-definition mouse movement and without Windows pointer ballistics. Instead, ...
2
votes
3answers
64 views
Avoiding raw_input to take keys pressed while in a loop for windows
I am trying to make a program which has a raw_input in a loop, if anyone presses a key while the long loop is running the next raw_input takes that as input, how do I avoid that?
I don't know what ...
2
votes
1answer
84 views
Get a String from a collection of keys presses retrieved using Raw Input API
I am using the Raw Input API to get a collection of key presses from a keyboard (actually, a magnetic stripe card reader that emulates a keyboard). Here are a couple of code excerpts so you can have ...
2
votes
1answer
220 views
Asyncore loop and raw_input problem
I'm trying to learn asyncore module. So I decided to develop a chat program. I have to listen the network and broadcast udp packages same time. But problem is while user typing a message, user cannot ...
2
votes
2answers
253 views
Python: Problem with raw_input reading a number
unfortunately raw_input is not doing what I need it to do. What I am trying to do is get totPrimes = whatever I type in at the prompt. If i replace while count < totPrimes with while count < 50 ...
2
votes
2answers
131 views
How do I get user input to refer to a variable in Python?
I would like to get user input to refer to some list in my code. I think it's called namespace? So, what would I have to do to this code for me to print whatever the user inputs, supposing they input ...
2
votes
4answers
674 views
Reading input from raw_input() without having the prompt overwritten by other threads in Python
I'm trying to let the user input commands at a console using raw_input(), this works fine. The problem is I have background threads that occasionally output log-information to the screen and when they ...
2
votes
2answers
3k views
EOFError in Python script
I have the following code fragment:
def database(self):
databasename=""
host=""
user=""
password=""
try:
self.fp=file("detailing.dat","rb")
except IOError:
...
2
votes
4answers
2k views
python exit a blocking thread?
in my code i loop though raw_input() to see if the user has requested to quit. My app can quit before the user quits, but my problem is the app is still alive until i enter a key to return from the ...
1
vote
2answers
48 views
Letter and number count in raw_input
I am trying to make a password strength tester. The password needs to have at least 4 numbers and 6 letters, so I need to find out how many of each were entered by the user in raw_input.
1
vote
3answers
68 views
Python : raw_input and print in a thread
I have a thread which can print some text on the console and the main program have a raw_input to control the thread.
My problem is when I'm writing and the thread too I get something like this:
...
1
vote
0answers
84 views
Using raw input events and touch events simultaneously
I'm working on an interactive application where the user can simultaneously use a trackball (for manipulating a object) and a small touch screen for clicking on various items.
The trackball and the ...
1
vote
3answers
83 views
Python: login using 1 username but different passwords
I am trying to write a function that will understand how to login using one username but several passwords .
import sys
def login():
username = raw_input('username')
password = ...
1
vote
2answers
228 views
How do I resolve difficulties with decoding and printing Greek characters using Python?
I am creating a simple game designed to prompt the user for the Greek translation of an English word. For example:
cow: # here, the gamer would answer with *η αγελάδα* in order to score one point.
...
1
vote
2answers
131 views
In Python, how could I get a user input while simultaneously running the script?
In my program I am trying to take the chat from a website and printing it on my console. While that's going on I'm using raw_input to get chat from whoever is using it. My problem is that raw_input ...
1
vote
1answer
203 views
Distinguish between left and right shift keys using RAWINPUT
RAWINPUT provides two flags (RI_KEY_E0 and RI_KEY_E1) to check whether the left or right version of a key is pressed. This works great for CTRL, but not for left and right shift. In fact, the flags ...
1
vote
2answers
98 views
Backwards-compatible input calls in Python
I was wondering if anyone has suggestions for writing a backwards-compatible input() call for retrieving a filepath?
In Python 2.x, raw_input worked fine for input like /path/to/file. Using input ...
1
vote
1answer
126 views
How to get rid of forward slash in Python raw_input()
Beginner programmer here. So bear with me. I have a simple python program.
print "How tall are you?",
height = raw_input()
print "So you're %r tall" %(height)
If I enter the height as 6'6'' python ...
1
vote
2answers
594 views
How to set a default string for raw_input?
I'm using raw_input to read from stdin.
I want to let the user change a given default string.
Code:
i = raw_input("Please enter name:")
Console:
Please enter name: Jack
The user should be ...
1
vote
1answer
283 views
1
vote
1answer
340 views
Python raw_input causing EOFError after creating app with py2app
I have written a small script that helps me solve scrabble and word-warp problems. It works fine when I run it from Mac OS X terminal. I would like to share the script with my friends as a standalone ...
1
vote
1answer
166 views
How to get raw mouse events with XI2 extension?
I'm using XISelectEvents for root window with deviceid=XIAllDevices and mask=XI_RawMotion, but I don't get any events. What's wrong?
1
vote
2answers
417 views
Python raw_input(“”) error
I am writing a simple commandline script that uses raw_input, but it doesn't seem to work.
This code:
print "Hello!"
raw_input("")
Produces this error:
Traceback (most recent call last):
File ...
1
vote
1answer
88 views
Calling/selecting variables (float valued) with user input in Python
I've been working on a computational physics project (plotting related rates of chemical reactants with respect to eachother to show oscillatory behavior) with a fair amount of success. However, one ...
1
vote
3answers
352 views
Is there a function in C that does the same as raw_input in Python?
Is there a C function that does the same as raw_input in Python?
#in Python::
x = raw_input("Message Here:")
How can I write something like that in C?
Update::
I make this, but i get an error ::
...
1
vote
4answers
836 views
how to let a raw_input repeat until I wanna quit?
Say I use raw_input like this:
code = raw_input("Please enter your three-letter code or a blank line to quit: ") under if __name__=="__main__":
How can I let it repeat multiple times rather than just ...
0
votes
2answers
39 views
Python raw_input ignore newline
Is there a way to ignore newline characters in data entered through raw_input? I am trying to use raw_input to input a list of strings that are copied and pasted from a spreadsheet. the problem is ...
0
votes
2answers
44 views
Difference between python script output and python console output
I have this .py file:
from sys import argv
script, filename = argv
print "We're going to erase %r." % filename
print "If you don't want that, hit CTRL-C (^C)."
print "If you do want that, hit ...
0
votes
0answers
52 views
Mouse Position from Raw Input method
I am trying to get mouse position by using Raw input method. In the RAWMOUSE structure am always getting value MOUSE_MOVE_RELATIVE as usFlags that means am getting relative value of last mouse ...
0
votes
2answers
93 views
Maximum characters that can be stuffed into raw_input() in Python
For an InterviewStreet challenge, we have to be able to accomodate for a 10,000 character String input from the keyboard, but when I copy/paste a 10k long word into my local testing, it cuts off at a ...
0
votes
1answer
34 views
python paste multilines to raw_input in a while loop
I have some code looks like this:
while line != '' and line != 'STOP ME':
line = raw_input("")
buf.append(line+'\n')
sys.stdin.flush()
print raw_input("Input1:")
print raw_input("Input2:")
...
0
votes
1answer
127 views
argv vs. raw_input
I know that when using argv I have to type the file as an argument (ex: python ex15.py ex15_sample.txt) and when using raw_input I enter the filename as an input.
But I can't seem to find out why ...
0
votes
1answer
91 views
horizontal mouse wheel messages from windows raw input
I've noticed there isn't a documented equivalent to WM_MOUSEHWHEEL for windows raw input, yet I am receiving WM_INPUT messages for horizontal wheel clicking. Before I embark on my journey to re-invent ...
0
votes
2answers
153 views
Backspace with `raw_input` in Python
I am using raw_input() like this:
while True:
print "MC ID (CTRL-D = done, 0 = sets, ? = lookup):",
try:
mcid=raw_input()
except:
print
break
# evaluate user input
# ...
Now ...
0
votes
2answers
116 views
In python. How do I have a user change a dictionary value, when that dictionary is in a class?
So I had a similar question that was answered in another thread.
How do I update a dictionary value having the user choose the key to update and then the new value, in Python?
Basically, how did one ...
0
votes
2answers
135 views
Is it possible to use Windows Raw Input API without a window (ie from a console application)?
Is it possible to use Windows Raw Input API without a window (ie from a console application)?
I've tried using RegisterRawInputDevices but my message loops doesn't seem to get any events from ...
0
votes
1answer
214 views
When using Raw Input for the keyboard, is there a way to access key remappings?
By 'remapped' I mean by using the Windows feature for automatically translating scan codes to other scan codes. This is configured by tools like KeyTweak, or directly through editing a certain ...
0
votes
3answers
234 views
Python: Problem with raw_input, turning the value I get into an array
I'm having issues with raw_input again, this time trying to turn the value I get into a list. Here is my code:
original = raw_input("Type is your input? ")
original_as_array = list('original')
print ...
0
votes
1answer
222 views
raw_input function in Python
What is the raw_input function? Is it a user interface? When do we use it?
0
votes
1answer
407 views
Stop SlimDX Raw Input Keyboard “juddering”
When you hold down a key in a text editor, the character will appear, then you get a brief pause before a stream of characters appear. This is the system compensating for some people holding a key ...