All Projects → AYLIEN → aylien_textapi_go

AYLIEN / aylien_textapi_go

Licence: other
AYLIEN's officially supported Go client library for accessing Text API

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to aylien textapi go

wordhoard
This Python module can be used to obtain antonyms, synonyms, hypernyms, hyponyms, homophones and definitions.
Stars: ✭ 78 (+420%)
Mutual labels:  text-analysis
uima-uimafit
Apache UIMA uimaFIT
Stars: ✭ 31 (+106.67%)
Mutual labels:  text-analysis
uima-uimaj
Apache UIMA Java SDK
Stars: ✭ 50 (+233.33%)
Mutual labels:  text-analysis
text-analysis
Weaving analytical stories from text data
Stars: ✭ 12 (-20%)
Mutual labels:  text-analysis
visualization
Text visualization tools
Stars: ✭ 18 (+20%)
Mutual labels:  text-analysis
woolly
The Text Mining Elixir
Stars: ✭ 48 (+220%)
Mutual labels:  text-analysis
Fake news detection
Fake News Detection in Python
Stars: ✭ 194 (+1193.33%)
Mutual labels:  text-analysis
TRUNAJOD2.0
An easy-to-use library to extract indices from texts.
Stars: ✭ 18 (+20%)
Mutual labels:  text-analysis
ConTexto
Librería en Python para minería de texto y NLP
Stars: ✭ 43 (+186.67%)
Mutual labels:  text-analysis
ChineseTextAnalysisResouce
中文文本分析相关资源汇总
Stars: ✭ 71 (+373.33%)
Mutual labels:  text-analysis
IncredibleTextAdventure
No description or website provided.
Stars: ✭ 19 (+26.67%)
Mutual labels:  text-analysis
TextMood
A Xamarin + IoT + Azure sample that detects the sentiment of incoming text messages, performs sentiment analysis on the text, and changes the color of a Philips Hue lightbulb
Stars: ✭ 52 (+246.67%)
Mutual labels:  text-analysis
big-data-upf
RECSM-UPF Summer School: Social Media and Big Data Research
Stars: ✭ 21 (+40%)
Mutual labels:  text-analysis
OleanderStemmingLibrary
Porter stemming library (C++)
Stars: ✭ 37 (+146.67%)
Mutual labels:  text-analysis
rectr
💒 Reproducible Extraction of Cross-lingual Topics using R
Stars: ✭ 19 (+26.67%)
Mutual labels:  text-analysis
Shifterator
Interpretable data visualizations for understanding how texts differ at the word level
Stars: ✭ 209 (+1293.33%)
Mutual labels:  text-analysis
corpusexplorer2.0
Korpuslinguistik war noch nie so einfach...
Stars: ✭ 16 (+6.67%)
Mutual labels:  text-analysis
quanteda.corpora
A collection of corpora for quanteda
Stars: ✭ 17 (+13.33%)
Mutual labels:  text-analysis
nlpbuddy
A text analysis application for performing common NLP tasks through a web dashboard interface and an API
Stars: ✭ 115 (+666.67%)
Mutual labels:  text-analysis
knime-textprocessing
KNIME - Text Processing Extension (Labs)
Stars: ✭ 17 (+13.33%)
Mutual labels:  text-analysis

About

This is the Go client library for AYLIEN's APIs. If you haven't already done so, you will need to sign up.

Installation

To install, simply use go get:

$ go get github.com/AYLIEN/aylien_textapi_go

See the Developers Guide for additional documentation.

Example

package main

import (
	"fmt"
	textapi "github.com/AYLIEN/aylien_textapi_go"
)

func main() {
	auth := textapi.Auth{"YourApplicationId", "YourApplicationKey"}
	client, err := textapi.NewClient(auth, true)
	if err != nil {
		panic(err)
	}
	params := &textapi.SentimentParams{Text: "John is a very good football player!"}
	sentiment, err := client.Sentiment(params)
	if err != nil {
		panic(err)
	}
	fmt.Printf("%v\n", sentiment)
}

Support

[email protected]

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].