pandas-path
pandas-path copied to clipboard
Use pathlib syntax to easily work with Pandas series containing file paths.
Lots of what we do in `_to_apply` here is either going to be disk (in the case of `Path`) or network (if we implement #1) bound and should benefit from...
The Readme mentions that we should do: ```python from pandas_path import path ``` That might lead to some conflict if we use a variable `path` and we do some linting....
The attribute `.parent` returns a string rather than a Path, like in `pathlib`. ```python from pathlib import Path import pandas as pd from pandas_path import path as _ df =...
I'm trying to create a dataframe with two column, one that has the original filepath and one that has the destination filepath so that I can iterate over the dataframe...