Jeff's advice is the best option.

The ORM is an integral part of Django -- which is a very high level 
framework -- so shell scripts for admin commands are built in.  

Pyramid is a low-level framework, and is not tightly integrated to any ORM 
( though SqlAlchemy and ZODB are officially supported).  You would need to 
write your own scripts that take advantage of Pyramid's "command line" 
interface in order to accomplish this task -- and that script would most 
likely be a simple wrapper around the docs that Jeff linked to.

Don't think of this as a weakness or limit of SqlAlchemy or Pyramid - it is 
actually a very important strength.  Django enables those admin commands at 
a very high price -- their "model" must be constructed in a very particular 
manner and has limitations.  The SqlAlchemy+Pyramid stack is virtually 
limitless.

-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sqlalchemy+unsubscr...@googlegroups.com.
To post to this group, send email to sqlalchemy@googlegroups.com.
Visit this group at http://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/d/optout.

Reply via email to