Classes in Python

  • Thread starter Wiebke Pätzold
  • Start date
W

Wiebke Pätzold

Hi all!

Could somebody help me with a task?

import sys
import Mk4py
import re

db = Mk4py.storage("c:\\datafile.mk",1)
vw = db.view("people")

class PatternFilter:
def _init_(self, pattern):
self.pattern = re.compile(pattern)

def _call_(self, row):
try:
nachname = row.Nachname
except AttributeError:
return 0
return self.pattern.search(nachname)is not None

vf = vw.filter(PatternFilter("Ge.*"))

for r in vf:
print vw[r.index].Nachname



I wrote this program, but it returns nothing. I can't find the error.
Can somebody help me?
Can somebody tell me why the part: "class PatternFilter:" doesn't
return the expressions it should return?

Wiebke
 
W

Wiebke Pätzold

Hi all!

Could somebody help me with a task?

import sys
import Mk4py
import re

db = Mk4py.storage("c:\\datafile.mk",1)
vw = db.view("people")

class PatternFilter:
def _init_(self, pattern):
self.pattern = re.compile(pattern)

def _call_(self, row):
try:
nachname = row.Nachname
except AttributeError:
return 0
return self.pattern.search(nachname)is not None

vf = vw.filter(PatternFilter("Ge.*"))

for r in vf:
print vw[r.index].Nachname



I wrote this program, but it returns nothing. I can't find the error.
Can somebody help me?
Can somebody tell me why the part: "class PatternFilter:" doesn't
return the expressions it should return?

Wiebke


It has to be something wrong with line:
vf = vw.filter(PatternFilter("Ge.*"))
 
A

Alexander Schmolck

Wiebke Pätzold said:
Hi all!

Could somebody help me with a task?

I don't know what exactly you're trying to do (I don't know Mk4py), but...
import sys
import Mk4py
import re

db = Mk4py.storage("c:\\datafile.mk",1)
vw = db.view("people")

class PatternFilter:
def _init_(self, pattern):
__init__
self.pattern = re.compile(pattern)

def _call_(self, row):
__call__
try:
nachname = row.Nachname
except AttributeError:
return 0
return self.pattern.search(nachname)is not None

vf = vw.filter(PatternFilter("Ge.*"))

Before posting this, you should really have tried something like:

class Dummy:
Nachname = 'Some name'
PatternFilter("Ge.*")(Dummy)
for r in vf:
print vw[r.index].Nachname



I wrote this program, but it returns nothing. I can't find the error.

Well, given the two errors I found, it would seem strange to me that it
vw.filter doesn't moan about PatternFilter("Ge.*") being not callable.

Can somebody help me?
Can somebody tell me why the part: "class PatternFilter:" doesn't
return the expressions it should return?


'as
 
W

Wiebke Pätzold

Hi all!

Could somebody help me with a task?

import sys
import Mk4py
import re

db = Mk4py.storage("c:\\datafile.mk",1)
vw = db.view("people")

class PatternFilter:
def _init_(self, pattern):
self.pattern = re.compile(pattern)

def _call_(self, row):
try:
nachname = row.Nachname
except AttributeError:
return 0
return self.pattern.search(nachname)is not None

vf = vw.filter(PatternFilter("Ge.*"))

for r in vf:
print vw[r.index].Nachname



I wrote this program, but it returns nothing. I can't find the error.
Can somebody help me?
Can somebody tell me why the part: "class PatternFilter:" doesn't
return the expressions it should return?

I create a database that contains a table. 'Nachname' and
'Kongressbereich' are special fieldnames. This program can search for
a special letter. In my example it is 'G'. and the search takes place
in 'Nachname'.
Mow I want to use regular expression. So that I can limit my search.
For example: I can search for Ge and it is not relevant wich letters
follow
 
F

Fredrik Lundh

Wiebke said:
class PatternFilter:
def _init_(self, pattern):
self.pattern = re.compile(pattern)

def _call_(self, row):
try:
nachname = row.Nachname
except AttributeError:
return 0
return self.pattern.search(nachname)is not None

vf = vw.filter(PatternFilter("Ge.*"))

for r in vf:
print vw[r.index].Nachname

I wrote this program, but it returns nothing. I can't find the error.
Can somebody help me?
Can somebody tell me why the part: "class PatternFilter:" doesn't
return the expressions it should return?

note that built-in hooks like __init__ and __call__ uses *two* underscores
on each side of the keyword.

not sure why vw.filter doesn't give you an exception, but your Pattern-
Filter instance is neither initialized nor callable.

</F>
 
H

Heiko Wundram

class PatternFilter:
def _init_(self, pattern):
self.pattern = re.compile(pattern)

Python special functions are always prefixed/postfixed by two
underscores, so let this read __init__
[snip]
vf = vw.filter(PatternFilter("Ge.*"))

Moans here with a "__init__ takes only one argument, got two instead",
when I try to run it. Next time you post code, read the error message,
and this should've pointed you at the fact that _init_ isn't called, but
__init__ is.

When this was corrected, Metakit would've moaned that the filter wasn't
callable, this would've made you look up the syntax for callable in the
Python documentation http://www.python.org/doc/current/, which would've
led you to the documentation on callable instances having a __call__
method.

And so on. Next time you post something, please include the correct
error message (this program doesn't run at all, of course this means it
doesn't return anything, but the exception traceback would've been
helpful), and having a look at the Python documentation before posting
can't harm too...

Heiko.
 
P

Peter Otten

Wiebke said:
Could somebody help me with a task?

As You seem to know not much about Python, instead of messing around
with classes I would recommend the simplest aproach I can think of (not
knowing the Mk4py package), which would be:

<not tested>
import Mk4py
db = Mk4py.storage("c:\\datafile.mk", 1)
vw = db.view("people")

for r in vw:
nachname = vw[r.index].Nachname
if nachname.startswith("Ge"):
print nachname
</not tested>

If this works, take it for now, and if you can spare some time,
read the Python tutorial (It's very good).
You can always refine your code, once it is running :)

Peter
 
P

Peter Otten

Judging from the Getting started section in
http://www.equi4.com/metakit/python.html,
vw[r.index] seems redundent, so

<not tested>
import Mk4py
db = Mk4py.storage("c:\\datafile.mk", 1)
vw = db.view("people")

for r in vw:
if r.Nachname.startswith("Ge"):
print r.Nachname
</not tested>

would be the code to go with.
Less code == fewer occasions for errors,
and it might even run faster :)

