diff --git a/kumo/connector/csv_connector.py b/kumo/connector/csv_connector.py index 0e7579b5..2115a813 100644 --- a/kumo/connector/csv_connector.py +++ b/kumo/connector/csv_connector.py @@ -11,7 +11,12 @@ class CSVConnector(Connector): - r"""Establishes a connection to a set of :obj:`*.csv` files.""" + r"""Establishes a connection to a set of :obj:`*.csv` files. + + Args: + root_dir (str): Root directory where :obj:`*.csv` files are stored. + **kwargs (optional): Additional arguments of :func:`pandas.read_csv`. + """ def __init__(self, root_dir: str, **kwargs): if osp.exists(root_dir): root_dir = osp.expanduser(osp.normpath(root_dir)) diff --git a/kumo/connector/snowflake_connector.py b/kumo/connector/snowflake_connector.py index fe9b0f0a..1b1e4345 100644 --- a/kumo/connector/snowflake_connector.py +++ b/kumo/connector/snowflake_connector.py @@ -8,7 +8,16 @@ class SnowflakeConnector(Connector): r"""Establishes a connection to a `Snowflake `_ - database.""" + database. + + Args: + account (str): The account name. + user (str): The user name. + password (str): The password. + warehouse (str): The name of the warehouse. + database (str): The name of the database. + schema (str): The name of the schema. + """ def __init__(self, account: str, user: str, password: str, warehouse: str, database: str, schema: str): self.account = account