Scrape JSON data

In python extruct package get JSON data,Micro data and Meta data.Is there any similar package in GO which can give me JSON data?

You can use net/http.Client and the convinience functions Get, Post, etc. to get the data from the remote server. Then you can use the encoding/json-package to decode the retrieved JSON.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.