I\'m trying to filter a table on a column that contain spaces.
...
events = database_session.query(table)
events.filter(table.column with space == \'xvalue\'
There are two ways to resolve this.
t_table_name = Table(
'tablename',
metadata,
Column('SQL Column', Integer, key='sql_column')
)
class Employee(Base):
emp_name = Column("employee name", String)