Skip to content

Releases: yigit433/youtube-go

1.3.0

23 Jan 09:23
Compare
Choose a tag to compare

Fixed an issue where the video title was not readable.

v1.2.0

23 Jan 06:16
Compare
Choose a tag to compare

What's Changed

  • fix: add IsSuccess field to output of parsing by @Satont in #2
  • refactor: do not panic if error happened by @Satont in #3
  • fix: use correct types for width, height of thumbnail by @Satont in #1

New Contributors

  • @Satont made their first contribution in #2

Full Changelog: v1.0.0...v1.2.0

It is now ready to be tested.

13 Feb 22:35
Compare
Choose a tag to compare

Bug fixed, ready for testing soon

13 Feb 22:29
Compare
Choose a tag to compare

The direct version was taken to this because the library did not see the latest version and saw an unrelated version.

Error fix

13 Feb 22:03
Compare
Choose a tag to compare

It can now be tested

13 Feb 22:53
Compare
Choose a tag to compare

It is now fully ready for use!

13 Feb 22:57
Compare
Choose a tag to compare

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

10 Feb 20:37
Compare
Choose a tag to compare

The first beta version has been released!

07 Feb 12:26
Compare
Choose a tag to compare

If you want to become a partner in the development, even you can try it out and throw what you want as a pr.