in nl2sql/executors/__init__.py [0:0]
def from_excel(cls, filepath: str, dataset_name: str, project_id: str, **kwargs):
return cls(
dataset=CustomDataset.from_excel(
project_id=project_id, filepath=filepath, dataset_name=dataset_name
),
**kwargs
)