Hi to all,
thanks, I'll try your suggestions...
Regards!
Fabian
Brian Munroe schrieb am 12/15/2007 07:10 PM:
> On Dec 15, 11:04 am, Fabian Braennstroem <[EMAIL PROTECTED]>
> wrote:
>
>> thanks for your ideas! I actually thought of something like
>> a python par
Hi to both,
Dan Poirier schrieb am 12/15/2007 02:00 PM:
> On Dec 15, 5:18 am, Fabian Braennstroem <[EMAIL PROTECTED]> wrote:
>> I am wondering, if anyone tried to convert lotus nsf mails
>> to a mbox format using python!? It would be nice, if anyone
>> has an idea, how
Hi,
I am wondering, if anyone tried to convert lotus nsf mails
to a mbox format using python!? It would be nice, if anyone
has an idea, how to do it on a linux machine.
Regards!
Fabian
--
http://mail.python.org/mailman/listinfo/python-list
Hi John,
John Machin schrieb am 11/20/2007 09:40 PM:
> On Nov 21, 8:05 am, Fabian Braennstroem <[EMAIL PROTECTED]> wrote:
>> Hi,
>>
>> I would like to use re to search for lines in a files with
>> the word "README_x.org", where x is any number.
Hi,
I would like to use re to search for lines in a files with
the word "README_x.org", where x is any number.
E.g. the structure would look like this:
[[file:~/pfm_v99/README_1.org]]
I tried to use these kind of matchings:
#org_files='.*README\_1.org]]'
org_files='.*README\_*.org
Hi Rafael,
Rafael Sachetto wrote:
> Take a look at this documentation:
>
> http://pexpect.sourceforge.net/pxssh.html
thanks for the link, but it actually looks to me almost like my little
example... I somehow don't get it!? Any more hints?
Fabian
>
>> >>>
>> >> pexpect would be the usual solu
Fabian Braennstroem wrote:
> Hi Steve,
>
> Steve Holden wrote:
>
>> Fabian Braennstroem wrote:
>>> Hi,
>>>
>>> I would like to use python to start an terminal, e.g. xterm, and login
>>> on a remote machine using rsh or ssh. This could b
Hi Paul,
Paul McGuire wrote:
> On Oct 17, 4:47 pm, Fabian Braennstroem <[EMAIL PROTECTED]> wrote:
>
>> Unfortunately, it does not parse the whole file names with
>> the underscore and I do not know yet, how I can access the
>> line with 'define/boundary-condi
Hi Steve,
Steve Holden wrote:
> Fabian Braennstroem wrote:
>> Hi,
>>
>> I would like to use python to start an terminal, e.g. xterm, and login on
>> a remote machine using rsh or ssh. This could be done using 'xterm -e ssh
>> machine', but afte
Hi,
me again :-)
I would like to parse a small batch file:
file/read-case kepstop.cas
file/read-data keps1500.dat
solve/monitors/residual/plot no
solve/monitors/residual/print yes
/define/boundary-conditions in velocity-inlet 10 0.1 0.1 no 1
it 500
wd keps1500_500.dat
yes
exit
Right now, I use
Hi,
I would like to use python to start an terminal, e.g. xterm, and login on a
remote machine using rsh or ssh. This could be done using 'xterm -e ssh
machine', but after the login I would like to jump to a given directory.
Does anyone have an idea how to do this with python?
Regards!
Fabian
--
Hi to all,
thanks for your help. The approach
print '\r\n'.join([x.strip() for x in
open('c:/flutest.txt') if 'e-0' in x])
works quite well :-)
Greetings!
Fabian
Fabian Braennstroem schrieb am 09/13/2007 09:09 PM:
> Hi,
>
> I would like to delet
-04 9.8395e-05 1.4865e-04 8.3913e-04
3.8545e-03 1.3315e-01 11:14:10 500
501 1.0086e-03 2.4608e-04 9.8589e-05 1.4908e-04 8.3956e-04
3.8560e-03 4.8384e-02 11:40:01 499
as field values.
Fabian Braennstroem schrieb am 09/13/2007 09:09 PM:
> Hi,
>
> I would like to delete a region on a log f
Hi,
I would like to delete a region on a log file which has this
kind of structure:
#--flutest
498 1.0086e-03 2.4608e-04 9.8589e-05 1.4908e-04
8.3956e-04 3.8560e-03 4.8384e-02 11:40:01 499
499 1.0086e-03 2.4608e-04 9.8589e-05
Hi,
I am looking for simple vte examples mainly for pygtk.
Can anyone point me in the right direction or is there a better
terminal emulation for pygtk? It would be nice, if there exist a
good howto for installing vte up for the use of python; esp. for an
old redhat/scientific linux machine... I a
Hi,
thanks to both! I will take a look at the proc files!
* James T. Dennis <[EMAIL PROTECTED]> wrote:
> Fabian Braennstroem <[EMAIL PROTECTED]> wrote:
>> Hi,
>
>>I would like to track the cpu usage of a couple of
>>programs using python. Maybe it
Hi,
I would like to track the cpu usage of a couple of
programs using python. Maybe it works somehow with
piping 'top' to python read the cpu load for a greped
application and clocking the the first and last
appearence. Is that a good approach or does anyone have
a more ele
Hi Paul,
Paul McGuire schrieb am 03/27/2007 07:19 PM:
> 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 wou
Hi,
Gabriel Genellina schrieb am 03/27/2007 10:09 PM:
> En Tue, 27 Mar 2007 18:42:15 -0300, Diez B. Roggisch <[EMAIL PROTECTED]>
> escribió:
>
>> Paul McGuire schrieb:
>>> On Mar 27, 10:18 am, "Diez B. Roggisch" <[EMAIL PROTEC
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 pd
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:
Hi Martin,
* Martin v. Löwis <[EMAIL PROTECTED]> wrote:
> Fabian Braennstroem schrieb:
>> I just tried to install python 2.5 from source on my
>> ScienticLinux (Redhat Clone) machine. It seems to work
>> without any problem, at least I am able to run some of my
>>
Hi,
I just tried to install python 2.5 from source on my
ScienticLinux (Redhat Clone) machine. It seems to work
without any problem, at least I am able to run some of my
old scripts. I installed it with './configure
--prefix=/opt/python make make altinstall', but now for a
'vtk' installation which
Hi Norbert,
* Norbert Kaufmann <[EMAIL PROTECTED]> wrote:
> Fabian Braennstroem wrote:
> [...]
>>
>> Maybe, I understood something wrong, but I thought that the
>> above 'webserver' script would replace apache in my case; at
>> least I hoped!?
>&
Hi,
* ArdPy <[EMAIL PROTECTED]> wrote:
>
> Fabian Braennstroem wrote:
>> Hi,
>>
>> I am looking for a small python script, which starts a small
>> web server with python cgi support on a linux machine.
>>
>> I tried:
>>
>>
>> #!
Hi,
I am looking for a small python script, which starts a small
web server with python cgi support on a linux machine.
I tried:
#!/usr/bin/env python
import sys
from CGIHTTPServer import CGIHTTPRequestHandler
import BaseHTTPServer
class MyRequestHandler(CGIHTTPRequestHandler):
Hi,
* Fabian Braennstroem <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I am just testing pygtk/glade out and wonder, if I am able
> to change the keybindings. E.g. the treeview searches by
> default for the entries beginning with the typed keystroke;
> moving to the next row work
Hi,
I am just testing pygtk/glade out and wonder, if I am able
to change the keybindings. E.g. the treeview searches by
default for the entries beginning with the typed keystroke;
moving to the next row works as usual with the Down key. Now
I would like to change the key bindings to e.g. 'j' to mo
Hi Wesley,
* wesley chun <[EMAIL PROTECTED]> wrote:
>> just a small OT question coming from a linux openoffice
>> system...
>>
>> Does there exist something similar for powerpoint? Would be
>> nice, if anybody can direct me to more examples...
>
>
> fabian,
>
> see below for a PP example. you men
Hi,
I am not sure, if that is, what your looking for, but
with 'salome' you able to produce 3D drawings with an GUI or
using a python script. Take a look at:
http://www.salome-platform.org/home/presentation/geom/
* Scott David Daniels <[EMAIL PROTECTED]> wrote:
> Ron Adam wrote:
>> Scott David D
Hi,
just a small OT question coming from a linux openoffice
system...
* wesley chun <[EMAIL PROTECTED]> wrote:
>> From: [EMAIL PROTECTED]
>> Date: Tues, Oct 10 2006 2:08 pm
>>
>> I'm a Python newbie, and I'm just getting to the wonders of COM
>> programming.
>
>
> welcome to Python!! i too, have
Hi,
I am using lfm, a curses based file manager, and want to
change into the last directory of my lfm-session after
closing it. To be more clear:
1) run lfm from console in the home directory ~
2) move to ~/something
3) close lfm
4) be in ~/something on the console
Is that possible in any way? l
Hi Bernhard,
* [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>> > I can definitively second that. ROOT is a bit hard to learn but very,
>> > very powerful and PyRoot is really a pleasure to work with.
>>
>> It sounds interesting. Right now, I use matplotlib for
>> 2D plotting and vtk for 3D. Do you
Hi,
* Carl Friedrich Bolz <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
>> A commonly used data analysis framework is root (http://root.cern.ch).
>> It offers a object oriented C++ framework with all kind of things one
>> needs for plotting and data visualization. It comes along with PyRoo
Hi to all,
thanks a lot! I am pretty sure your ideas help :-)
Greetings!
Fabian
--
http://mail.python.org/mailman/listinfo/python-list
Hi,
I would like to remove certain lines from a log files. I had
some sed/awk scripts for this, but now, I want to use python
with its re module for this task.
Actually, I have two different log files. The first file looks
like:
...
'some text'
...
ITER I- GL
thon
version ... python seems to me a lot easier than C, esp. for
adjusting and adding some functions for my daily use. I
found wxPyAtol, which could be a good base, but
unfortunately there is no wx installed at my office machine
:-(
>
> Fabian Braennstroem wrote:
>> Hi,
>>
>>
Hi,
I am looking for a file manager based on pygtk. It seems
that there does not exist any!? Maybe, someone has a hint or
already some starting code lines for such a 'thing'!?
Greetings!
Fabian
--
http://mail.python.org/mailman/listinfo/python-list
Hi to both,
thanks! I'll try them ...
* Fabian Braennstroem <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I would like to use python to convert 'simple' latex
> documents into openoffice format. Maybe, anybody has done
> something similar before and can give me a star
Hi,
I would like to use python to convert 'simple' latex
documents into openoffice format. Maybe, anybody has done
something similar before and can give me a starting point!?
Would be nice to hear some hints!
Greetings!
Fabian
--
http://mail.python.org/mailman/listinfo/python-list
Hi Fredrik,
* Fredrik Lundh <[EMAIL PROTECTED]> wrote:
> Fabian Braennstroem wrote:
>
>> Does nobody have an idea or is it to stupid?
>
> have you looked at:
>
> http://excess.org/urwid/
Thanks! I found this too and it seems to be helpful...
Greetings!
Fabi
Hi Steve,
* Steve Holden <[EMAIL PROTECTED]> wrote:
> Fabian Braennstroem wrote:
>> Sorry, me again...
>> Does nobody have an idea or is it to stupid?
>>
>> * Fabian Braennstroem <[EMAIL PROTECTED]> wrote:
>>
>>>Hi,
>>>
>>>
Sorry, me again...
Does nobody have an idea or is it to stupid?
* Fabian Braennstroem <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I want to add some radio and check buttons to my curses
> script. As I understand it, there are no buttons in the
> 'basic' curses module
Hi,
I want to add some radio and check buttons to my curses
script. As I understand it, there are no buttons in the
'basic' curses module. Now, I found the curses-extra module,
but I not able to download and install it.
Does anybody have an idea, where I can download the module
or, even better, h
Hi Ben,
* Ben C <[EMAIL PROTECTED]> wrote:
> On 2006-08-08, Fabian Braennstroem <[EMAIL PROTECTED]> wrote:
>> Hi Ben,
>>
>> * Ben C <[EMAIL PROTECTED]> wrote:
>>> On 2006-08-06, Fabian Braennstroem <[EMAIL PROTECTED]> wrote:
>>>>
Hi Ben,
* Ben C <[EMAIL PROTECTED]> wrote:
> On 2006-08-06, Fabian Braennstroem <[EMAIL PROTECTED]> wrote:
>> Hi Ben,
>>
>> * Ben C <[EMAIL PROTECTED]> wrote:
>>> On 2006-08-05, Fabian Braennstroem <[EMAIL PROTECTED]> wrote:
>>>>
Hi to both,
* cga2000 <[EMAIL PROTECTED]> wrote:
> On Mon, Aug 07, 2006 at 08:34:16PM EDT, Aahz wrote:
>> In article <[EMAIL PROTECTED]>,
>> cga2000 <[EMAIL PROTECTED]> wrote:
>> >On Sun, Aug 06, 2006 at 04:15:08PM EDT, Aahz wrote:
>> >> In
Hi Ben,
* Ben C <[EMAIL PROTECTED]> wrote:
> On 2006-08-05, Fabian Braennstroem <[EMAIL PROTECTED]> wrote:
>> Hi,
>>
>> I want to get access to my abook address file with python.
>> Does anyone have some python lines to achive this using
>> curses? I
Hi,
I want to get access to my abook address file with python.
Does anyone have some python lines to achive this using
curses? If not, maybe anybody has small python program doing
it with a gui!?
Greetings!
Fabian
--
http://mail.python.org/mailman/listinfo/python-list
Hi,
I am looking for a python email client for the terminal... something like
mutt; maybe, so powerfull ;-)
Would be nice, if anybody has an idea!
Greetings!
Fabian
--
http://mail.python.org/mailman/listinfo/python-list
Hi Martin,
* Martin v. Löwis <[EMAIL PROTECTED]> wrote:
> Fabian Braennstroem schrieb:
>> I look for an easy way to use the newest scipy, pyvtk, matplotlib,
>> f2py, numpy, paraview/vtk,... on a entreprise redhat machine
>> without administration rights.
>> My
Hi,
I look for an easy way to use the newest scipy, pyvtk, matplotlib,
f2py, numpy, paraview/vtk,... on a entreprise redhat machine
without administration rights.
My first thought was to install the whole new python system
on a cdrom/dvd and mounting it, when I need it. Would that
be the easiest w
Hi Robert,
* Robert Kern <[EMAIL PROTECTED]> wrote:
> Fabian Braennstroem wrote:
>> Hi,
>>
>> I have a 'simple' problem with a multidimension array in a
>> for loop. It looks like this:
>>
>> wert= zeros([127,2])
>> wert1= zeros(127)
Hi,
I have a 'simple' problem with a multidimension array in a
for loop. It looks like this:
wert= zeros([127,2])
wert1= zeros(127)
m=1
l=1
for pos in [pos1,pos2,pos3]:
for i in range(1,125):
wert[l,m]= probe1.GetOutput().GetPointData().GetScalars().GetTuple1(i);
#wert1[i]=
Hi Harry,
* Harry George <[EMAIL PROTECTED]> wrote:
> Fabian Braennstroem <[EMAIL PROTECTED]> writes:
>
>> Hi,
>>
>> I am pretty new to python and will use it mainly in
>> combination with scientific packages. I am running ubuntu
>> breezy righ
Hi,
* Robert Kern <[EMAIL PROTECTED]> wrote:
> Fabian Braennstroem wrote:
>> Hi to all,
>>
>> thanks for your ideas! I just figured out a different way
>> using archlinux 'pacman' (package management tool like apt).
>> As a former archlinux user
Hi to all,
thanks for your ideas! I just figured out a different way
using archlinux 'pacman' (package management tool like apt).
As a former archlinux user I am more used to adjust those
PKDBUILDs (kind of ebuilds under archlinux) than adjusting
debian packages. The downside is that apt does not
Hi,
I am pretty new to python and will use it mainly in
combination with scientific packages. I am running ubuntu
breezy right now and see that some packages are out of date.
Do you have any suggestion, how I can get/keep the latest
python modules (e.g. scipy, numpy,...) on my ubuntu system?
I.e.
58 matches
Mail list logo