473,387 Members | 1,510 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

A __getattr__ for class methods?

I'm trying to implement a bunch of class methods in an ORM object in
order to provide functionality similar to Rails' ActiveRecord. This
means that if I have an SQL table mapped to the class "Person" with
columns name, city, and email, I can have class methods such as:

Person.find_by_name
Person.find_by_city_and_name
Person.find_by_name_and_city_and_email

I have a metaclass generating basic properties such as .name and .city,
but I don't want to generate a class method for every permutation of
the attributes. I'd like to have something much like __getattr__ for
instance attributes, so that if a method like
Person.find_by_city_and_email cannot be found, I can construct a call
to the basic find method that hides the SQL. Is there any way of doing
this, or am I trying to mirror a functionality that Python simply does
not have?

Feb 8 '06 #1
5 6834
Dylan Moreland wrote:
I'm trying to implement a bunch of class methods in an ORM object in
order to provide functionality similar to Rails' ActiveRecord. This
means that if I have an SQL table mapped to the class "Person" with
columns name, city, and email, I can have class methods such as:

Person.find_by_name
Person.find_by_city_and_name
Person.find_by_name_and_city_and_email

I have a metaclass generating basic properties such as .name and .city,
but I don't want to generate a class method for every permutation of
the attributes. I'd like to have something much like __getattr__ for
instance attributes, so that if a method like
Person.find_by_city_and_email cannot be found, I can construct a call
to the basic find method that hides the SQL. Is there any way of doing
this, ...


Sure, define __getattr__ on the type of the class i.e., the metaclass, just as
you define it on a class to provide default-attribute-lookup to its instances:
class A(object): ... class __metaclass__(type):
... def __getattr__(cls, attr):
... return "%s.%s" % (cls.__name__, attr)
... A.somefunc 'A.somefunc' A.someotherfunc 'A.someotherfunc'


HTH

Michael

Feb 8 '06 #2
Dylan Moreland wrote:
I have a metaclass generating basic properties such as .name and .city,
but I don't want to generate a class method for every permutation of
the attributes. I'd like to have something much like __getattr__ for
instance attributes, so that if a method like
Person.find_by_city_and_email cannot be found, I can construct a call
to the basic find method that hides the SQL. Is there any way of doing
this, or am I trying to mirror a functionality that Python simply does
not have?


I don't get it? __getattr__ is exactly what you are looking for:

http://docs.python.org/ref/attribute...s.html#l2h-206

__getattr__( self, name)

Called when an attribute lookup has not found the attribute in the usual
places (i.e. it is not an instance attribute nor is it found in the
class tree for self). name is the attribute name. This method should
return the (computed) attribute value or raise an AttributeError exception.

HtH, Roland
Feb 8 '06 #3
Michael Spencer wrote:
Dylan Moreland wrote:
I'm trying to implement a bunch of class methods in an ORM object in
order to provide functionality similar to Rails' ActiveRecord. This
means that if I have an SQL table mapped to the class "Person" with
columns name, city, and email, I can have class methods such as:

Person.find_by_name
Person.find_by_city_and_name
Person.find_by_name_and_city_and_email

I have a metaclass generating basic properties such as .name and .city,
but I don't want to generate a class method for every permutation of
the attributes. I'd like to have something much like __getattr__ for
instance attributes, so that if a method like
Person.find_by_city_and_email cannot be found, I can construct a call
to the basic find method that hides the SQL. Is there any way of doing
this, ...


Sure, define __getattr__ on the type of the class i.e., the metaclass, just as
you define it on a class to provide default-attribute-lookup to its instances:
>>> class A(object): ... class __metaclass__(type):
... def __getattr__(cls, attr):
... return "%s.%s" % (cls.__name__, attr)
... >>> A.somefunc 'A.somefunc' >>> A.someotherfunc 'A.someotherfunc' >>>


HTH

Michael


Thanks! I only recently realized that I would have to learn metaclasses
in order to make this work, and I'm still a bit unclear on their
properties.

