473,404 Members | 2,137 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,404 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 4474
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: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.