Skip to content

Instantly share code, notes, and snippets.

@konverner
Created May 7, 2023 00:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save konverner/b52d2dda5474f83d0818d7dae8249078 to your computer and use it in GitHub Desktop.
Save konverner/b52d2dda5474f83d0818d7dae8249078 to your computer and use it in GitHub Desktop.
Defining paths with pathlib
from pathlib import Path
DIR = Path.cwd() # work directory
PATH_TEST_DIR = Path(DIR, 'data')
PATH_TEST_FILE = Path( DIR, 'file.csv')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment