That seems to be a bit out of the scope of SQAlchemy, most databases
have a way of dumping their data to sql to reload in another server,
now, I know django for example has a way to dump and load the project
database (fixtures) for testing, but I don't recall TG having
something like that, even so I would not recommend you to use that
kind of tool in production.
SQLAlchemy has a way to manage schema migration which is as far as it
goes, meaning that you can recreate the database tables in any other
server with minimal fuss and evolve the schema, but this does not
cover importing data across different databases.