Peter
 
W

Wiebke Pätzold

Judging from the Getting started section in
http://www.equi4.com/metakit/python.html,
vw[r.index] seems redundent, so

<not tested>
import Mk4py
db = Mk4py.storage("c:\\datafile.mk", 1)
vw = db.view("people")

for r in vw:
if r.Nachname.startswith("Ge"):
print r.Nachname
</not tested>

would be the code to go with.
Less code == fewer occasions for errors,
and it might even run faster :)

Peter

Hi Peter,

it's great that you give yourself so much trouble. But want to create
this program by classes.
The programm that I create with functions is OK.
Here is it. Perhaps it may help you.
import sys
import Mk4py
import re

db = Mk4py.storage("c:\\datafile.mk",1)
vw = db.view("people")

pattern = re.compile("ra.*")

def func(row):
try:
nachname = row.Nachname
except AttributeError:
return 0
return pattern.search(nachname) is not None

vf = vw.filter(func)

for r in vf:
print vw[r.index].Nachname



Now I trid to create this program by classes:

import sys
import Mk4py
import re

db = Mk4py.storage("c:\\datafile.mk",1)
vw = db.view("people")

class PatternFilter:
def __init__(self, pattern):
self.pattern = re.compile(pattern)

def __call__(self, row):
try:
nachname = row.Nachname
except AttributeError:
return 0
return self.pattern.search(nachname)is not None

vf = vw.filter(PatternFilter("Ge.*"))

for r in vf:
print vw[r.index].Nachname

But here I get an error: returned exit code 0.

So I think that something is wrong with line:
vf = vw.filter(PatternFilter("Ge.*"))

My task is:
I create a database that contains a table. For example'Nachname'
This is a special fieldname. This program can search for
a special letter. In my example it is 'G'. and the search takes place
in 'Nachname'.
Now I want to use regular expression. So that I can limit my search.
For example: I can search for Ge and it is not relevant wich letters
follow. And it should be solve under use classes.

Wiebke
 
P

Peter Otten

Wiebke said:
So I think that something is wrong with line:
vf = vw.filter(PatternFilter("Ge.*"))

The PatternFilter class looks OK now, and so does the line you suspect to be
wrong. Are you sure there are any records in the database with Nachname
containing Ge (and not GE or ge)?

The only difference I could spot:
- with the function you are looking for Nachname(n), that contain "ra"
- with the class you are looking for Nachname(n) that contain "Ge"

Being no regular expressions expert, I think that appending ".*" here has no
effect for your purpose (If you want Nachname to start with Ge, the
expression should be "^Ge").
But here I get an error: returned exit code 0.
What's that? Please cut and paste the exact output.

Peter
 
W

Wiebke Pätzold

The PatternFilter class looks OK now, and so does the line you suspect to be
wrong. Are you sure there are any records in the database with Nachname
containing Ge (and not GE or ge)?
That was it, why the program did not run.
There I could have lookedl for a long time for the error.
Thank you very very very much that you help me with this task. It was
very difficult for me because I am very new in Python.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top