Feb 8 '06 #4
Dylan Moreland wrote:
I'm trying to implement a bunch of class methods in an ORM object in
order to provide functionality similar to Rails' ActiveRecord. This
means that if I have an SQL table mapped to the class "Person" with
columns name, city, and email, I can have class methods such as:

Person.find_by_name
Person.find_by_city_and_name
Person.find_by_name_and_city_and_email

I have a metaclass generating basic properties such as .name and .city,
but I don't want to generate a class method for every permutation of
the attributes. I'd like to have something much like __getattr__ for
instance attributes, so that if a method like
Person.find_by_city_and_email cannot be found, I can construct a call
to the basic find method that hides the SQL. Is there any way of doing
this, or am I trying to mirror a functionality that Python simply does
not have?

I'm not sure that the way you tackled this is the good approach: while
it's quite flexible as far as the search criteria go, it'll require less
than obvious code to match keywords (field names) and values, will lead
to somewhat verbose syntax (especially with many criteria), and the
syntax itself is unforgiving (every new search field requires at least 5
additional characters on top of the field name itself), brittle (you'll
have to do an extensive validation of your method name and fields unless
you want everything to break, and Python doesn't support your syntax)
and not really pythonic.

Since you seem to know ActiveRecord, you're probably familiar with the
way AR does this task: with a hash of column_name, value pairs. The
syntax is quite straightforward especially due to the fact that any "key
=> value" comma-separated pairs sequence generates a hash, without
requiring explicit hash boundaries ( { and } ). The syntax is extremely
straightforward since it relies on the language's syntax itself, and the
correctness of the grammar is checked by the compiler/interpreter itself
since no custom syntax is built. This construct is therefore quite
solid, on top of being obvious to a Rubyist.

Now, you're in luck, because Python has even better than that: **kwargs,
the optional keyword arguments.

As you probably know, Python has a good support for keyword args,
allowing you to fill your arguments out of order (and leave the 3th
argument at it's default value while specifying the value of the 5th
argument). But **kwargs goes beyond the regular explicit keyword
arguments: when specified, **kwargs is a dict populated with the
implicit keyword arguments (keyword:value pairs), the ones you haven't
specified in the argument tuple of your method.

This means that if I define a function as

def foo(bar=0, **kwargs):
print kwargs

Then calling foo() will print an empty dict
As will calling foo(3) or foo(bar=3), because the explicit "bar" keyword
argument is used.

Now if I call foo(something=5, somethingelse="woohoo"), kwargs will
evaluate to

{"somethingelse":"woohoo","something":5}

This means that all you have to do is replace your method definition with
def find_by(cls, **kwargs): pass
and in the method itself iterate over the key:value pairs of kwargs to
automagically get both the field names and the values upon which your
search shall be performed.

Calling the method would then look something like:
Person.find_by( name="thenameyoulookfor", city="somecity")

the syntax is fairly obvious and pythonic, has a low verbosity, and
Python itself will do the parsing and the grammatical validation of your
method calls for you.
Feb 8 '06 #5
Oh, and I wondered too: is your goal to build an ORM, or do you just
need an ORM?

Cause if it's the latter then Python does already have some fairly good
ORMs such as SQLAlchemy or PyDO2, you don't *need* to create yours.
Feb 8 '06 #6

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

Similar topics

0
by: Gigi | last post by:
Hi, In the Python documentation regarding __getattribute__ (more attribute access for new style classes) it is mentioned that if __getattribute__ is defined __getattr__ will never be called...
13
by: Pelmen | last post by:
How can I get rid of recursive call __getattr__ inside this method, if i need to use method or property of the class?
6
by: Erik Johnson | last post by:
Maybe I just don't know the right special function, but what I am wanting to do is write something akin to a __getattr__ function so that when you try to call an object method that doesn't exist,...
2
by: mwojc | last post by:
Hi! My class with implemented __getattr__ and __setattr__ methods cannot be pickled because of the Error: ====================================================================== ERROR:...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

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.