Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 690 Bytes

README.md

File metadata and controls

39 lines (31 loc) · 690 Bytes

YT Search

A go (golang) library to search videos in YouTube.

Installation

go get github.com/AnjanaMadu/YTSearch

Usage

package main

import (
    "fmt"
    
    ytsearch "github.com/AnjanaMadu/YTSearch"
)

func main() {
    results, err := ytsearch.Search("faded")
    if err != nil {
        panic(err)
    }

    for _, result := range results {
        fmt.Printf("Title: %s\nVideo Id: %s\n\n", result.Title, result.VideoId)
    }
}

Contributing

  • Fork the repository
  • Create a branch
  • Commit your changes
  • Push your branch to your fork
  • Create a new issue or pull request

License

AGPL-3.0, see LICENSE for more information.