How to make command history persistent?

2005-10-18 Thread vbfoobar
Hello, My question is: Is there an easy mean to make Python "command history" persistent across interpreter invokations? PS: In the case the question above is not clear, I rephrase it below verbosely... When I work from the Python prompt, I enjoy features like command line editing and

Re: How to make command history persistent?

2005-10-18 Thread vbfoobar
Great! The indicated "history save" works! Thanks -- http://mail.python.org/mailman/listinfo/python-list

Looking for CGI program to browse/manage/process files thru the web

2006-09-05 Thread vbfoobar
Hello, I am looking for Python code no other language wanted) that I couls use/reuse/adapt to implement (via CGI, no specific app server wanted) a web-based app that would offer the following functionality: - browse a file hierarchy perhaps dealing with access rights check - classical file manag

Looking for a regexp generator based on a set of known string representative of a string set

2006-09-08 Thread vbfoobar
Hello I am looking for python code that takes as input a list of strings (most similar, but not necessarily, and rather short: say not longer than 50 chars) and that computes and outputs the python regular expression that matches these string values (not necessarily strictly, perhaps the code is a

Re: Looking for a regexp generator based on a set of known string representative of a string set

2006-09-09 Thread vbfoobar
James Stroud a écrit : > [EMAIL PROTECTED] wrote: > > Hello > > > > I am looking for python code that takes as input a list of strings > > (most similar, > > but not necessarily, and rather short: say not longer than 50 chars) > > and that computes and outputs the python regular expression that >

table (ascii text) lin ayout recognition

2006-09-12 Thread vbfoobar
Hello, I am looking for python code useful to process tables that are in ASCII text. The code must determine where are the columns (fields). Concerned tables for my application are various, but their columns are not very complicated to locate for a human, because even when ignoring the semantic of

How to apply text changes to HTML, keeping it intact if inside "a" tags

2006-09-26 Thread vbfoobar
Hello, I have HTML input to which I apply some changes. Feature 1: === I want to tranform all the text, but if the text is inside an "a href" tag, I want to leave the text as it is. The HTML is not necessarily well-formed, so I would like to do that using BeautifulSoup (or maybe another tole