def allowed_excel(filename): return '.' in filename and filename.rsplit('.', 1)[1].lower() in {'xlsx', 'xls'}