added final project notebook and virtual environment files

This commit is contained in:
Brian Wright 2025-11-24 15:24:21 +00:00
parent a2daa16a47
commit 8dd392b20d
586 changed files with 112839 additions and 0 deletions

8
finalproj/bin/ipython Executable file
View file

@ -0,0 +1,8 @@
#!/workspaces/ds1001_final/finalproj/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from IPython import start_ipython
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(start_ipython())