Skip to content

yigit433/youtube-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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/yigit433/youtube-go

Example

package main

import (
    "fmt"
    youtube "github.com/yigit433/youtube-go"
)

func main() {
    res := youtube.Search("Nora & Chris, Drenchill Remedy", youtube.SearchOptions{
      Type: "video", // channel , playlist , all
      Limit: 15,
    })

    fmt.Println(res)
}