I am making a program in python that I plan to host on github. I have a .env file containing an api token. I tried to import it into my code like so:
first i installed the python-dotenv library by typing pip install python-dotenv in the command prompt. python-dotenv shows when i type pip list.
then in my code:
import os
from dotenv import load_dotenv
load_dotenv()
example = os.getenv('TOKEN')
from dotenv import load_dotenv gives the error Import "dotenv" could not be resolved Pylancereport (MissingImports) and my code will not run. Is there anything i'm doing wrong? How can i fix it?
It seems you have installed python-env, when you really wanted to install python-dotenv. The former doesn't have the function you are trying to use on it's __init__.py file, that's why Pylancereport can't resolve it.
Solution:
Do a pip install python-dotenv. Execute your code again and it should work.
I faced the same issue and after little bit of researching I found that the issue was in using the system python interpreter instead of python interpreter inside the virtual environment which I have created. Since I was using VSCode editor. Therefore, following steps resolved the issue.
Step1: Hit Ctrl+P and type >Python: Select Interpreter
click the 'Python: Select Interpreter' which appear in the search bar.

Step2:Click the Enter interpreter path

Step3:
Now browse your system and select the python interpreter inside your virtual enviroment folder venvFoderName/Scripts/Python
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With