cloudpathlib
cloudpathlib copied to clipboard
Add some examples with pandas to the docs
Often times we're not just writing to text files but loading and saving csvs. Could be nice to add some examples to the docs or example notebook like
with (root_dir / "users.csv").open('w+') as f:
df.to_csv(f)