举例
from sqlalchemy import or_,and_
# from operator import or_, and_
allapp = AppServer.query.filter(and_( AppServer.software!='zookeeper', AppServer.software!='keepalived', AppServer.software!='openresty', )).with_entities(AppServer.software).distinct().all()