Code Monkey home page Code Monkey logo

lyric-api's Introduction

lyric-api

API that returns lyrics after searching on lyrics.wikia.com based on Artist and Song.

##Deploy on Heroku

Deploy

##Deployed at: https://lyric-api.herokuapp.com/api/ and http://128.199.199.233:8081/api/

Usage: https://lyric-api.herokuapp.com/api/find/artist/song Example: http://lyric-api.herokuapp.com/api/find/John%20Lennon/Imagine

##Sample Python Code

data = json.load(urllib2.urlopen('http://lyric-api.herokuapp.com/api/find/John%20Lennon/Imagine'))
print(data['lyric'])
print(str(data['lyric']).split())

NOTE: Please do not use this in Production as it is not allowed by the scraped website.

Use this at your own discretion. Lyrics are being scraped from publically available lyrics at lyrics.wikia.com

#lyric-get

npm version

module for fetching lyrics from lyrics.wikia.com using artist name and song.

#Installation

npm install lyric-get

#Usage

var l = require("lyric-get");

l.get("John Lennon", "Imagine", function(err, res){
    if(err){
        console.log(err);
    }
    else{
        console.log(res);
    }
});

lyric-api's People

Contributors

ohnx avatar rhnvrm avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.