BaseDatasetManager
create_dataset
- name (str): The name of the dataset.
- kwargs (Any): Additional keyword arguments.
list_datasets
- username (str): The username of the user whose datasets to list.
- limit (int): The maximum number of datasets to list. (default::obj:
100) - kwargs (Any): Additional keyword arguments.
delete_dataset
- dataset_name (str): The name of the dataset to delete.
- kwargs (Any): Additional keyword arguments.
add_records
- dataset_name (str): The name of the dataset.
- records (List[Record]): A list of records to add to the dataset.
- filepath (str): The path to the file containing the records. (default::obj:
"records/records.json") - kwargs (Any): Additional keyword arguments.
update_records
- dataset_name (str): The name of the dataset.
- records (List[Record]): A list of records to update in the dataset.
- filepath (str): The path to the file containing the records. (default::obj:
"records/records.json") - kwargs (Any): Additional keyword arguments.
list_records
- dataset_name (str): The name of the dataset.
- filepath (str): The path to the file containing the records. (default::obj:
"records/records.json") - kwargs (Any): Additional keyword arguments.
delete_record
- dataset_name (str): The name of the dataset.
- record_id (str): The ID of the record to delete.
- filepath (str): The path to the file containing the records. (default::obj:
"records/records.json") - kwargs (Any): Additional keyword arguments.