chdir

Tiny library for setting the working directory to the location of a Python script.


License
MIT
Install
pip install chdir==1.0.0

Documentation

chdir

chdir is a tiny Python library for setting the current working directory to the location of a Python script.

Why?

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__)