Typically, what SQLAlchemy does is build a SQL string query from expressions. By freely typing your expression above, you will get something like this:
SELECT user.* FROM user WHERE user.name = 'admin'
Of course, user.*I would replace by explication of all columns user.
, , : , SQLAlchemy. , , , WHERE BINARY user.name = 'admin'. , SQLAlchemy, .
, SQLAlchemy (, , BINARY WHERE).