IftekherSunny / go_country

Country is the package that helps you to get country name and dialling code by the country ISO 3166-1 Alpha-2 code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Country

Project status Build Status cover.run go Go Report Card GoDoc License

Country is the package that helps you to get country name and dialing code by the country ISO 3166-1 Alpha-2 code.

Installation Process

 go get github.com/IftekherSunny/go_country

Basic Uses

Get all countries name and dialing code
country := country.NewCountry()

countries := country.All()
Get a country name and dialing code
country := country.NewCountry()

countryDetails, _ := country.Get("BD")
Get multiple countries name and dialing code
country := country.NewCountry()

countries, _ := country.Get([]string{"BD", "US"})
Get a country name
country := country.NewCountry()

name, _ := country.GetName("BD")
Get a country dialing code
country := country.NewCountry()

dialingCode, _ := country.GetDialingCode("BD")

Test

Run tests
go test -v

License

This package is licensed under the MIT License

About

Country is the package that helps you to get country name and dialling code by the country ISO 3166-1 Alpha-2 code.

License:MIT License


Languages

Language:Go 100.0%