YoutubeSearchApi.Net 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package YoutubeSearchApi.Net --version 1.0.0
NuGet\Install-Package YoutubeSearchApi.Net -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="YoutubeSearchApi.Net" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add YoutubeSearchApi.Net --version 1.0.0
#r "nuget: YoutubeSearchApi.Net, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install YoutubeSearchApi.Net as a Cake Addin
#addin nuget:?package=YoutubeSearchApi.Net&version=1.0.0

// Install YoutubeSearchApi.Net as a Cake Tool
#tool nuget:?package=YoutubeSearchApi.Net&version=1.0.0

YoutubeSearchApi.Net

CodeFactor Grade Nuget contributionswelcome discord_invite

A lightweight & simple .NET library to extract data from Youtube. The purpose of this project is to make it easier for developers to extract data from YouTube or any sources.

Supported Sites

  • Youtube
  • Youtube Music

Installation

NuGet

Quick Start

Youtube Search

using YoutubeSearchApi.Net.Models.Youtube;
using YoutubeSearchApi.Net.Services;

public static async Task AsyncMain()
{
    using (var httpClient = new HttpClient())
    {
        YoutubeSearchClient client = new YoutubeSearchClient(httpClient);

        var responseObject = await client.SearchAsync("black suit");

        foreach (YoutubeVideo video in responseObject.Results)
        {
            Console.WriteLine(video.ToString());
            Console.WriteLine("");
        }
    }
}

public static void Main(string[] args)
{
    AsyncMain().GetAwaiter().GetResult();
}

Youtube Music Search

using YoutubeSearchApi.Net.Models.Youtube;
using YoutubeSearchApi.Net.Services;

public static async Task AsyncMain()
{
    using (var httpClient = new HttpClient())
    {
        YoutubeMusicSearchClient client = new YoutubeMusicSearchClient(httpClient);

        var responseObject = await client.SearchAsync("simple ringtone");

        foreach (YoutubeVideo video in responseObject.Results)
        {
            Console.WriteLine(video.ToString());
            Console.WriteLine("");
        }
    }
}

public static void Main(string[] args)
{
    AsyncMain().GetAwaiter().GetResult();
}

Full examples at Demo project

Using Service Collection

services.AddHttpClient<HttpClient>(); // <-- required

services.AddSingleton<YoutubeSearchClient>();
services.AddSingleton<YoutubeMusicSearchClient>();

Code Review

Code review would really help me out :]

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.1 3,385 5/13/2022
1.1.0 382 5/11/2022
1.0.0 283 12/31/2021

- Remove Backends & Objects & Google Search
- Add Services & Models