Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
520 views
in Technique[技术] by (71.8m points)

sqlalchemy - How to retrieve model column value dynamically in python

Suppose I have a model object.

print (dir(table))
['...', 'col1', 'col2', '...']

# this will output column 1 value
print (table.col1)

I would like to do it dynamically, for example:

col = 'col1'
table.col

Thx

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You want to use getattr when doing dynamic attribute retrieval in python:

col = 'col1'
getattr(table, col)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...