How to fix a Key Error when calling translation service

Jaybird Flippen 0 Reputation points
2024-07-18T20:48:03.9133333+00:00

Runtime error when I click to translate. Following step seven of build web apps with python

Terminal

File "C:\Users\Studnet_F\MyPythonScripts\translate\app.py", line 18, in index_post

key = os.environ['KEY']

      ~~~~~~~~~~^^^^^^^

File "<frozen os>", line 714, in getitem

KeyError: 'KEY'

127.0.0.1 - - [18/Jul/2024 15:44:43] "POST / HTTP/1.1" 500 -

Web Browser

Internal Server Error

The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application.

This question is related to the following Learning Module

Visual Studio Training
Visual Studio Training
Visual Studio: A family of Microsoft suites of integrated development tools for building applications for Windows, the web and mobile devices.Training: Instruction to develop new skills.
14 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Pradeep M 1,715 Reputation points Microsoft Vendor
    2024-07-19T05:11:10.9733333+00:00

    Hi Jaybird Flippen,

    It appears that the environment variable KEY is not being found, which is causing the error. Please follow these steps to troubleshoot and resolve the issue: 

    1.Check the .env File: Ensure that your .env file is located in the root directory of your project and contains the correct key-value pairs, formatted as follows: 

    KEY=your_key
    ENDPOINT=your_endpoint
    LOCATION=your_location
    
    

    2.Load Environment Variables: Make sure that the environment variables are being loaded into your application. This is typically done using the python-dotenv package. If you have not already installed it, please do so by running: 

    pip install python-dotenv
    
    

    Then, include the following code at the beginning of your script to load the environment variables: 

    from dotenv import load_dotenv
    import os
    load_dotenv()
    
    

    3.Verify Environment Variables: Add print statements to ensure that the environment variables are being loaded correctly: 

    from dotenv import load_dotenv
    import os
    load_dotenv()
    print(f"KEY: {os.getenv('KEY')}")
    print(f"ENDPOINT: {os.getenv('ENDPOINT')}")
    print(f"LOCATION: {os.getenv('LOCATION')}")
    
    

    This will help confirm that the values are being read properly by your application. 

    4.Restart the Application: After making changes to the .env file, ensure that you restart your application so that the new environment variables are loaded. 

    By following these steps, your environment variables should be correctly loaded, resolving the error. 

    Please feel free to contact us if you have any additional questions.    

    If you have found the answer provided to be helpful, please click on the "Accept answer/Upvote" button so that it is useful for other members in the Microsoft Q&A community.       

    Thank you. 

    0 comments No comments