Created
July 5, 2023 11:46
-
-
Save markscottwright/026d3b6d95235051a83f5a21f16d0947 to your computer and use it in GitHub Desktop.
My PyCharm console startup script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
sys.path.extend([WORKING_DIR_AND_PYTHON_PATHS]) | |
from pprint import pprint as pp | |
try: | |
import dotenv | |
dotenv.load_dotenv() | |
except ModuleNotFoundError: | |
pass | |
print('Python %s on %s' % (sys.version, sys.platform)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment