August 18, 2010 12:00

one interesting projecton website analytics

The Lionyzer API

If your problem remained unsolved you can contact us.

Simple Lionyzer JSON API

    Website Classification

    http://lionyzer.com/api/[URL]/clf/get/

    Example output

    {
    	"url": "http://python.org",
    	"class": "programming.python"
    }
    

    Summarize

    Fast but a bit dirty summarizer that uses NLTK v.1
    http://lionyzer.com/api/[URL]/sum1/get/

    Fast but a bit dirty summarizer that uses NLTK v.2
    http://lionyzer.com/api/[URL]/sum2/get/

    Best quality summarizer (slow)
    http://lionyzer.com/api/[URL]/sum3/get/

    Example output

    {
    	"url": "http://python.org", 
    	"summarized": "Python Programming Language"
    }
    


    Get it all

    http://lionyzer.com/api/[URL]/all/get/

    Example output

    {
    	"url": "http://python.org", 
    	"summarized": "Python Programming Language",
    	"class": "programming.python"
    }