Skip to content

gabrielmbmb/govid19

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

govid19 - Worldometer COVID-19 scraper

GitHub go.mod Go version

govid19 is a very simple scraper of Worldometer COVID-19 developed with Go. This is my very first Go package. Since the start of the isolation, I've been quite bored so I decided to learn Go... sigh As you will see, the package is not very big because its main purpose was to learn how to structure a Go package

Usage

package main

import "github.com/gabrielmbmb/govid19"

func main() {
	countries := govid19.Scrape()
	err := govid19.WriteToCSV(countries)
	if err != nil {
		panic(err)
	}
}

About

A very simple scraper of Worldometer COVID-19 data made with Go.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages