Socket
Socket
Sign inDemoInstall

git.itmodulo.eu/APIs/lyrics-api-go-extended

Package Overview
Dependencies
9
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    git.itmodulo.eu/APIs/lyrics-api-go-extended


Version published

Readme

Source

lyrics-api-go-extended

This is a fork of known lyrics-api-go providing extended functionality.

Status

Work in progress...

Table of contents

  • Why
  • Extended Functionality
  • Examples

Why

Due to lack of response for issue, I forked repo to extend it for my needs

Extended functionality

  • Pass your own http.Client (example case: proxy, change timeout, ...)
  • Custom parse rules (e.g. line by line returned as a list of strings, split by regex, split by dot, ...)
  • Custom http header (=> custom UserAgent, Proxy auth, ...)
  • If possible, more providers

Examples

import (
	"fmt"
	
	"github.com/hashicorp/go-retryablehttp"
	"git.itmodulo.eu/Forks/lyrics-api-go-extended"
)

// Create http.Client using lib or by yourself, here you can specify proxy settings
myClient := retryablehttp.NewClient().StandardClient() // External

// Set UserAgent
lyrics.DefaultHeaderUserAgent() // Default
lyrics.AddToheaderMap("User-Agent", "Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/94.0") // or custom

// Set other Header Settings if needed (e.g. proxy auth goes here)
// ...

// Create lyrics object
l := lyrics.New(*myClient) // To use all providers

// Using Only a Certain Provider (here Genius)
l :=  lyrics.New(*myClient, lyrics.WithoutProviders(), lyrics.WithGeniusLyrics("your_access_token_here"))

// Specify artist and songTitle
artist := "..."
songTitle := "..."

// Actual search
lyric, err := l.Search(artist, songTitle)

if err != nil {
    fmt.Printf("%v: Lyrics for %v-%v were not found", err, artist, songTitle)
}

//Print in console
fmt.Println(lyric)

FAQs

Last updated on 23 Mar 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc