Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 405 Bytes

File metadata and controls

27 lines (17 loc) · 405 Bytes

chdir

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

How to install

pip install chdir

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