Skip to content

tom-ludwig/HTML-Table-to-JSON

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HTML-Table-to-JSON

The package allows you to extract the data from an html table

Example Usage:

func main() {
	data, err := converthtmltabletodata.ConvertURLToJSON("src/index.html")
	if err != nil { return }
	jsonFile, err := os.Create("jsonData.json")
	if err != nil { return }
	defer jsonFile.Close()

	_, err = jsonFile.Write(data)
	if err != nil { return }
}

About

The package allows you to extract the data from an html table

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages