1
This commit is contained in:
Alex Yatskov 2015-08-12 18:26:22 +09:00
parent c60b29c270
commit 0d6994a764

View File

@ -22,6 +22,13 @@
package main
import "log"
func main() {
scrapeTabelog()
urlFormat := "http://tabelog.com/en/rstLst/{{.Page}}/?lat=35.465808055555996&lon=139.61964361111&zoom=16&RdoCosTp=2&LstCos=0&LstCosT=11&LstSitu=0&LstRev=0&LstReserve=0&ChkParking=0&LstSmoking=0"
tabelogReviews := "tabelog.json"
if err := scrapeTabelog(tabelogReviews, urlFormat); err != nil {
log.Fatal(err)
}
}