Releases: yigit433/youtube-go
Releases · yigit433/youtube-go
1.3.0
v1.2.0
It is now ready to be tested.
Full Changelog: v1.0.0-beta.3...v1.0.0-beta.9
Bug fixed, ready for testing soon
The direct version was taken to this because the library did not see the latest version and saw an unrelated version.
Error fix
Full Changelog: v1.0.0-beta.2...v1.0.0-beta.3
It can now be tested
Full Changelog: v1.0.0-beta.9...v1.0.0-beta.10
It is now fully ready for use!
Youtube GO
A Go package prepared for Video searching on youtube.
This project was developed inspired by youtube-sr
Installation
go mod init project_name && go get github.com/SherlockYigit/youtube-go
Example
package main
import (
"fmt"
youtube "github.com/SherlockYigit/youtube-go"
)
func main() {
res := youtube.Search("Nora & Chris, Drenchill Remedy", youtube.SearchOptions{
Type: "video", // channel , playlist , all
Limit: 15,
})
fmt.Println(res)
}
v1.0.0-beta.2
Full Changelog: v1.0.0-beta...v1.0.0-beta.2
The first beta version has been released!
If you want to become a partner in the development, even you can try it out and throw what you want as a pr.