-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
54 lines (47 loc) · 1.34 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"os"
)
type ViaCEP struct {
Cep string `json:"cep"`
Logradouro string `json:"logradouro"`
Complemento string `json:"complemento"`
Unidade string `json:"unidade"`
Bairro string `json:"bairro"`
Localidade string `json:"localidade"`
Uf string `json:"uf"`
Ibge string `json:"ibge"`
Gia string `json:"gia"`
Ddd string `json:"ddd"`
Siafi string `json:"siafi"`
}
func main() {
for _, cep := range os.Args[1:] {
req, err := http.Get("http://viacep.com.br/ws/" + cep + "/json/")
if err != nil {
fmt.Fprintf(os.Stderr, "Erro ao fazer requisição: %v\n", err)
}
defer req.Body.Close()
res, err := ioutil.ReadAll(req.Body)
if err != nil {
fmt.Fprintf(os.Stderr, "Erro ao ler resposta: %v\n", err)
}
var data ViaCEP
err = json.Unmarshal(res, &data)
if err != nil {
fmt.Fprintf(os.Stderr, "Erro ao fazer parse da resposta: %v\n", err)
}
file, err := os.Create("cidade.txt")
if err != nil {
fmt.Fprintf(os.Stderr, "Erro ao criar arquivo: %v\n", err)
}
defer file.Close()
_, err = file.WriteString(fmt.Sprintf("CEP: %s, Localidade %s, UF: %s, Bairro: %s", data.Cep, data.Localidade, data.Uf, data.Bairro))
fmt.Println("Arquivo de armazenamento criado com sucesso!")
fmt.Println(data)
}
}