472,984 Members | 2,188 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,984 software developers and data experts.

Passing arguments to exe

I have created what amounts to a simple GUI email sending program
using Python + wxPython. I have modified the mailto registration in
the Windows Registry so that it launches the script when someone
clicks on someone's email link in a web page.

While this works great if I create a convoluted path command as the
registry entry and pass in the email argument to the script, it
doesn't work at all if I turn my python file into an exe using py2exe.

How does one get a python file to accept arguments when said script
has been turned into an executable?

I'm sure I'm just missing something obvious. I am using Python 2.4 on
Window XP SP2.

Thanks,

Mike
Dec 14 '07 #1
5 4444
On Dec 15, 9:01 am, kyoso...@gmail.com wrote:
I have created what amounts to a simple GUI email sending program
using Python + wxPython. I have modified the mailto registration in
the Windows Registry so that it launches the script when someone
clicks on someone's email link in a web page.

While this works great if I create a convoluted path command as the
registry entry and pass in the email argument to the script,
It would help if you would give an actual code example of what you
mean by "convoluted path command" and "pass in the email argument to
the script".
it
doesn't work at all if I turn my python file into an exe using py2exe.
"it doesn't work" is user-speak. What does it do? Does it execute the
executable at all? If not, check your "convoluted path". If so, what
arguments are received?
>
How does one get a python file to accept arguments when said script
has been turned into an executable?
If the script is expecting its arguments in sys.argv, I would expect
that to work with an executable also. My guess is that you are falling
foul of some argument-quoting problem. I also guess that you have not
tried something like the following at the start of your script:

print >your_log_file, "sys.argv:", repr(sys.argv)

and run it both as a script and an executable.

Have you tried running the executable stand-alone e.g. Start | Run,
type in
your_exe_file b1**@aol.com
or whatever the argument(s) are?

HTH,
John

Dec 14 '07 #2
On Dec 14, 4:51 pm, John Machin <sjmac...@lexicon.netwrote:
On Dec 15, 9:01 am, kyoso...@gmail.com wrote:
I have created what amounts to a simple GUI email sending program
using Python + wxPython. I have modified the mailto registration in
the Windows Registry so that it launches the script when someone
clicks on someone's email link in a web page.
While this works great if I create a convoluted path command as the
registry entry and pass in the email argument to the script,

It would help if you would give an actual code example of what you
mean by "convoluted path command" and "pass in the email argument to
the script".
Ok, I modify HKEY_CLASSES_ROOT\mailto\shell\open\command to do this:

cmd /C "SET PYTHONHOME=\\servername\NETLOGON\Python24&&\\serve rname
\netlogon\python24\python.exe \\path\to\my\script\wxsendmail.py %1"

>
it
doesn't work at all if I turn my python file into an exe using py2exe.

"it doesn't work" is user-speak.
I've written posts where I've been quite technical and gotten very
little to no response...admittedly, this was pretty vague though...

What does it do? Does it execute the
executable at all? If not, check your "convoluted path". If so, what
arguments are received?
The executable runs, but no argument appears to get passed into it. Of
course, I don't really know that for sure as the executable doesn't
redirect stdout/stderr. I tried doing something like this in the above
reg entry:

cmd /C "c:\program files\myProg.exe %1"
"c:\program files\myProg.exe %1"
"c:\program files\myProg.exe"

None of those worked.
>
How does one get a python file to accept arguments when said script
has been turned into an executable?

If the script is expecting its arguments in sys.argv, I would expect
that to work with an executable also. My guess is that you are falling
foul of some argument-quoting problem. I also guess that you have not
tried something like the following at the start of your script:

print >your_log_file, "sys.argv:", repr(sys.argv)

and run it both as a script and an executable.

I do have my script set up to find its arguments in sys.argv. And no,
I don't have that print screen. As mentioned above, I don't have a
console window open when the exe runs, so I won't see any output from
it. I'll have to modify it to do that when I'm back at my work PC.
>
Have you tried running the executable stand-alone e.g. Start | Run,
type in
your_exe_file b...@aol.com
or whatever the argument(s) are?
No, but that's a good idea. Why didn't I think of that!? (don't answer
that)
>
HTH,
John
Thanks for the suggestions.

Mike
Dec 15 '07 #3
On Dec 15, 11:38 am, kyoso...@gmail.com wrote:
On Dec 14, 4:51 pm, John Machin <sjmac...@lexicon.netwrote:
On Dec 15, 9:01 am, kyoso...@gmail.com wrote:
I have created what amounts to a simple GUI email sending program
using Python + wxPython. I have modified the mailto registration in
the Windows Registry so that it launches the script when someone
clicks on someone's email link in a web page.
While this works great if I create a convoluted path command as the
registry entry and pass in the email argument to the script,
It would help if you would give an actual code example of what you
mean by "convoluted path command" and "pass in the email argument to
the script".

Ok, I modify HKEY_CLASSES_ROOT\mailto\shell\open\command to do this:

cmd /C "SET PYTHONHOME=\\servername\NETLOGON\Python24&&\\serve rname
\netlogon\python24\python.exe \\path\to\my\script\wxsendmail.py %1"
it
doesn't work at all if I turn my python file into an exe using py2exe.
"it doesn't work" is user-speak.

