Re: Anyone know of a MICR parser algorithm written in Python?

2007-03-25 Thread mkppk
On Mar 25, 12:30 am, "Paul McGuire" <[EMAIL PROTECTED]> wrote: > On Mar 24, 6:52 pm, "mkppk" <[EMAIL PROTECTED]> wrote: > > > Its just that I would rather not reinvent the wheel (or read old C > > code).. > > Wouldn't we all! > >

Re: Anyone know of a MICR parser algorithm written in Python?

2007-03-24 Thread mkppk
On Mar 24, 4:55 pm, "Paul McGuire" <[EMAIL PROTECTED]> wrote: > On Mar 24, 2:05 pm, "mkppk" <[EMAIL PROTECTED]> wrote: > > > > > MICR = The line of digits printed using magnetic ink at the bottom of > > a check. > > > Does anyone kn

Anyone know of a MICR parser algorithm written in Python?

2007-03-24 Thread mkppk
MICR = The line of digits printed using magnetic ink at the bottom of a check. Does anyone know of a Python function that has been written to parse a line of MICR data? Or, some financial package that may contain such a thing? Or, in general, where I should be looking when looking for a piece of P

How to subclass sets.Set() to change intersection() behavior?

2006-12-12 Thread mkppk
I have kind of strange change I'd like to make to the sets.Set() intersection() method.. Normally, intersection would return items in both s1 and s2 like with something like this: s1.intersection(s2) I want the item matching to be a bit "looser".. that is, items in s2 that match to just the begi