473,498 Members | 1,776 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Classes in Python

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
Jul 18 '05 #1
10 3199
On Mon, 04 Aug 2003 12:30:11 +0200, Wiebke Pätzold
<wi*************@mplusr.de> wrote:
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.*"))

Jul 18 '05 #2
Wiebke Pätzold <wi*************@mplusr.de> writes:
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
Jul 18 '05 #3
On Mon, 04 Aug 2003 12:30:11 +0200, Wiebke Pätzold
<wi*************@mplusr.de> wrote:
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
Wiebke


Jul 18 '05 #4
Wiebke Pätzold wrote:
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>


Jul 18 '05 #5
On Mon, 2003-08-04 at 12:30, Wiebke Pätzold wrote:
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.
Jul 18 '05 #6
Wiebke Pätzold wrote:
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
Jul 18 '05 #7
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
Jul 18 '05 #8
On Tue, 05 Aug 2003 10:59:56 +0200, Peter Otten <__*******@web.de>
wrote:
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
Jul 18 '05 #9
Wiebke Pätzold wrote:
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

Jul 18 '05 #10
On Tue, 05 Aug 2003 13:36:08 +0200, Peter Otten <__*******@web.de>
wrote:
Wiebke Pätzold wrote:
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)?

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.
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


Jul 18 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

145
6180
by: David MacQuigg | last post by:
Playing with Prothon today, I am fascinated by the idea of eliminating classes in Python. I'm trying to figure out what fundamental benefit there is to having classes. Is all this complexity...
7
2372
by: Bo Peng | last post by:
Dear Python group: I am planning on an application that involves several complicated C++ classes. Basically, there will be one or two big data objects and some "action" objects that can act on...
1
1828
by: Eric Wilhelm | last post by:
Hi, By new-style classes, I'm referring to the changes which came into 2.2 as a result of PEP 252 and 253. I discovered this problem when trying to use the Perl Inline::Python module with a...
12
3797
by: David MacQuigg | last post by:
I have what looks like a bug trying to generate new style classes with a factory function. class Animal(object): pass class Mammal(Animal): pass def newAnimal(bases=(Animal,), dict={}):...
16
2036
by: Simon Wittber | last post by:
I've noticed that a few ASPN cookbook recipes, which are recent additions, use classic classes. I've also noticed classic classes are used in many places in the standard library. I've been...
2
1667
by: Xah Lee | last post by:
© # -*- coding: utf-8 -*- © # Python © © # in Python, one can define a boxed set © # of data and functions, which are © # traditionally known as "class". © © # in the following, we define a...
11
1513
by: Ryan Krauss | last post by:
I have a set of Python classes that represent elements in a structural model for vibration modeling (sort of like FEA). Some of the parameters of the model are initially unknown and I do some...
5
1638
by: Alex | last post by:
Hi, this is my first mail to the list so please correct me if Ive done anything wrong. What Im trying to figure out is a good way to organise my code. One class per .py file is a system I like,...
6
1810
by: s99999999s2003 | last post by:
hi i come from a non OO environment. now i am learning about classes. can i ask, in JAva, there are things like interface. eg public interface someinterface { public somemethod (); .... ... }...
11
1410
by: allendowney | last post by:
Hi All, I am working on a revised edition of How To Think Like a Computer Scientist, which is going to be called Think Python. It will be published by Cambridge University Press, but there...
0
7125
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7004
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7208
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6890
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7379
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
4915
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3085
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
657
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
292
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.