A companion repository to practice the basics of golang and get familiarized with the go language.
- Slides
- How to use this repository
- Running examples
- So, what's Next?
- Challenge
- The Solution
- Upcoming Topics
Slides for this workshop are available on Google Drive here.
First, install go from the official website.
Then, check out the repo to the following directory:
~/go/src/github.com/kjkondratuk/
Note : if you forked the repo, you may have to replace kjkondratuk
with your username.
All example code is located under ./examples
and organized into folders to facilitate simple building.
To execute any of the example code simply execute the following in a directory with a source file:
go run <go file>
This will compile and execute the specified program. Alternatively, you can leverage the included Makefile
. To
execute various build targets, or use the included IntelliJ/Goland run configurations (if you're using one of those IDEs)
included in the .idea
directory.
First, let's review the basics of the language by browsing the examples folder to better understand the basics of the language, then let's move on to the challenge below and build a simple command-line application.
Create a command line application that does the following:
- Accepts a user's location as a parameter (or set of parameters)
- Makes a call to the OpenWeather API to get weather information for the relevant location
- Parses the response and prints out current weather information in a readable format to the command line
If you've reached this section and haven't yet reviewed the contents of the examples folder, please do so. It will
help you considerably in implementing this tool to have a basic understanding of the syntax Go uses. If you'd like to start
by creating the HTTP client, we can simply hard-code parameter values for now, and add argument parsing later.
Likewise, if you want to start with argument parsing, you can do that and add the HTTP calls later.
For the sake of time, I have included response models that can be used to unmarshal responses from the API, included
some examples of how to use the http
standard library, and included a skeleton application that captures several
arguments from the supplied program arguments.
Before we get started, we should probably create an API key by registering for an account that will allow us to make requests to the OpenWeather API. For our purposes, it will probably be easiest to use the Geocoding API to acquire geographic coordinates and then use those coordinates to fetch the weather information.
Once you are registered, locate your API key and paste it into a file called .env
. Our application will source the API
key from this file.
Full documentation for the Geocoding API is available here.
Minimally, we will have to supply the following values to the API to get a response:
q
- the query - formatted ascity,state_code,country_code
appid
- your API key
You should be able to unmarshal this response as follows into the provided GeocodingResponse model:
var geocodingResponse model.GeocodingResponse
all, err := ioutil.ReadAll(resp.Body)
// ... handle error ...
err = json.Unmarshal(all, &geocodingResponse)
// ... handle error ...
Full documentation for the Current Weather API is available here.
Minimally, we will have to supply the following values to the API to get a response:
lat
- the latitude for the corresponding weather informationlon
- the longitude for the correpsonding weather informationappid
- your API key
You should be able to unmarshal this response as follows into the provided WeatherResponse model,
similarly to how you did above with the GeocodingResponse
.
Fortunately with Go it is very easy to create an HTTP client and make calls with it. The official documentation on the topic can be found here. But a simple example looks like this:
response, err := http.Get("http://my-application.com")
// close the body reader on completion, to free resources
if client != nil && client.Body != nil {
defer client.Body.Close()
}
// handle an error in issuing or receiving the request
if err != nil {
fmt.Println(err)
os.Exit(-1)
}
Making a request happens via the following general procedure:
- Issue the request to the specified URL
defer
the closure of the body, if applicable (see above)- Handle any errors that arise during the request
- Unmarshal the response JSON to a go struct (refer to above details about the APIs for more info on this)
- Handle any errors that arise from the unmarshalling
- Use the returned struct!
You can format your output however you'd like, but something like the following might be appropriate:
--- Today's Weather ---
- Low: 34.049999
- High 46.619999
- Current: 38.799999
- Feels Like: 34.340000
- Humidity: 62%
- Pressure: 1031hPa
If at any point you find yourself irreversibly stuck, check out the solution
branch of this repository for a working
example.
Topics which were considered for this workshop, but will probably wind up in a future iteration of this, or added later:
- Common standard library APIs
- Error handling best practices
- Concurrency
- Mocking / testify
- Reflection