12 01 2010 chemoinformatics Python pylons Tweet
pylonsで対話的にモデルを操作したい場合にはdevelopment.iniのあるディレクトリで
paster shell
とすればよいらしい。modelっていう変数に色々入っているので
session = model.Session
mol = model.Mol
for m in session.query(mol).filter(mol.MW > 199):
print m
などとやるべしナ感じ。