1

How can I find out the desciption of the database with sqlalchemy much like django's sqlall command .

$ python manage.py sqlall

Can I run something similar to sqlall in turbogears admin or with sqlalchemy with which I can get the create table or something of all the current models.

dusual
  • 1,939
  • 2
  • 18
  • 26

1 Answers1

0

You want to look at table reflection as well as the inspector.

zzzeek
  • 61,905
  • 18
  • 174
  • 175