Skip to content
This repository was archived by the owner on Jan 19, 2022. It is now read-only.

bueda/bueda-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Bueda Java Library – buedaLib

buedaLib is a library is a library to access the Bueda API. The library requires
an API key from http://bueda.com.

The Bueda API allows you to send in tags and get back normalized tags,
clean tags, semantic tags and categories.

Dependencies

  • Gson

Optionally, use the version of the Bueda JAR that includes Gson.

Usage

import com.bueda.api.Bueda;
import com.bueda.api.BuedaResult;

Bueda client = new Bueda(apiKey);
BuedaResult result = client.enhance(tags);
if(result.getStatus() == "true") {
    System.out.println("Query: " + result.getQuery());
    System.out.println("Split Tags: " + result.getSplit_tags());
    System.out.println("Clean Tags: " + result.getCleanup());
    System.out.println("Semantic Tags: " + result.getSemantic());
} else {
    System.out.println("Error: " + result.getMessage());
}

About

The source code for the Java Library for the Bueda API

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages