Documentation Index
Fetch the complete documentation index at: https://www.diadata.org/docs/llms.txt
Use this file to discover all available pages before exploring further.
Implement ForeignScrapperer interface at pkg/dia/scraper/foreign-scrapers/Scrapper.go file
type ForeignScrapperer interface {
UpdateQuotation() error
GetQuoteChannel() chan *models.ForeignQuotation
}
Add the scraper implementation a MyForeignScraper.go Golang file to pkg/dia/scraper/foreign-scrapers/ folder and add the next implementations:
func (scraper *MyForeignScraper) Pool() chan dia.Pool {}
func (scraper *MyForeignScraper) Done() chan bool {}
Add a constructor for the scraper:func NewMyForeignScraper(exchange dia.Exchange) *MyForeignScraper {}
Add MyForeignScraper case at scraper file cmd/foreignscraper/foreign.go:switch *scraperType {
case "MyForeignScraper":
log.Println("Start scraping data")
sc = scrapers.NewMyForeignScraper(ds)
}
Foreign Command
go mod tidy -go=1.16 && go mod tidy -go=1.17 && go install && foreignscraper -foreignType=ForeignType
Foreign Test
go mod tidy -go=1.16 && go mod tidy -go=1.17 && go install && foreignscraper -foreignType=FOREIGN_TYPE