chdir
is a tiny Python library for setting the current working directory to the location of a Python script.
pip install chdir
When writing Python scripts, you might be tired of doing this:
import os
os.chdir(os.path.dirname(os.path.abspath(__file__)))
With chdir
, you can do this:
import chdir
chdir.here(__file__)