I've written posts where I've been quite technical and gotten very
little to no response...admittedly, this was pretty vague though...
What does it do? Does it execute the
executable at all? If not, check your "convoluted path". If so, what
arguments are received?

The executable runs,
how do you know it runs?
but no argument appears to get passed into it.
appears??
Of
course, I don't really know that for sure as the executable doesn't
redirect stdout/stderr. I tried doing something like this in the above
reg entry:

cmd /C "c:\program files\myProg.exe %1"
"c:\program files\myProg.exe %1"
"c:\program files\myProg.exe"

None of those worked.
How does one get a python file to accept arguments when said script
has been turned into an executable?
If the script is expecting its arguments in sys.argv, I would expect
that to work with an executable also. My guess is that you are falling
foul of some argument-quoting problem. I also guess that you have not
tried something like the following at the start of your script:
print >your_log_file, "sys.argv:", repr(sys.argv)
and run it both as a script and an executable.

I do have my script set up to find its arguments in sys.argv. And no,
I don't have that print screen.
"""print >your_log_file,""" implies "print screen"?
As mentioned above, I don't have a
console window open when the exe runs, so I won't see any output from
it. I'll have to modify it to do that when I'm back at my work PC.
Have you tried running the executable stand-alone e.g. Start | Run,
type in
your_exe_file b...@aol.com
or whatever the argument(s) are?

No, but that's a good idea. Why didn't I think of that!? (don't answer
that)
OK, I won't :-)
>

Thanks for the suggestions.
You're welcome.
Dec 15 '07 #4
On Dec 14, 8:06 pm, John Machin <sjmac...@lexicon.netwrote:

<snipped>
>
The executable runs,

how do you know it runs?
because the program's GUI appears on-screen.

but no argument appears to get passed into it.

appears??

Since the TO field doesn't get populated with the email address, it
doesn't appear to receive it as an argument. Whereas if I run it as a
script, it does receive the email address.

Mike

Dec 15 '07 #5
On Dec 15, 6:46 pm, Dennis Lee Bieber <wlfr...@ix.netcom.comwrote:
On Fri, 14 Dec 2007 16:38:28 -0800 (PST), kyoso...@gmail.com declaimed
the following in comp.lang.python:
The executable runs, but no argument appears to get passed into it. Of
course, I don't really know that for sure as the executable doesn't
redirect stdout/stderr. I tried doing something like this in the above
reg entry:
cmd /C "c:\program files\myProg.exe %1"
"c:\program files\myProg.exe %1"
"c:\program files\myProg.exe"

What happens if you put the %1 OUTSIDE the quotes...

cmd /c "c:\program files\myProg.exe" "%1"

After all, if the quotes are being used to keep the command line seeing
"program files" as a single term in the path, then your quotes are also
treating "myProg.exe %1" as a single term.
--
Wulfraed Dennis Lee Bieber KD6MOG
wlfr...@ix.netcom.com wulfr...@bestiaria.com
HTTP://wlfraed.home.netcom.com/
(Bestiaria Support Staff: web-a...@bestiaria.com)
HTTP://www.bestiaria.com/
This works:

"c:\program files\myProg.exe" %1

Thanks for the tip.
Dec 18 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Pavils Jurjans | last post by:
Hallo, I have been programming for restricted environments where Internet Explorer is a standard, so I haven't stumbled upon this problem until now, when I need to write a DOM-compatible code. ...
3
by: domeceo | last post by:
can anyone tell me why I cannot pass values in a setTimeout function whenever I use this function it says "menu is undefined" after th alert. function imgOff(menu, num) { if (document.images) {...
7
by: Harolds | last post by:
The code below worked in VS 2003 & dotnet framework 1.1 but now in VS 2005 the pmID is evaluated to "" instead of what the value is set to: .... xmlItems.Document = pmXML // Add the pmID...
39
by: Mike MacSween | last post by:
Just spent a happy 10 mins trying to understand a function I wrote sometime ago. Then remembered that arguments are passed by reference, by default. Does the fact that this slowed me down...
5
by: Michael | last post by:
Hi, once I read here that it is not 'a good idea' to pass variables that are not initialized to a function. I have void something ( double *vector ); ....
3
by: Mantorok | last post by:
Hi all I'm pretty new to ASP.Net, is it possible to pass arguments (maybe objects too) to web forms without using a querystring in the URL? Thanks Kev
4
by: Justine | last post by:
Can anyone help? e.g. when you open a vb project property page, in "Configuration Properties" You will see "Command line arguments" in "Start Options". Does anyone knows how to find a way to do...
7
by: Bonzo | last post by:
>From within a function, I want to pass a/some parameters to another function, AND all arguments, passed into this function. e.g. function firstFunction(){ //this function may have been...
2
by: william.w.oneill | last post by:
I have an application that takes a few command line parameters. As recommended by others in this group, I'm using a named mutex to ensure that only one instance of the application is running. My...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
0
by: Aliciasmith | last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
0
tracyyun
by: tracyyun | last post by:
Hello everyone, I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
4
NeoPa
by: NeoPa | last post by:
Hello everyone. I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report). I know it can be done by selecting :...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.