A simple webscraper for KissAsian, meant for educational purposes.
For now the program will only look for a hard-coded show on the site. In which you can easily change on main.go
. You can even change to another website, as long as you write the scraper function yourself.
If you want to build this the easy way, I recommend you to use Task. It's a simple tool and it integrates very well with Go.
To build the project with it, just be sure to be inside the project directory and run
task build
and a kissasian
binary will be built on the bin
folder.
If you don't have or don't want to use Task, you can use the Go command-line directly.
Run it simply as
go build -o main.go bin/kissasian
DISCLAIMER: If you're on Windows, you need to insert .exe
at the end of the command in order to execute the binary.