odo.drop 函数用于删除数据资源。该数据资源可能存在于 Python 外部。
odo.drop
>>> from odo import drop >>> drop('myfile.csv') # Removes file >>> drop('sqlite:///my.db::accounts') # Drops table 'accounts' >>> drop('myfile.hdf5::/data/path') # Deletes dataset from file >>> drop('myfile.hdf5') # Deletes file