-5
votes
1answer
34 views

python 3.3.0 suddenly not executing a file [closed]

I have some scripts in python that have run with no issues up until yesterday. now suddenly I'm getting a syntax error on my print statements print(variableName) throws an invalid syntax error at ...
0
votes
1answer
24 views

javascript equivalent of python's compile and exec

In python, one can take a string containing python code, compile it and run the resulting code with exec. Can something similar be done with javascript (any implementation is good). My objective is ...
-1
votes
0answers
46 views

How pass java code to python. (Runtime) [closed]

I intent pass the java code to python. The code is: Runtime runtime = Runtime.getRuntime(); Process process; process = runtime.exec(command); process.waitFor(); InputStream is = ...
0
votes
2answers
37 views

Using PHP to call python script [duplicate]

I have the following PHP code that I want to use to call a python script (ring.py) <?php echo '<p>Hello World</p>'; $output = exec('python ring.py'); ?> The program ...
0
votes
0answers
25 views

php shell_exec fails when return non-ascii string

using command $ret = shell_exec($command); results in $ret being null when $command returns string containing non-ascii characters (papĂ­r), but it works when $command returns string without ...
0
votes
0answers
27 views

How to execute ftp “put allo SIZE_IN_BYTES” command

How do I execute ftp "quote allo SIZE_IN_BYTES" command in python script? For eg: In the FTP of processor connected I have a command as below ftp>quote allo 24567 (which reserves 24567 bytes ...
0
votes
0answers
23 views

IronPython: Catch OverflowError/StackOverflowException

I let the user write a python file and I execute it with exec. But when the user has a OverflowError than the hole program will crash. How can I prevent this? This does NOT work: try: f(*args) ...
1
vote
1answer
49 views

Python exec grep

I'm trying to grep a list of file from the "*.nasl" of "Openvas" which contains a certain port's number. I can make it directly in the terminal with the command : egrep --only-match '111' ...
0
votes
0answers
39 views

Python exec statement binary code

I'm loading the contents of a .pyc file and need to execute it in a specific scope using the exec statement. For a string containing normal Python code, I could do exec compile(string, filename, ...
1
vote
2answers
68 views

Progammatically append to file in PHP

I am trying to programmatically append an RSA public key to the authorized_keys file through a website and haven't been able to make any solutions I found work. I have tried using PHP's ...
1
vote
3answers
96 views

How to run a large amount of python code from a string?

I need to be able to run a large amount of python code from a string. Simply using exec doesn't seem to work, as, while the code runs perfectly in a normal setting, doing it this way seems to throw an ...
0
votes
1answer
107 views

get value of a variable from a python script

I have a python script that returns a json object. Say, for example i run the following: exec('python /var/www/abc/abc.py'); and it returns a json object, how can i assign the json object as a ...
1
vote
1answer
45 views

Launch configured cmd from Python

I'm on Windows. I am trying to write a Python 2.x script (let's call it setup.py) which would enable the following scenario: User runs cmd to open a console window In that console window, user runs ...
2
votes
1answer
110 views

Why is Runtime.getRuntime().exec forking a process as root in Tomcat?

