go-covid

command module
v2.0.1+incompatible Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 17, 2020 License: MIT Imports: 2 Imported by: 0

README

go-covid

Description

Go Package to get information regarding the novel corona virus provided by Johns Hopkins university

Full Documentation can be found here

How to install

go get -u github.com/ahmednafies/go-covid/covid

How to use

Get All Data
data, err := covid.GetData()
if err != nil {
    // Handle error here
}
fmt.Println(data)
Get Status By Country Name
data, err := covid.GetCountryByName("italy")
if err != nil {
    // Handle error here
}

fmt.Println(data.Attrs.Id)
fmt.Println(data.Attrs.Country)
fmt.Println(data.Attrs.LastUpdate)
fmt.Println(data.Attrs.Confirmed)
fmt.Println(data.Attrs.Deaths)
fmt.Println(data.Attrs.Active)
fmt.Println(data.Attrs.Recovered)
fmt.Println(data.Attrs.Latitude)
fmt.Println(data.Attrs.Longitude)
Result
113
Italy
1584216796000
21157
1441
17750
1966
41.8719
List Countries
list, err := covid.ListCountries()
if err != nil {
    // Handle error here
}
Result
[
    Attrs{
        Id: 40
        Name: Hungary
    },
    Attrs{
        Id: 113
        Name: Italy
    }
    ...
]
Get Status by Country ID
data, err := covid.GetCountryById(113)
Get Total Active Cases
active, err := covid.GetTotalActive()
Get Total Confirmed Cases
confirmed, err := covid.GetTotalConfirmed()
Get Total Recovered Cases
recovered, err := covid.GetTotalRecovered()
Get Total Deaths
deaths, err := covid.GetTotalDeaths()

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL