Klaas <[EMAIL PROTECTED]> wrote:
> On Mar 26, 3:30 am, Nick Craig-Wood <[EMAIL PROTECTED]> wrote:
> > Did anyone write a contextmanager implementing a timeout for
> > python2.5?
> >
> > I'd love to be able to write something like
> >
> > with timeout(5.0) as exceeded:
> > some_long_run
Hendrik van Rooyen <[EMAIL PROTECTED]> wrote:
> so Diez is probably right that the way to go is to put the timer in the
> python interpreter loop, as its the only thing around that you could
> more or less trust to run all the time.
>
> But then it will not read as nice as Nick's wish, but mo
> So you have already tried NTLM Authorization Proxy
> Server?http://ntlmaps.sourceforge.net/
> This used to work fine for me but that was at least 3-4 years ago.
Actually NTLM proxy server works for most intranet addresses. Not for
the outside Internet ones, though.
Radek
--
http://mail.pytho
Hi,
Could someone tell me how to uninstall SPE under windows?
Alain
--
http://mail.python.org/mailman/listinfo/python-list
> A TRULY good way to show your thanks for help like this
> is to write up what you learned at theTkinterWiki
> http://tkinter.unpythonic.net/wiki/>. Note:
> A. You have to log in to edit pages
> on this particular Wiki. If you
> decide to join us, then, you'll
> first need to crea
On Mon, 26 Mar 2007 08:27:19 +0200, Tina I <[EMAIL PROTECTED]> wrote:
> Tina I wrote:
>> When looking at other peoples code (to learn from it) I keep seeing an
>> empty file named "__init__.py". What's the purpose of this?
>>
>> Thanks
>> Tina
>
> Duh! Never mind... found it.
> Kinda neat actuall
Jorgen Grahn wrote:
> On Mon, 26 Mar 2007 08:27:19 +0200, Tina I <[EMAIL PROTECTED]> wrote:
>> Tina I wrote:
>>> When looking at other peoples code (to learn from it) I keep seeing an
>>> empty file named "__init__.py". What's the purpose of this?
>>>
>>> Thanks
>>> Tina
>> Duh! Never mind... foun
Hi,
does anyone know if there is a way to plot a dendrogram with python.
Pylab or matplotlib do not provide such a function.
Thanks!
Frank
--
http://mail.python.org/mailman/listinfo/python-list
Peter Otten <[EMAIL PROTECTED]> wrote:
>> Which version of Python, and what happens when you try it?
>>
>> It works fine for me with Python 2.5 on Windows:
>>
>> C:\Temp>\python25\python -m pdb t.py
>>> c:\temp\t.py(3)()
>> -> a = 1
>> (Pdb) s
>>> c:\temp\t.py(4)()
>> -> b = 2
>> (Pdb) j 3
>>> c
On Mar 26, 6:06 pm, "Chris Lasher" <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> I have a simple script:
>
> ---
> #!/usr/bin/envpython
>
> a = 1
> b = 2
>
> c = a + b
>
> print c
> ---
>
> I launch said script withpdb:
>
> python-mpdbsimple.py
>
> I noticed that I absolutely cannot jump back to the fir
On Mon, 26 Mar 2007 16:50:09 +0200, Thomas Dybdahl Ahle <[EMAIL PROTECTED]>
wrote:
> Den Mon, 26 Mar 2007 11:24:34 +0200 skrev Michal 'vorner' Vaner:
>> On Mon, Mar 26, 2007 at 08:30:16AM +0200, Thomas Dybdahl Ahle wrote:
>
>>> Do anybody know how to do this in python?
>
>> You need root for that
Hi all
I cant figure out how to disable resizing of my popup window?
How to put this popup window to show in the middle of my text editor?
It is writen with Toplevel.
thx
--
http://mail.python.org/mailman/listinfo/python-list
Hi,
sys.excepthook don't work if an exception come in a thread...
It's normal or its a bug ? There are any tip ? look here :
http://spyced.blogspot.com/2005_06_01_archive.html
Thx
--
http://mail.python.org/mailman/listinfo/python-list
At 01:39 AM 3/27/2007, alain wrote:
>Hi,
>
>Could someone tell me how to uninstall SPE under windows?
Well, mine is in E:\Python25\Lib\site-packages\_spe, so I'd try
deleting that folder.
Dick Moores
--
http://mail.python.org/mailman/listinfo/python-list
On Mar 27, 11:39 am, "alain" <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Could someone tell me how to uninstall SPE under windows?
>
> Alain
Dunno about SPE, but most Python modules I've installed can
be uninstalled from control panel/add remove programs.
--
http://mail.python.org/mailman/listinfo/pyth
At 03:37 AM 3/27/2007, [EMAIL PROTECTED] wrote:
>On Mar 27, 11:39 am, "alain" <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > Could someone tell me how to uninstall SPE under windows?
> >
> > Alain
>
>Dunno about SPE, but most Python modules I've installed can
>be uninstalled from control panel/add remo
Can someone give me example how to write text editor in tkintter with
model-view-controler?
What goes to controler and what goes to model?
thanks in advance
--
http://mail.python.org/mailman/listinfo/python-list
Frank:
> does anyone know if there is a way to plot a dendrogram with python.
> Pylab or matplotlib do not provide such a function.
An ASCII solution:
http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/139422
Some graphics:
http://plone.org/products/phylogenetictree
http://www.bioinformatics
I use pycluster
http://bonsai.ims.u-tokyo.ac.jp/~mdehoon/software/cluster/software.htm#pycluster
--
http://mail.python.org/mailman/listinfo/python-list
Hi
i am trying to implement the following:
I want to be able to press a button, perform a task and return a
value.
my button is named button1 and I used glade to build the gui.
so, something like this should work
application=gtk.glade.XML('app.glade','app')
bt=app.get_widget('button1
I believe that just deleting the folders should work
Dick Moores wrote:
> At 03:37 AM 3/27/2007, [EMAIL PROTECTED] wrote:
> >On Mar 27, 11:39 am, "alain" <[EMAIL PROTECTED]> wrote:
> > > Hi,
> > >
> > > Could someone tell me how to uninstall SPE under windows?
> > >
> > > Alain
> >
> >Dunno ab
Oups a small mistake:
bt=application.get_widget('button1')
[EMAIL PROTECTED] wrote:
> Hi
>
>
> i am trying to implement the following:
>
> I want to be able to press a button, perform a task and return a
> value.
>
> my button is named button1 and I used glade to build the gui.
>
> so, someth
On Tue, 27 Mar 2007 12:05:07 +0200, Gigs_ <[EMAIL PROTECTED]> wrote:
> Hi all
>
> I cant figure out how to disable resizing of my popup window?
myPopupWindow.wm_resizable(0, 0)
It may or may not make resize controls disappear depending on your
platform and/or window manager. But the resizing w
In article <[EMAIL PROTECTED]>,
Beliavsky <[EMAIL PROTECTED]> wrote:
.
.
.
>Your experience with Fortran is dated -- see below.
>
>>
>> I'll be more clear: Fortran itself is a distinguished
>> language with many meritorious im
On Tue, 27 Mar 2007 13:29:25 +0200, Gigs_ <[EMAIL PROTECTED]> wrote:
> Can someone give me example how to write text editor in tkintter with
> model-view-controler?
> What goes to controler and what goes to model?
>
> thanks in advance
Others may have a different opinion, but I think using MVC
David Nicolson wrote:
> Thanks, but it's definitely not the print. In original the code the
> print statements are replaced by a call to a log method.
>
> Besides, the exception would be different if it was thrown outside of
> the try block.
The best you can do is take the piece of code that
On Mar 26, 5:41 pm, John McMonagle <[EMAIL PROTECTED]> wrote:
> jp wrote:
> >>> On Mar 26, 10:51 am, "jp" <[EMAIL PROTECTED]> wrote:
> I have multiple PMW widgets (EntryFields, ScrolledField etc), how can
> I skip over these widgets when using the tab key?
> Thank you,
> John
>
I wasn't able to run a Python script. But then later I was able to run
it through the Shell. I was experimenting with cron jobs and set up
the python execution in as a cron. The first time it ran, It was fine
but then after that, it started giving me some errors. Now when I try
to run the script di
Eric Brunel wrote:
> On Tue, 27 Mar 2007 12:05:07 +0200, Gigs_ <[EMAIL PROTECTED]> wrote:
>
>> Hi all
>>
>> I cant figure out how to disable resizing of my popup window?
>
> myPopupWindow.wm_resizable(0, 0)
>
> It may or may not make resize controls disappear depending on your
> platform and/or
Dennis Lee Bieber a écrit :
> On Wed, 21 Mar 2007 21:40:51 +0100, Bruno Desthuilliers
> <[EMAIL PROTECTED]> declaimed the following in
> comp.lang.python:
>
>> It will actually do something: rebind name 'a' to the method lower() of
>> the string previously binded to 'a'
>>
> For future refe
Hi,
I am looking for the most efficient / cleanest way to implement a socket
read with timeout (Windows mainly but would be great if the same code
worked under *nix)
Tanks,
hg
--
http://mail.python.org/mailman/listinfo/python-list
Legend napisał(a):
> I wasn't able to run a Python script. But then later I was able to run
> it through the Shell. I was experimenting with cron jobs and set up
> the python execution in as a cron. The first time it ran, It was fine
> but then after that, it started giving me some errors. Now whe
hg napisał(a):
> I am looking for the most efficient / cleanest way to implement a socket
> read with timeout (Windows mainly but would be great if the same code
> worked under *nix)
Did you see http://www.timo-tasi.org/python/timeoutsocket.py ?
--
Jarek Zgoda
"We read Knuth so you don't have
Hello all,
Although I have encountered many modules that have impressed me with
regards to what they can actually do -- too be perfectly honest, it's
very rare that I become impressed by the _interfaces_ to the modules.
Using a new module is normally, with my - admittedly - limited
experi
On Mar 27, 8:30 am, Jan Danielsson <[EMAIL PROTECTED]> wrote:
> Hello all,
>
>
>
>Although I have encountered many modules that have impressed me with
> regards to what they can actually do -- too be perfectly honest, it's
> very rare that I become impressed by the _interfaces_ to the modules.
Jarek Zgoda wrote:
> hg napisał(a):
>
>> I am looking for the most efficient / cleanest way to implement a socket
>> read with timeout (Windows mainly but would be great if the same code
>> worked under *nix)
>
> Did you see http://www.timo-tasi.org/python/timeoutsocket.py ?
>
Note that since 2.
On Mar 27, 8:19 am, "Legend" <[EMAIL PROTECTED]> wrote:
> I wasn't able to run a Python script. But then later I was able to run
> it through the Shell. I was experimenting with cron jobs and set up
> the python execution in as a cron. The first time it ran, It was fine
> but then after that, it st
On Mar 27, 12:15 am, Shane Geiger <[EMAIL PROTECTED]> wrote:
> I believe you are looking for os.getpid()
>
> 李现民 wrote:
> > hi ,all
> >any one knows how to enumerate the current running processes , or
> > how to obtain a specific process by its name or process id. I know I
> > can do this in ma
I'm trying to decide whether I need threads in my Tkinter application or
not. My app is a front end to a command-line tool; it feeds commands to
the command-line program, then reads its output and displays it in a
Tkinter text widget. Some of the commands are long-running and/or return
thousand
Kevin Walzer wrote:
> I'm trying to decide whether I need threads in my Tkinter application or
> not. My app is a front end to a command-line tool; it feeds commands to
> the command-line program, then reads its output and displays it in a
> Tkinter text widget. Some of the commands are long-run
Hi everyone,
I've been reading through the documentation on extending and embedding
python and the C API and I have a question about how allocation occurs
of one type from another type. For example lets so I make to C module
foo.c and bar.c and each has a python type. If I want to define a
method
On Mar 27, 9:07 am, Kevin Walzer <[EMAIL PROTECTED]> wrote:
> Kevin Walzer wrote:
> > I'm trying to decide whether I need threads in my Tkinter application or
> > not. My app is a front end to a command-line tool; it feeds commands to
> > the command-line program, then reads its output and displays
On Mar 26, 12:59 pm, "Erik Johnson" <[EMAIL PROTECTED]> wrote:
> <[EMAIL PROTECTED]> wrote in message
>
> news:[EMAIL PROTECTED]
>
> > OK...
> > I've been told that Both Fortran and Python are easy to read, and are
> > quite useful in creating scientific apps for the number crunching, but
> > then
I am newbie to Python.. i want to know something..
can i place an object in disk instead of placing in Main Memory...?
If possible, can you please explain with some scripts...?
can two python script share a common object?
--
http://mail.python.org/mailman/listinfo/python-list
>> I am looking for the most efficient / cleanest way to implement a
>> socket read with timeout (Windows mainly but would be great if the
>> same code worked under *nix)
Jarek> Did you see http://www.timo-tasi.org/python/timeoutsocket.py ?
Also socket objects have timeout attrib
Clement wrote:
> I am newbie to Python.. i want to know something..
>
> can i place an object in disk instead of placing in Main Memory...?
> If possible, can you please explain with some scripts...?
See the module pickle and it's examples.
> can two python script share a common ob
I've been using the xml.sax.handler module to do event-driven parsing
of XML files in this python application I'm working on. However, I
keep having really pesky invalid token exceptions. Initially, I was
only getting them on control characters, and a little "sed -e 's/
[^[:print:]]/ /g' $1;" took
Hi,
I wrote a small gtk file manager, which works pretty well. Until
now, I am able to select different file (treeview entries) just by
extension (done with 'endswith'). See the little part below:
self.pathlist1=[ ]
self.patternlist=[ ]
while iter:
En Tue, 27 Mar 2007 02:34:48 -0300, Bjoern Schliessmann
<[EMAIL PROTECTED]> escribió:
>> In C, a signal handler function has only one parameter, that is
>> signal number. But in Python(import signal), a signal handler
>> function has two parameters, the first is signal number, the
>> second is "
On Friday, Mar 23rd 2007 at 10:52 -0700, quoth belinda thom:
=>I'm writing a function that polls the user for keyboard input,
=>looping until it has determined that the user has entered a valid
=>string of characters, in which case it returns that string so it can
=>be processed up the call
On Mar 27, 9:59 am, [EMAIL PROTECTED] wrote:
> I've been using the xml.sax.handler module to do event-driven parsing
> of XML files in this python application I'm working on. However, I
> keep having really pesky invalid token exceptions. Initially, I was
> only getting them on control characters,
[EMAIL PROTECTED] wrote:
> I've been using the xml.sax.handler module to do event-driven parsing
> of XML files in this python application I'm working on. However, I
> keep having really pesky invalid token exceptions. Initially, I was
> only getting them on control characters, and a little "sed -
Fabian Braennstroem wrote:
> Hi,
>
> I wrote a small gtk file manager, which works pretty well. Until
> now, I am able to select different file (treeview entries) just by
> extension (done with 'endswith'). See the little part below:
>
> self.pathlist1=[ ]
> self.
On 27 Mrz., 14:01, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> I believe that just deleting the folders should work
No, never delete the folder if you used the windows installer (*.exe)!
Go to your control panel>Add/Remove Programs and there should be an
entry "python*-spe*" with an unins
Fabian Braennstroem wrote:
> Now, I would like to improve it by searching for different 'real'
> patterns just like using 'ls' in bash. E.g. the entry
> 'car*.pdf' should select all pdf files with a beginning 'car'.
> Does anyone have an idea, how to do it?
Use module glob.
--
http://mail.python.
On Tue, 2007-03-27 at 16:49 +0200, Diez B. Roggisch wrote:
> > can two python script share a common object?
>
> What do you mean by that? They can both load a pickled object, yes. But they
> can't share it as a at-runtime object, where changes in one script are
> immediately are known to the o
"Diez B. Roggisch" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> What do you mean by that? They can both load a pickled object, yes. But
they
> can't share it as a at-runtime object, where changes in one script are
> immediately are known to the other.
>
> To do such a thing, look
On Mar 23, 12:52 pm, belinda thom <[EMAIL PROTECTED]> wrote:
> be processed up the call stack. My problem is this. I'd also like it
> to handle a special string (e.g. 'quit'), in which case control
> should return to the Python command line as opposed to returning the
> string up the call stack.
M
durumdara wrote:
> Hi!
>
> I want to check my zip file writings.
> I need some callback procedure to show a progress bar.
> Can I do that?
> I don't want to modify the PyLib module to extend it, because if I get
> another py, the changes are lost.
> This happening too if I copy the zip module to m
Facundo Batista wrote:
> David Nicolson wrote:
>
>
>>Thanks, but it's definitely not the print. In original the code the
>>print statements are replaced by a call to a log method.
>>
>>Besides, the exception would be different if it was thrown outside of
>>the try block.
>
>
> The best you
I am just starting to explore doing some scientific type data analysis
using Python, and am a little confused by the different incarnations of
modules (e.g., try Google("Python numeric").
There is SciPy, NumPy, NumArray, Numeric... I know some of these are
related and some are separate,
I believe you are looking for os.getpid()
I apologize for providing that bit of incorrect info.
It looks to me as if Python 1.5 had os.process which might have done
what you wanted (although perhaps not in an OS-independent way). I
wonder why there isn't an OS-independent way to do that in
Clement a écrit :
> I am newbie to Python..
To Python only, or to both Python and programming in general ?
> i want to know something..
>
> can i place an object in disk instead of placing in Main Memory...?
You can store it on disk (cf pickles and friends), but to actually use
it
Mark Morss wrote:
>
> Maybe somebody reading this will be able to convince me to look again
> at Numpy/Scipy, but for the time being I will continue to do my
> serious numerical computation in Fortran.
>
What I am missing in this discussion is a link to Pyrex to speed up
Python: Pyrex is almost
I am still fairly new to python and wanted to attempt a home made
password protection program. There are files that I carry on a USB
flash drive that I would like to password protect. Essentially, I
would like to password protect an entire directory of files. Is there
a way to auto execute a pyt
I checked the file format (of the file containing the n-tilde - ñ) and
it is indeed UTF-8! I'm baffled! Any ideas?
Thanks,
Jason
On Mar 27, 11:16 am, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > I've been using the xml.sax.handler module to do event-driven parsing
Erik Johnson wrote:
> I am just starting to explore doing some scientific type data analysis
> using Python, and am a little confused by the different incarnations of
> modules (e.g., try Google("Python numeric").
>
> There is SciPy, NumPy, NumArray, Numeric... I know some of these are
>
On Mar 27, 9:56 am, "Brian Erhard" <[EMAIL PROTECTED]> wrote:
> I am still fairly new to python and wanted to attempt a home made
> password protection program. There are files that I carry on a USB
> flash drive that I would like to password protect. Essentially, I
> would like to password prote
On Mar 27, 11:56 am, "Brian Erhard" <[EMAIL PROTECTED]> wrote:
> I am still fairly new to python and wanted to attempt a home made
> password protection program. There are files that I carry on a USB
> flash drive that I would like to password protect. Essentially, I
> would like to password prot
On Mar 27, 9:49 am, "Erik Johnson" <[EMAIL PROTECTED]> wrote:
> I am just starting to explore doing some scientific type data analysis
> using Python, and am a little confused by the different incarnations of
> modules (e.g., try Google("Python numeric").
>
> There is SciPy, NumPy, NumArray
Ene wrote:
> As it stands Matplotlib does not
> support numpy (thus my suggestion to install two of the three - my
> choice: numarray + numpy)
matplotlib certainly supports numpy.
--
Robert Kern
"I have come to believe that the whole world is an enigma, a harmless enigma
that is made terrible
Brian Erhard wrote:
> Is there
> a way to auto execute a python script after a user double clicks to
> open a folder on the USB drive? How can you capture that double click
> event on a specific folder?
That would depend on what desktop / Operating System you're
using. If it's Windows, you need a
I'm just getting started on Boost Python and may have missed this
obvious looking problem somewhere.
Given a c-extension "testext" written using Boost Python containing a
base class "Base", a derived class "Derived", and a function
"doSomething" which expects a "Derived" parameter, if I pass it a
On Mar 27, 10:33 am, "Clement" <[EMAIL PROTECTED]> wrote:
> I am newbie to Python.. i want to know something..
>
> can i place an object in disk instead of placing in Main Memory...?
>
> If possible, can you please explain with some scripts...?
>
> can two python script share a common o
I read the document here about exception handling in python:
http://www.diveintopython.org/file_handling/index.html
Can you please tell me how can I catch all exception in python?
like this in Java:
try {
} catch (Throwable t) {
...
}
--
http://mail.python.org/mailman/listinfo/python-lis
Hi to all,
Wojciech Mu?a schrieb am 03/27/2007 03:34 PM:
> Fabian Braennstroem wrote:
>> Now, I would like to improve it by searching for different 'real'
>> patterns just like using 'ls' in bash. E.g. the entry
>> 'car*.pdf' should select all pdf files with a beginning 'car'.
>> Does anyone have
On Mar 27, 12:55 pm, Jaap Spies <[EMAIL PROTECTED]> wrote:
> Mark Morss wrote:
>
> > Maybe somebody reading this will be able to convince me to look again
> > at Numpy/Scipy, but for the time being I will continue to do my
> > serious numerical computation in Fortran.
>
> What I am missing in this
"Steven D'Aprano" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Sheesh. Do Java developers go around telling everybody that Java is an
> interpreted language? I don't think so.
>
> What do you think the "c" in ".pyc" files stands for? "Cheese"?
On the contrary... Sun is very care
On Mar 27, 1:09 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> I read the document here about exception handling in python:
>
> http://www.diveintopython.org/file_handling/index.html
>
> Can you please tell me how can I catch all exception in python?
> like this in Java:
> try {
>
>
> }
Hi all,
I'm still new to all of this, but I'm trying to do something here that
*seems* like it should be pretty simple. All I want to do is take an array
of pixel data from a file (no header data or anything, just pixel data) in
RGB565 format and save it off to a bitmap file - or display it, i
En Tue, 27 Mar 2007 15:09:18 -0300, [EMAIL PROTECTED] <[EMAIL PROTECTED]>
escribió:
> I read the document here about exception handling in python:
>
> http://www.diveintopython.org/file_handling/index.html
>
> Can you please tell me how can I catch all exception in python?
> like this in Java:
>
Well I kept screwing around and funny thing, this works:
import sys, Image
if len(sys.argv) == 2:
print "\nReading: "+sys.argv[1]
image_file = open(sys.argv[1], "rb")
pixel_data = image_file.read()
im = Image.fromstring("RGB", (326, 325), pixel_data, "raw", "BGR;16")
im.show()
Although I
"Clement" <[EMAIL PROTECTED]> writes:
> I am newbie to Python.. i want to know something..
>
> can i place an object in disk instead of placing in Main Memory...?
>
> If possible, can you please explain with some scripts...?
>
> can two python script share a common object?
>
F
On Mar 27, 9:15 pm, [EMAIL PROTECTED] wrote:
> Technically speaking, you can catch all errors as follows:
>
> try:
># do something
> except Exception, e:
>print e
That won't catch exceptions/errors that don't derive from
Exception class. For example a string won't be caught:
try:
raise
"Robert Kern" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> http://www.scipy.org/History_of_SciPy
>
> numpy is the current array package and supercedes Numeric and numarray.
scipy
> provides a bunch of computational routines (linear algebra, optimization,
> statistics, signal proc
Hi,
Let's say you have a bunch of instatiated objects of the same class on
your hands and you want to had some functionality to them.
I'm facing this situation while working with PyGTK and libglade to
create a GUI. Libglade creates a whole object tree representing the
GUI out of an XML file, and
On Mar 27, 10:18 am, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote:
> Fabian Braennstroem wrote:
> > Hi,
>
> > I wrote a small gtk file manager, which works pretty well. Until
> > now, I am able to select different file (treeview entries) just by
> > extension (done with 'endswith'). See the little
On Mar 27, 3:13 pm, Fabian Braennstroem <[EMAIL PROTECTED]> wrote:
> Hi to all,
>
> Wojciech Mu?a schrieb am 03/27/2007 03:34 PM:
>
> > Fabian Braennstroem wrote:
> >> Now, I would like to improve it by searching for different 'real'
> >> patterns just like using 'ls' in bash. E.g. the entry
> >> '
Jason B wrote:
> Well I kept screwing around and funny thing, this works:
>
> import sys, Image
>
> if len(sys.argv) == 2:
> print "\nReading: "+sys.argv[1]
> image_file = open(sys.argv[1], "rb")
> pixel_data = image_file.read()
>
> im = Image.fromstring("RGB", (326, 325), pixel_data, "ra
I am downloading images using the script below. Sometimes it will go
for 10 mins, sometimes 2 hours before timing out with the following
error:
Traceback (most recent call last):
File "ftp_20070326_Downloads_cooperc_FetchLibreMapProjectDRGs.py",
line 108, i
n ?
urllib.urlretrieve(fullurl, lo
In <[EMAIL PROTECTED]>, Mark Morss
wrote:
> Well, the discussion was about Python vs. Fortran, and Pyrex, as I
> understand it, is a tool for linking C to Python.
I think it's more than that. It's more a subset of Python with a little
static typing.
Ciao,
Marc 'BlackJack' Rintsch
--
ht
On Mar 27, 5:59 am, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> I tried on GNU/Linux and Python versions 2.4 and 2.5 and get the same
> behavior. Best as I can tell, it looks like a bug in Python. pdb,
> pydb, rpdb2 all handle the "jump" command by changing the frame
> f_lineno value. When the
Hi,
I use rpy on linux to call R functions. Works fine up to the following
problem: How to parse arrays (no vectors, that means 2-dimensional) to
R without much effort?
The following code solves the problem (in two different ways).
However, it seems to me that there might be a way to do it more
En Tue, 27 Mar 2007 16:21:55 -0300, supercooper <[EMAIL PROTECTED]>
escribió:
> I am downloading images using the script below. Sometimes it will go
> for 10 mins, sometimes 2 hours before timing out with the following
> error:
>
> urllib.urlretrieve(fullurl, localfile)
> IOError: [Errno soc
[EMAIL PROTECTED] a écrit :
> Hi,
>
> Let's say you have a bunch of instatiated objects of the same class on
> your hands and you want to had some functionality to them.
Then I'd just do it.
> I'm facing this situation while working with PyGTK and libglade to
> create a GUI. Libglade creates a w
On Mar 27, 3:13 pm, "Gabriel Genellina" <[EMAIL PROTECTED]>
wrote:
> En Tue, 27 Mar 2007 16:21:55 -0300, supercooper <[EMAIL PROTECTED]>
> escribió:
>
> > I am downloading images using the script below. Sometimes it will go
> > for 10 mins, sometimes 2 hours before timing out with the following
> >
You could also use sys.excepthook if you're trying to handle uncaught
exceptions.
On 27 Mar 2007 11:45:54 -0700, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
On Mar 27, 9:15 pm, [EMAIL PROTECTED] wrote:
> Technically speaking, you can catch all errors as follows:
>
> try:
># do something
Is there
a way to auto execute a python script after a user double clicks to
open a folder on the USB drive? How can you capture that double click
event on a specific folder?
That would depend on what desktop / Operating System you're
using. If it's Windows, you need a shell extension (wh
Hi,
I use rpy to plot functions and have the following problem. When I
execute the following code line by line (start python and then execute
line by line) the resulting figure looks as it should. However, when I
put these lines in a script and execute the script the figure appears
for half a seco
Brian Erhard wrote:
> I am still fairly new to python and wanted to attempt a home made
> password protection program. There are files that I carry on a USB
> flash drive that I would like to password protect. Essentially, I
> would like to password protect an entire directory of files. Is there
1 - 100 of 140 matches
Mail list logo