In this tutorial, we will build a simple weather application using the Go programming language and the OpenWeather API. This project will help you understand how to :
Before we begin, make sure you have the following installed :
Before we start coding we need OpenWeather API first.
To fetch weather data, we will use the OpenWeather API . OpenWeather provides free and paid access to weather data worldwide, including current weather, forecasts, and historical data. It is widely used by developers and businesses to integrate weather information into their applications.
Your API key is very important! Without it, you won't be able to access weather data from OpenWeather. This key is used to authenticate your requests and retrieve real-time weather information.
We will use this API key in our Go application to authenticate requests to the OpenWeather API. Make sure to keep your API key private and never share it publicly to prevent unauthorized access.
After getting an OpenWeather API Key and before writing any code, we need to set up our Go project properly :
navigate to the location where you want to store your project. Then, create a new folder for the project and navigate into it : in my case i choosed this name : weather-app
A Go module is required to manage dependencies. Run the following command to initialize your Go module :
go mod init weather-app
This will create a go.mod
file that keeps track of dependencies and module information.
Inside the weather-app
folder, create a new file named main.go
.
This will be the entry point of our application.
Since our API key should be kept private,
we will store it in a .env
file instead of hardcoding it in the code.
Create a new file named .env
in the project folder .
Open the .env
file and add your OpenWeather API key :
API_KEY=your_api_key_here
Of course, you should replace your_api_key_here by your true OpenWeather API key
Example :
API_KEY=83hjc5c4d483sd357491ffhkju70
Now,in the step 5, letโs see how to use godotenv
in a Go program to load and print our API key.
We will use an external package to help us load environment variables securely.
Install it using this command in your terminal :
go get github.com/joho/godotenv
When working on projects that require sensitive information like API keys,
it's a bad practice to hardcode them directly into your code.
Instead, it's best to store them in a .env file,
which keeps them separate from the main codebase and prevents accidental exposure,
especially when using version control like Git.
However, Go does not have built-in support for.env
files, which is why we use thegodotenv
package.
This package reads the.env
file and loads its variables into Goโs environment,
making them accessible through os.Getenv("VARIABLE_NAME")
.
.env
file from your project directory.Now, letโs see how to use godotenv in a Go program to load and print our API key.
Open you main.go file and write this code.
package main
import (
"fmt"
"log"
"os"
"github.com/joho/godotenv"
)
func main() {
// Load the .env file
err := godotenv.Load()
if err != nil {
log.Fatal("Error loading .env file")
}
// Retrieve the API key
apiKey := os.Getenv("API_KEY")
if apiKey == "" {
log.Fatal("API_KEY is not set in .env file")
}
fmt.Println("Your API Key is:", apiKey)
}
In the terminal Execute your program :
go run main.go
If everything works fine, you should see something like this :
Your API Key is: 07bd45gg4sfd56gjghjnx145
godotenv.Load()
reads the .env file and loads its variables into the environment.os.Getenv("API_KEY")
retrieves the stored API key.Before continuing, you can support me to keep creating great content!
๐ป I am a freelance web developer, and I personally create and maintain this website. Any support would help me improve and expand it further! ๐