Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/AnjanaMadu/YTSearch

A go (golang) library to search videos in YouTube.
https://github.com/AnjanaMadu/YTSearch

Last synced: 28 days ago
JSON representation

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

Lists

README

        

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

## Installation
```bash
go get github.com/AnjanaMadu/YTSearch
```

## Usage
```go
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](LICENSE) for more information.