Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Make A Symbolic Link In Python

This is how you make a symbolic link in python. (Works on Mac and Linux. Not sure about the functionality on Windows)

python3
import os

source_path = 'some/file/path.txt'
destination_path = 'path/to/make/the/link.txt'

os.symlink(source_path, destination_path)