0
votes
1answer
39 views

Find b'' in command output?

I'm trying to find a specific string from a command output in terminal. It doesn't work however. Here is the command I'm running: check = subprocess.check_output("netctl list | sed -n 's/^\* //p'", ...
0
votes
0answers
46 views

Python error in line passing parameter to command

what does this error means? TypeError: cannot concatenate 'str' and 'set' objects. def main(): print 'ffffffffffffffffffffffffff' try: print getopt.getopt(sys.argv[1:], 'u:a:s:', ...
1
vote
1answer
21 views

find command in python failing with “missing argument to -exec”

I am trying to find files older than certain number of days and remove them subprocess.call(['find', DIRECTORY, '-mtime', '+5', '-exec', 'rm', '{}', r'\ ']) Why is this call giving me missing ...
1
vote
3answers
60 views

how to remove unnecessary chars from date command output in python

I am new to python. Forgive me if it's too simple. I want to extract only date using date command in python import subprocess p = subprocess.Popen(["date", '+%m/%d/%y'], stdout=subprocess.PIPE) ...
0
votes
3answers
56 views

running windows command line program from python with ini file argument

Im trying to run a windows command line application from a python script with a ini config file in the command which i suspect isnt passing when its executed. The command is c:\BLScan\blscan.exe ...
1
vote
0answers
66 views

Custom management command console output to log file in Django

I have a custom management command which starts a Tornado loop in order to listen to websocket events. That loops writes its output to the console, which i want to redirect to a log file. I read the ...
0
votes
2answers
88 views

Running python script from within python script

I am new to Python (C++ fluent) and am learning on an as-need basis. I wrote a script that takes several arguments and creates and saves a matplotlib graph. It has no functions, methods, classes, ...
0
votes
3answers
70 views

(Python) Connecting subprocess pipes/Running command through a jump box

So I want to use python to run a command on a server, but to do that I have to go through another box. I connect to the first box by running ssh through subprocess. However, Im unsure how to then get ...
0
votes
1answer
50 views

Making Python turtle commands smaller / compact

How can I make my projects code smaller? Here is a huge definition for my hangman graphics. def joonista_mees(valede_pakkumiste_arv): if valede_pakkumiste_arv == 0: ht() up() ...
1
vote
0answers
182 views

Array VPS PHP booter API in progress

I'm writing a booter API using an array of VPS's. Below is a preview of my code. It's all pretty straight forward as you see I'm using ssh2 to send remote console commands to the VPS's. My issue is ...
0
votes
1answer
133 views

Linux start perl or python in background command [closed]

I am making a PHP script to use SSH2 to send remote commands to a server and return a json response. But the only problem is that in the perl and some python scripts it takes up to 30 seconds to ...
0
votes
1answer
62 views

How to execute a system command from a python file

I am using python and trying to execute a system command as below code.py import commands import os os.system('updatedb') result: sh-4.2$ python code.py updatedb: can not open a temporary file ...
2
votes
2answers
70 views

python call a command line which includes both “echo” and “|” [duplicate]

I tried to use python call the command line execute some files. However, when there is a command line containing both "echo" and "|"(vertical bar), the subprocess.call seems not working very well. ...
0
votes
0answers
34 views

python: getstatusoutput() leading segmentation error often

I am using getstatusoutput() to run commands in python. cmd = "casperjs casperjsscript.js \"mytesturl.com/test_page\""; from commands import getstatusoutput print getstatusoutput(cmd) I have ...
0
votes
0answers
58 views

Python IDLE fails to run

Some time ago I was making a script in python which included lots of command prompt syntaxes... I accidentally created an infinite loop and it screwed things up. Every time I try to test any script ...
0
votes
2answers
88 views

How to make a Python script runs as trivial linux command with Distutils?

I need to run python module as trivial Linux command without worrying about the location of the file. Can I do it with Distutils? Specific about what I need. A user should do simple installation and ...
2
votes
2answers
207 views

Why do some unix commands not work when called from inside python? (command not found)

I often wish to perform unix commands from inside python, but I have found recently that some commands are not found. An example is the 'limit' command: $ echo $SHELL /bin/tcsh $ limit vmemoryuse ...
0
votes
1answer
51 views

highlighting specific part of python command line

I'm using Python 3.3... When executing script in command line, there are some parts that I want to be highlighted. I need highlighted specific parts of specific lines, e.g. chars 5 through 19 of line ...
1
vote
2answers
104 views

parse commands with regex and python

I have a string like this: str = "something move 11 something move 12 something 13 copy 14 15" where the "something" means some text, or no text at all. and as a result I want to have a list like: ...
-2
votes
2answers
73 views

Script to open another python file [closed]

I have a very big project going on with python. And i need to get script what opens another .py file. I have tried to use script like this: os.system("example.py arg") And it if the script in ...
0
votes
2answers
55 views

Save result from system command to a variable using subprocess

I would like to get the first interface that is up on a linux machine. I am using subproces and I have the following piece of code : def get_eth_iface(): awk_sort = subprocess.Popen( ["-c", ...
0
votes
1answer
209 views

windows wget & being cut off

System Info: Windows 7, GNU Wget 1.11.4, Python 2.6 The problem: Im running a python script that fires a wget shortcut, the problem is that wget (even when run purely in command line from the exe) ...
1
vote
1answer
118 views

'Command' object has no attribute 'stdout'

from django.core.management.base import BaseCommand, CommandError class Command(BaseCommand): def handle(self, *args, **options): ...... self.handle_noargs() def ...
0
votes
2answers
399 views

Have multiple commands when button is pressed in Tkinter with python 2.7

I want to run multiple functions when I click a button. For example I want my button to look like self.testButton = Button(self, text = "test", command = func1(), command = ...
-4
votes
1answer
219 views

.“ -bash : run : command not found” [closed]

Please I am trying to run a python script on my mac (macbook air ) I got this reply " -bash : run : command not found" The command I typed was " Run phyton RemoveWinners.py" Why is this ? or what ...
0
votes
1answer
60 views

non-interactive Python command history

I know the python interpreter and ipython have a easy way to browse through the history of commands. That is in interactive Python programming. My problem/question: I have a GUI-based Python tool ...
1
vote
7answers
757 views

Python not working in command prompt?

I type python into the command line, but the command prompt says that python is not recognized as an internal or external command, operable program, or batch file. What should I do Note: I have ...
3
votes
3answers
122 views

I don't understand why one of these works and the other doesn't. Please explain how I'm handling this string incorrectly

I'm new to Python and I thought I'd try it out by writing to a DB2 database. Python is 2.7 and is running on an iSeries. I like the idea of Python instead of RPG or CL for a variety of things I have ...
1
vote
1answer
187 views

Fabric Python run command does not display remote server command “history”

I can't seem to figure this one out but when I do a very simple test to localhost to have fabric execute this command run('history'), the resulting output on the command line is blank. Nor will this ...
4
votes
3answers
106 views

Run OS native commands VS Python's in Fabric

I'm using Fabric for project management, deployment, etc. I don't really understand the more convenient way to run commands. For example, considering I don't care of capture and shell arguments of ...
0
votes
1answer
107 views

How can I execute a command inputted by the user as a turtle command?

I need to be able to ask a user for a turtle command such as forward(90) and execute it as a turtle command, e.g turtle.forward(90) and repeat until the user exits. so far I have: def ...
0
votes
2answers
47 views

Python: making QRcodes in Windows

I'm new to Python. I'm trying to run this script (gencards.py) in Windows, but he says I need to run "the qrencode command". I assume that means this library, or the more likely the windows port. In ...
0
votes
2answers
411 views

Python - open new shell and run command

At the moment I am running a bash command from within Python using the following method: os.system(cmd) However I need to run the command in a new shell/terminal. Does anyone know how to do this? ...
1
vote
1answer
130 views

python send output command to client socket

I am trying to learn python and for a class I need to create an assignment. This assignment states that I need to create a server with a self-signed certificate. I need to let this server listen on ...
0
votes
3answers
121 views

How to get 'java -version' output through python

I tried os.popen and the like ways. But it does not seem to work for me. I'm wondering if there's anything different between a command 'echo xxxx' and 'java -version', and how can I get 'java ...
0
votes
1answer
63 views

Is there any possibility to execute command of the server in django? the location?

I try to do this by using subprocess in a views.py returnCode = subprocess.call('/Users/ivanlw/Projects/C/app') #use the absolute path print 'returnCode', returnCode the app file just prints a ...
0
votes
1answer
228 views

call perl script from python works in commands.getstatusoutput but not in subprocess.call

I have a python script which must call a perl script to get data from a remote server. The perl script has to stay perl, it's third party and I don't have any options there. I'm trying to remove all ...
0
votes
0answers
114 views

Access the peer list from rtorrent from python

I want to access the IP addresses of a torrent running on rtorrent from a python application i am building. I have done this: import os os.system("rtorrent") i have searched for an argument that ...
0
votes
1answer
218 views

passing arguments from php to python using shell_exec from browser

I have a simple php script that passes a couple variables to and runs a python script with the shell_exec command. When I run this php script from the shell it works just fine. However, when I run the ...
1
vote
1answer
77 views

Python command line module for files

I have a python script that takes command line parameters and is called many different times in our build system. I would like to centralize all of these options into a file for maintainability ...
0
votes
3answers
104 views

shell's && and || in python

In shell if I want to execute a second command only if the first command was successful I would do this cmd1 && cmd2 And if I need to execute the second command if the first fails I would ...
1
vote
1answer
602 views

Django: manage.py custom command not found

When I do python manage.py help [myapp] update_overall_score update_periodic_score my custom command is listed, in which I can able to run update_periodic_score through python ...
0
votes
1answer
200 views

Django: How to call management custom command execution from admin interface?

Referring to, executing management commands from code, Is their a way to call this command execution code from the django admin interface? I've a custom command to do some periodic update of ...
0
votes
3answers
240 views

Python string interpretation and parse

I'm trying to learn how to interpret and parse a string in python. I want to make a "string command" (don't know if is the right expression). But to explain better I will take an example: I want a ...
0
votes
4answers
320 views

Find a line of text with a pattern using Windows command line or Python

I need to run a command line tool that verifies a file and displays a bunch of information about it. I can export this information to a txt file but it includes a lot of extra data. I just need one ...
2
votes
1answer
91 views

how to use python to execute commands on many servers

everyone! I have an admin task: I need to write a script to execute commands given in a file on a list of servers whose ip address, login name and password is given in another file. My goal is to ...
2
votes
3answers
108 views

Is there any way to excute a command as a specific user in Python?

As far as I kown, there are about 3 ways to excute a system command in Python: os.system(command) -> exit_status os.popen(command [, mode='r' [, bufsize]]) -> pipe ...
1
vote
3answers
992 views

Django: manage.py standard commands not working

I'm developing a web app in Python 2.7 using Django 1.4 with PyCharm 2.5 as my IDE and a Postgres database. I am able to run manage.py commands such as sql and syncdb to create the SQL and the tables, ...
0
votes
0answers
106 views

Get iSCSI initiator name non-manually

I am running python scripts to connect a bunch of disk drives via iSCSI, and would like to have the process be fully automated, since this program will run on a bunch of different machines so the ...
2
votes
2answers
197 views

How not to quote argument in subprocess?

I'm trying to call an ImageMagick command from Python 2.7 using subprocess.call. My problem is that the argument parser in subprocess puts a double quotation mark around every argument, and ...

1 2 3