Re: [Tutor] Accessing query results html frame

2011-02-10 Thread Karim
Hello, In fact as found in the net: "The concept of browser frames is completely outside the scope of HTTP. However, browser frames are defined in HTML, and so is the target property on form elements:
This will make the form submit

Re: [Tutor] python packaging systems

2011-02-10 Thread Bill Allen
My main aim in packaging is simplicity of distribution to many workstations at work. Hiding the source is not an issue. I have successfully used cx_freeze. I did find that in some cases I have had to manually copy some files from my Python system, usually a 3rd party import, into the distributi

Re: [Tutor] process and modify a list of strings, in place

2011-02-10 Thread Steven D'Aprano
John Martinetti wrote: Hello - I'm a novice programmer, not even amateur level and I need some help with developing an algorithm to process a list of strings. I hope this list is tolerant of n00bs, if not, please let me know and I'll take this elsewhere. Hi John! This list is specifically for

Re: [Tutor] process and modify a list of strings, in place

2011-02-10 Thread Dave Angel
On 01/-10/-28163 02:59 PM, John Martinetti wrote: Hello - Welcome, # - create a record from all the fields linedata = (vendornum, vendorname, ordernum, ordersuffix, orderdate, buyer, partnum, qty, comment) # - append the record to the list of records representing the CQ report

[Tutor] PMW combobox won't display properly using X

2011-02-10 Thread jdeltoro1973
I've written a Python gui using Python Mega Widgets (PMW) that works beautifully when run natively on Windows or Linux. However, when I run the app on a Linux box and try to display it back to my Windows box using an X server (like freeXer or XMing), the combobox widget's drop-down menu is squashe

[Tutor] process and modify a list of strings, in place

2011-02-10 Thread John Martinetti
Hello - I'm a novice programmer, not even amateur level and I need some help with developing an algorithm to process a list of strings. I hope this list is tolerant of n00bs, if not, please let me know and I'll take this elsewhere. Some background. I cut up a text based report from a reporting

Re: [Tutor] SMS to URL

2011-02-10 Thread Rance Hall
On Wed, Feb 9, 2011 at 4:08 AM, Dipo Elegbede wrote: > Hi peeps, > I am trying to write a code such that i can send an sms to a specific url > from my phone and get a reply back from the url. > I want the reply to be the content of the url I send to; what modules would > you advice. > I am testing

Re: [Tutor] python packaging systems

2011-02-10 Thread ALAN GAULD
Yes, but a good installer will install Python (if needed) and then your app in one seamless operation from the users point of view. Then create the launch shortcut in the appropriate start menu. So the user only needs to click the launch icon to start the app, the fact that it's a Python scri[

[Tutor] Accessing query results html frame

2011-02-10 Thread Karim
Hello All, I get from Steven an very useful link (void space) for http authentication. I added some codes to be able to POST FORM a query as I do it by clicking a query button to get a list of bug Id on a server. The problem is I get a html page which refers 2 frames. And I am interesting in

Re: [Tutor] python packaging systems

2011-02-10 Thread Brett Ritter
On Thu, Feb 10, 2011 at 11:14 AM, Alan Gauld wrote: > Personally I don't like them and prefer to install a version of Python > and then install my modules separately. > > If you want to hide your code(a little bit) you can ship only the pyc ... Don't forget that the motivation need not be obfusca

Re: [Tutor] python packaging systems

2011-02-10 Thread Alan Gauld
"Bill Allen" wrote I have found there are a few systems available to package Python programs as standalone programs for distribution. Do the folks here have any recommendation or comment on any of these? Personally I don't like them and prefer to install a version of Python and then install

Re: [Tutor] python packaging systems

2011-02-10 Thread Noah Hall
On Thu, Feb 10, 2011 at 4:17 AM, Bill Allen wrote: > > I have found there are a few systems available to package Python programs as > standalone programs for distribution.   Do the folks here have any > recommendation or comment on any of these? My favourites are http://www.py2exe.org/ and http:/

Re: [Tutor] python packaging systems

2011-02-10 Thread Corey Richardson
On 02/09/2011 11:17 PM, Bill Allen wrote: > I have found there are a few systems available to package Python programs as > standalone programs for distribution. Do the folks here have any > recommendation or comment on any of these? > > Thanks, > --Bill > I found cx_Freeze to be the most usefu