Closed hoytak closed 1 year ago
I would expect this to work:
xet_fs = pyxet.XetFS() with xet_fs.transaction: print("In transaction:") print(f"copying: {local_filename} to {xet_path}.") xet_fs.cp(local_filename, xet_path)
But it just fails with
ValueError: Invalid Xet URL format: Expecting xet://user/repo/[branch]/[path]
And no additional information.
cp is only for remote to remote. local to remote is put. This is an fsspec method.
cp
put
I would expect this to work:
But it just fails with
And no additional information.