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
___
Tutor maillist - Tutor@python.org
To unsubscri
"Daniel Barnette" wrote
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 squashed all to the left,
Thats a pretty specific query about Tkinter and PMW and X servers.
I
On 2/9/2011 4:17 PM Daniel Barnette said...
Python Mega Widgets
Generally speaking, issues with third party packages are best resolved
on the package's specific support forum. In this case, try at
http://lists.sourceforge.net/lists/listinfo/pmw-general
HTH,
Emile
___
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
On Wed, Feb 9, 2011 at 11:56 PM, Shawn Matlock wrote:
> Hello All,
>
> I’m doing something wrong.
> This prints a list of data source names:
>
> # List all data sources
> dataSourceList = AdminConfig.list('DataSource') # .split(ls)
> if verbose == 'True':
> print 'DEBUG Data So
Hello All,
I'm doing something wrong.
This prints a list of data source names:
# List all data sources
dataSourceList = AdminConfig.list('DataSource') # .split(ls)
if verbose == 'True':
print 'DEBUG Data Source List: '
print dataSourceList
DEBUG Data Source List:
"Fa
Sean Carolan wrote:
Hi,
Im fairly new to programming in python, and have a question.
Im looking to build a program that monitor's certain things on my Linux
system. for instance disk space. What is the best way to monitor a Linux
server without using to much resources?
Should I execute shell comm
On Wed, Feb 9, 2011 at 4:18 PM, Sean Carolan wrote:
> > Hi,
> > Im fairly new to programming in python, and have a question.
> > Im looking to build a program that monitor's certain things on my Linux
> > system. for instance disk space. What is the best way to monitor a Linux
> > server without
> Hi,
> Im fairly new to programming in python, and have a question.
> Im looking to build a program that monitor's certain things on my Linux
> system. for instance disk space. What is the best way to monitor a Linux
> server without using to much resources?
> Should I execute shell commands and g
"tee chwee liong" wrote
t> hanks for catching the bug. the code should be:
s='11100101'
found = False
for i,c in enumerate(reversed(s)):
if c == '0':
print 'Lane fail',i
found = True
if not found: print 'All lanes PASS'
the if not found needs to be indented.
No, e
On Wed, Feb 9, 2011 at 12:35 PM, Steven D'Aprano wrote:
> de Haan wrote:
>
>> On Wed, Feb 9, 2011 at 12:18 PM, Steven D'Aprano > >wrote:
>>
>> de Haan wrote:
>>>
>>> Hi,
Im fairly new to programming in python, and have a question.
Im looking to build a program that monitor's
> No, it doesn't work. You haven't sufficiently tested it. It tells lies:
>
>
> >>> s='11100101'
> >>> found = False
> >>> for i,c in enumerate(s):
> ... if c == '0':
> ... print 'Lane fail',i
> ... found = True
> ... if not found: print 'All lanes PASS'
> ...
> All lanes PASS
> All lanes PASS
>
de Haan wrote:
On Wed, Feb 9, 2011 at 12:18 PM, Steven D'Aprano wrote:
de Haan wrote:
Hi,
Im fairly new to programming in python, and have a question.
Im looking to build a program that monitor's certain things on my Linux
system. for instance disk space. What is the best way to monitor a L
On Wed, Feb 9, 2011 at 12:18 PM, Steven D'Aprano wrote:
> de Haan wrote:
>
>> Hi,
>>
>> Im fairly new to programming in python, and have a question.
>>
>> Im looking to build a program that monitor's certain things on my Linux
>> system. for instance disk space. What is the best way to monitor a L
de Haan wrote:
Hi,
Im fairly new to programming in python, and have a question.
Im looking to build a program that monitor's certain things on my Linux
system. for instance disk space. What is the best way to monitor a Linux
server without using to much resources?
Why reinvent the wheel? What
We use nagios for all of our monitoring which provides central information
for all machines
its ok to use shell scripts to do system level monitoring (minimal level)
but if you have complex monitoring on java programs and all then use jmax
etc
Thanks,
Nitin
On Wed, Feb 9, 2011 at 4:39 PM, de Haa
Hi,
Im fairly new to programming in python, and have a question.
Im looking to build a program that monitor's certain things on my Linux
system. for instance disk space. What is the best way to monitor a Linux
server without using to much resources?
Should I execute shell commands and grab the o
tee chwee liong wrote:
hi all,
the code works:
s='00101'
found = False
for i,c in enumerate(s):
if c == '0':
print 'Lane fail',i
found = True
if not found: print 'All lanes PASS
No, it doesn't work. You haven't sufficiently tested it. It tells lies:
>>> s='111
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 with the url: http://www.dipoelegbede.com/msg.txt.
I have succee
>s='00101'
>found = False
>for i,c in enumerate(s):
>if c == '0':
>print 'Lane fail',i
>found = True
>if not found: print 'All lanes PASS
>#
>
>the enumerate is checking from left to right. is it possible check from right
>to
>left?
>
>for eg:s='00101'
>The ea
20 matches
Mail list logo