(I tried the !close command on my last post and didn't know it locked me out, my bad.)
I'm creating a discorcd bot in VScode and all is going well. Aside the fact it wont allow me to store my bot's key in a .env. I've tried many online way's and it always outputs "None". All needed libraries are downloaded. Screenshot below to see layout.
Test Python Code:
import os
from dotenv import load_dotenv
key = "TEST_VAR"
value = os.environ.get(key)
print(value)
Test .env Code:
TEST_VAR=aaah
Output:
None