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
  • 2,097
  • 3
  • 19
  • 26

1 Answers1

0

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

zzzeek
  • 72,307
  • 23
  • 193
  • 185