Tagged Questions
13
votes
1answer
82 views
Is it possible to prefill a input() in Python 3's Command Line Interface?
I'm using Python 3.2 on Ubuntu 11.10 (Linux). A piece of my new code looks like this:
text = input("TEXT=")
Is it possible to get some predefined string after the prompt, so I can adjust it if ...
8
votes
2answers
330 views
Is there a Python equivalent for the Perl module Term::VT102?
In Perl there is a very handy module, Term::VT102, which allows you to create a screen in memory. This is very handy for scraping purposes since you can keep track of all the changes to portions of ...
2
votes
5answers
428 views
how to make a Command Line Interface or Interpreter in python
guys. I have seen some CLI questions here, but I still want to ask this question for more detailed answers.
I have already developed class1.py, class2.py, etc. with functions implemented inside each ...
0
votes
1answer
72 views
How to add input to command line prompt from wxPython?
So I have this code on python, that retrieves output from console when executing shell commands.
def OnClick(self, event):
cmd = self.command.GetValue()
if cmd:
input, output, errors ...
0
votes
2answers
207 views
Creating old fashion console form using Python
How can I write a console form looking like the one seen on the screenshot using python. This means that I can write something like
print(x=6, y=2, "z/VM ONLINE")
This code should place the text ...
0
votes
2answers
168 views
how to make a Command Line Interface from a given data model used for GUI
HI, guys. I am developing a GUI to configure and call several external programs with Python and I use wxPython for the GUI toolkits. Basically, instead of typing commands and parameters in each shell ...
0
votes
2answers
127 views
How to define the help of the CLI program in the __doc__?
I would like to do something like this :
def main():
"""
Display Information about a Google Calendar
-u --user login Google Login
-p --pass password Google Password
-d ...