# emailscraper **Repository Path**: bit212/emailscraper ## Basic Information - **Project Name**: emailscraper - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-02-06 - **Last Updated**: 2022-02-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ![GolangCI](https://github.com/lawzava/emailscraper/workflows/golangci/badge.svg?branch=main) [![Version](https://img.shields.io/badge/version-v1.1.2-green.svg)](https://github.com/lawzava/emailscraper/releases) [![Go Report Card](https://goreportcard.com/badge/github.com/lawzava/emailscraper)](https://goreportcard.com/report/github.com/lawzava/emailscraper) [![Coverage Status](https://coveralls.io/repos/github/lawzava/emailscraper/badge.svg?branch=main)](https://coveralls.io/github/lawzava/emailscraper?branch=main) [![Go Reference](https://pkg.go.dev/badge/github.com/lawzava/emailscraper.svg)](https://pkg.go.dev/github.com/lawzava/emailscraper) # emailscraper Minimalistic library to scrape emails from websites. Requires chromium or google-chrome available in environment for JS render utilization. ## Installation ``` go get github.com/lawzava/emailscraper ``` ## Usage ```go package main import ( "fmt" "github.com/lawzava/emailscraper" ) func main() { s := emailscraper.New(emailscraper.DefaultConfig()) extractedEmails, err := s.Scrape("https://lawzava.com") if err != nil { panic(err) } fmt.Println(extractedEmails) } ```