I'll caveat this by saying my SQLAlchemy experience is limited (so apologies if this is way off base), but when you get your results, would it be feasible to create a dictionary (instead of a list), keyed by email, with the value representing all of the data in the row (SELECT *)? That way if you find a matching email, you could reference the value at that key and pull the data you need (i.e halo4.c.code). This should save you another database hit as the value would exist in your dictionary.
In Python 2.7, something like:
used_emails = {row.email: row.code for row in select([halo4.c.email, halo4.c.code], halo4.c.email != '')}
Or in Python 2.6:
used_emails = dict(
(row.email, row.code) for row in db.execute(
select([halo4.c.email, halo4.c.code]halo4.c.email!='')))
You could then use something like:
if recipient in used_emails:
# This may not be the proper syntax - happy to troubleshoot if not
print used_emails[recipient]