I am using Runtime.getRuntime().exec(...) to execute a python script from within a Tomcat webapp. Everything goes fine when I am in my development environment (Eclipse running my local Tomcat (located ...
0
votes
0answers
39 views

calling python script from another fails at class definition

I have a script called insertPrintCode.py, which works on its own. I want to call this from another python script using def main(): execfile("insertPrintCode.py") def execfile(filename): ...
0
votes
1answer
82 views

Execute external command, exit script and interact with external command

Is there any alternative to Perl's exec(); in Python? I need Python to call external command, kill itself, and I can then interact with external command. In Perl I can just call exec("command ...
3
votes
2answers
68 views

Python exec and __name__

When I run: exec "print __name__" it prints __main__. But when I run: exec "print __name__" in {} it prints __builtin__. How to make the second example to also print __main__? What I try to ...
1
vote
3answers
58 views

Calling specific version of python from PHP

I'm setting up a big system relying on python 2.7 being run through php. The call is always something like: exec('python test.py'); However no matter what I do PHP keeps using python 2.4 for ...
0
votes
3answers
63 views

How to take arbitrary variables loaded by exec, and use them in a function

I'm looking to write up a basic Bioinformatics course on Codeacademy. They have a nice interface for writing up a course, but it's a bit slow for testing, as one must save, then preview, then run. So ...
1
vote
2answers
36 views

Why exec() assigns different id against under -5 on python?

This is python code. for e in range(-10, 10): exec('x=%d'% e) exec('y=%d'% e) print e, id(x), id(y), x is y I expected the print statement shows only Trues. But it is not. under -5, ...
0
votes
2answers
74 views

Showing current output from exec in Python

I am running code as follows (copied from other topic and added sleep): import sys import StringIO import contextlib @contextlib.contextmanager def stdoutIO(stdout=None): old = sys.stdout if ...
1
vote
1answer
67 views

Can I pass a parameter set via exec()'s name space?

I'm trying to create a parameter sweep pattern, using python's exec() function and passing it a particular parameter set via a namespace. My application is a scipy.integrate.odeint() model with a ...
1
vote
1answer
113 views

Python - Calling popen with many arguments

I'm attempting to call popen with a list of arguments. execString = "java -jar {} {} {} {} {} {}".format(os.path.join(config.java_root, ...
0
votes
0answers
106 views

error on using exec() to call python script in browser

I am trying to call a python script by php: <?php $a = exec("python ~/www/encrypt.py"); echo $a; ?> I use terminal and "php index.php" command to see result and it work good but in ...
0
votes
0answers
187 views

Python redirect stdin/stdout with execv

I'm using python to os.fork a child progress, and use os.execv to execute another program in the child progress. How can I redirect I/O in the child program. I tried this but failed. import sys, os ...
2
votes
1answer
119 views

what is the difference between eval and exec in python? [duplicate]

Possible Duplicate: What’s the difference between eval, exec, and compile in Python? I known that eval is a function exec is a statement And the simple usage of both is : eval('1+2') ...
1
vote
1answer
43 views

How can I clean up use of exec, can’t get setattr to do the job?

I want to check an arbitrary (defined in data) set of rules expressed in text and eval() does the job nicely. e.g. to define a rule to check that A and B are both valid: Rule = "A and B" print ...
3
votes
3answers
90 views

How to run a Python file not in directory from another Python file?

Let's say I have a file foo.py, and within the file I want to execute a file bar.py. But, bar.py isn't in the same directory as foo.py, it's in a subdirectory call baz. Will execfile work? What about ...
0
votes
3answers
137 views

Python - Is this a acceptable use for eval or exec? Any other way to do that?

I'm quite new to Python, and have been looking for a way to call a function that will have it's name formed by a conjunction of a string and a variable that is dynamically filled when the user chooses ...
0
votes
1answer
115 views

Problems with exec in python3

I want to execute a correct python program using exec and then get variables and their values after executing. Google says that I should create a dictionary and write the result of execution there: ...
0
votes
1answer
55 views

How can I dynamically execute function in current scope and add it as property of the calling function?

I have some code like this: def f1(): <some stuff here> . . . @mylib.codegen def f2(args): f1() <some more stuff here> mylib.py : def codegen(fn): src = inspect.getsource(fn) ...
-1
votes
2answers
92 views

php exec() secure

I'm trying to execute a py file from php. here is my code: //usage python my.py var1 var2 $libre = 'python ../../../../root/py/my.py '.$var1.' '.$var2.''; $cleanlibre = escapeshellarg($libre); echo ...
1
vote
1answer
244 views

Python os.exec(): Termination on running 'notify-send'

I'm writing a small Python script under Linux that pops up a number of libnotify pop-ups, currently by using the following syntax: import os os.execv('/usr/bin/notify-send', ['App Title', 'Message']) ...
3
votes
1answer
93 views

How to compile text as a function using AST?

I need to compile an input string (from a database) as a function and run it. This is the method I currently use: Say I already have this function defined: def foo(): print "Yo foo! I am a ...
0
votes
1answer
155 views

exec python in php problems

In the php code exec('python file.py 1 2',$result); the $result give me the code inside the file.py but I need the output from print. Suppose file.py do an addition job. var_dump($result) -> ...
0
votes
1answer
257 views

Running a python file from php does not generate the output file

I have a problem running another file from php. I want my php params to be the output of running a python file that calls another file itself. Here is my php file: <?php if ...
2
votes
3answers
68 views

Given module m and code object c, what does “exec c in m.__dict__” do?

I'm writing Python 3 code and for some reason I want to run everything just in memory and save no files on disk. I managed to solve almost all of my problems so far by reading answers here, but I'm ...
5
votes
4answers
124 views

In Python, why doesn't an import in an exec in a function work?

I can put an import statement in a string, exec it, and it works (prints a random digit): code = """ import random def f(): print random.randint(0,9) """ def f(): pass exec code f() Now, ...
1
vote
1answer
133 views

subclassed python dictionary for custom namespace in exec() method

I am trying to subclass a dictionary for use in an exec method. Ultimately, I would like the local function to have a custom name scoping behaviour. In the code below, function b() does in fact have ...
4
votes
1answer
124 views

PHP Exec() and Python script scaleability

I have a php application that executes Python scripts via exec() and cgi. I have a number of pages that do this and while I know WSGI is the better way to go long-term, I'm wondering if for a ...
0
votes
1answer
140 views

Pass multiline html as argument via php system()

Due to reasons that are have nothing to do with the actual question, I need to call and use an external script via PHP to perform a string replacement on a complete html document. The replacement ...
1
vote
1answer
264 views

PHP/Python - Multithreaded Sleep in Background

I have an issue where I am trying to have a thread in Python sleep in the background for a specified time. This needs to be done in the program though, not at the command-line level, as there is data ...
0
votes
1answer
393 views

“ImportError: No module named _SHA256” when using PHP's exec() to call python script

I have written a python script "thescript.py" that imports "SHA256.py", both of which are in the same directory "/thedirectory/include/". In PHP I do: chdir('/thedirectory/include/'); $result = ...
5
votes
1answer
115 views

Process functions from a list of strings in Python

I have a module that I import to my main application called pageprocs.py with a collection of functions in it that generate different content and return it in a string. pageprocs is supposed to be a ...
2
votes
2answers
107 views

Scope inside Python exec

When a variable/function is defined inside an exec it seems to go to the locals() instead to the globals() how I can change this behaviour? This only happens when you pass the global and local ...
0
votes
1answer
52 views

Python Exec Returns More Lines Then Expected

First off I would like to premise this question with, "yes I know I shouldn't use exec, however my data is trusted." I have a script that creates a bunch of default dictionary lines in a file. Each ...
0
votes
0answers
162 views

Running Kindlegen on linux from php with Godaddy shared hosting workaround [closed]

I am trying to convert epub files to mobi with kindlegen by calling it from php using the exec function. At home i managed to achieve this under Windows/IIS but on my Godaddy shared web hosting i ...
-2
votes
3answers
102 views

Locally execute python file that is located on a web server

I am working on an open-source project called RubberBand which is an open source project that allows you to do what the title says. Locally execute python file that is located on a web server, however ...
2
votes
3answers
82 views

Python core application

I'm new to Python and I'm writing a script that includes some timed routines. My current approach is to instantiate a class that includes those Timers (from: threading.Timer), but I don't want the ...
0
votes
2answers
449 views

Execute linux command from web interface (just like in Django CMS demo generator)

I need to create a webpage that will generate demo similar to https://django-cms.org/en/demo/. To generate demo, just click Get your demo! I dont mind about the language, PHP or anything, as long as ...

1 2 3