it all comes down to calling upon the information schema provided by the database, which is a set of tables and/or views which you can select from, that then return data about tables, columns, and everything else.
In the case of Sybase, they have a really, really tough format for their information schema (mostly due to the 16 + 16 column format of representing foreign key constraints) , so when I created the Sybase dialect, I left the reflection part of the job as a "todo". There's no technical reason it can't be done, it's just a long and tedious job and we have virtually nobody using the Sybase dialect as of yet.
If you want to work out some of the basic queries to get at table and column names, we can commit those straight into SQLAlchemy. The schema you'd be working with is documented in this section: http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.help.ase_15.0.tables/html/tables/tables2.htm and in there you'd be looking at sysobjects, syscolumn, and sysreferences.