GeniusLyricsAPI 1.0.0

dotnet add package GeniusLyricsAPI --version 1.0.0
NuGet\Install-Package GeniusLyricsAPI -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="GeniusLyricsAPI" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GeniusLyricsAPI --version 1.0.0
#r "nuget: GeniusLyricsAPI, 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 GeniusLyricsAPI as a Cake Addin
#addin nuget:?package=GeniusLyricsAPI&version=1.0.0

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

GeniusLyricsAPI

GeniusLyricsAPI is a library that can find information about a track and try to extract the lyrics from the genius website

Features

  • Gets track info
  • Search some track in Genius
  • Gets track's lyrics
  • Gets album's cover link

Install a package

  1. Open a command line and switch to the directory that contains your project file.

  2. Use the following command to install a NuGet package:

     dotnet add package GeniusLyricsAPI
    
  3. After the command completes, you can open the project file to see the package reference.

    For example, open the .csproj file to see the added GeniusLyricsAPI package reference:

     <ItemGroup>
       <PackageReference Include="GeniusLyricsAPI" Version="1.0.0" />
     </ItemGroup>
    

Usage

using GeniusLyricsAPI;
using GeniusLyricsApi.Models;

public class Program
{
    static void Main(string[] args)
    {
        try
        {
            new Program().Run().Wait();
        }
        catch (AggregateException ex)
        {
            foreach (var e in ex.InnerExceptions)
            {
                Console.WriteLine("Error: " + e.Message);
            }
        }
    }

    private async Task Run()
	{
	    var genius = new GeniusApi("REPLACE_ME_GeniusToken");
	    
	    Song song = await genius.GetSong("8594139");
	    
	    string Lyrics = await genius.GetLyrics(song.Uri);
	    
	    Console.Write(Lyrics);
    }
}

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.

Thanks

Thank you very much farshed for writing a similar library for JavaScript. If it wasn't for the genius-lyrics-api, I wouldn't have come up with the idea of rewriting it in C# and wouldn't have written a bot for Telegram 😄

License

MIT

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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.0.0 169 8/31/2023