def send_notifications(db, user_ids, message): for uid in user_ids: user = db.query(User).get(uid) send_push(user.device_token, message)