I am specifying a relative file path using jacaro's path module.
How can I get the absolute path from this variable as a string?
import path # From https://github.com/jaraco/path.py
path = path.path('~/folder/')
relative_filename = path.joinpath('foo')
# how can I get the absolute path of as a string?
absolute_path = ???
fd = open(absolute_path)
path = path('~/folder/'). A better name would be folder_path = ...