Java examples for Natural Language Processing:aylien
Get Coverages from aylien newsapi
import com.aylien.newsapi.*; import com.aylien.newsapi.auth.*; import com.aylien.newsapi.models.*; import com.aylien.newsapi.parameters.*; import com.aylien.newsapi.api.DefaultApi; import org.joda.time.DateTime; import java.util.Arrays; import java.util.List; public class Main { public static void main(String[] args) { ApiClient defaultClient = Configuration.getDefaultApiClient(); // Configure API key authorization: app_id ApiKeyAuth app_id = (ApiKeyAuth) defaultClient .getAuthentication("app_id"); app_id.setApiKey("{{current_app_id}}"); // Configure API key authorization: app_key ApiKeyAuth app_key = (ApiKeyAuth) defaultClient .getAuthentication("app_key"); app_key.setApiKey("{{current_app_key}}"); DefaultApi apiInstance = new DefaultApi(); List<Long> id = Arrays.asList(985744L); List<Long> notId = Arrays.asList(5241L, 4412L); String title = "startup AND (raise OR raised OR raising OR raises)"; String body = "startup"; String text = "startup company"; List<String> language = Arrays.asList("en", "es", "es"); List<String> notLanguage = Arrays.asList("fr", "pt", "it"); String publishedAtStart = "NOW-3MONTHS/DAY"; String publishedAtEnd = "NOW-10DAYS"; String categoriesTaxonomy = "iab-qag"; Boolean categoriesConfident = true; List<String> categoriesId = Arrays.asList("IAB15", "IAB13-1"); List<String> notCategoriesId = Arrays.asList("IAB3-2"); List<Integer> categoriesLevel = Arrays.asList(2); List<Integer> notCategoriesLevel = Arrays.asList(1, 3); List<String> entitiesTitleText = Arrays.asList("GNU/Linux", "Microsoft Windows"); List<String> notEntitiesTitleText = Arrays.asList("Ireland", "Dublin"); List<String> entitiesTitleType = Arrays.asList("Software", "Organization"); List<String> notEntitiesTitleType = Arrays .asList("Agent", "Person"); List<String> entitiesTitleLinksDbpedia = Arrays .asList("http://dbpedia.org/resource/Linux"); List<String> notEntitiesTitleLinksDbpedia = Arrays .asList("http://dbpedia.org/resource/Windows"); List<String> entitiesBodyText = Arrays.asList("GNU/Linux", "Microsoft Windows"); List<String> notEntitiesBodyText = Arrays.asList("Trump"); List<String> entitiesBodyType = Arrays.asList("Agent", "Person"); List<String> notEntitiesBodyType = Arrays.asList("Software", "Organization"); List<String> entitiesBodyLinksDbpedia = Arrays .asList("entitiesBodyLinksDbpedia_example"); List<String> notEntitiesBodyLinksDbpedia = Arrays .asList("http://dbpedia.org/resource/Linux"); String sentimentTitlePolarity = "negative"; String notSentimentTitlePolarity = "positive"; String sentimentBodyPolarity = "neutral"; String notSentimentBodyPolarity = "negative"; Integer mediaImagesCountMin = 2; Integer mediaImagesCountMax = 4; Integer mediaImagesWidthMin = 640; Integer mediaImagesWidthMax = 1024; Integer mediaImagesHeightMin = 480; Integer mediaImagesHeightMax = 800; Integer mediaImagesContentLengthMin = 25411; Integer mediaImagesContentLengthMax = 369541; List<String> mediaImagesFormat = Arrays .asList("JPEG", "BMP", "GIF"); List<String> notMediaImagesFormat = Arrays.asList("PNG", "TIFF"); Integer mediaVideosCountMin = 1; Integer mediaVideosCountMax = 2; List<Integer> authorId = Arrays.asList(36521); List<Integer> notAuthorId = Arrays.asList(2541); String authorName = "John Doe"; String notAuthorName = "Mike Wally"; List<Integer> sourceId = Arrays.asList(1411); List<Integer> notSourceId = Arrays.asList(251); List<String> sourceName = Arrays.asList("BBC"); List<String> notSourceName = Arrays.asList("Fox News"); List<String> sourceDomain = Arrays.asList("bbc.co.uk"); List<String> notSourceDomain = Arrays.asList("foxnews.com"); List<String> sourceLocationsCountry = Arrays.asList("US", "IE"); List<String> notSourceLocationsCountry = Arrays.asList("IR"); List<String> sourceLocationsState = Arrays.asList("California"); List<String> notSourceLocationsState = Arrays.asList("Arizona"); List<String> sourceLocationsCity = Arrays.asList("Los Angeles"); List<String> notSourceLocationsCity = Arrays.asList("Dublin City"); List<String> sourceScopesCountry = Arrays.asList("IE", "NG"); List<String> notSourceScopesCountry = Arrays.asList("US", "GB"); List<String> sourceScopesState = Arrays.asList("Co Dublin"); List<String> notSourceScopesState = Arrays.asList("Co Wicklow"); List<String> sourceScopesCity = Arrays.asList("Dublin City"); List<String> notSourceScopesCity = Arrays.asList("Cork"); List<String> sourceScopesLevel = Arrays.asList("national"); List<String> notSourceScopesLevel = Arrays.asList("local"); Integer sourceLinksInCountMin = 354211; Integer sourceLinksInCountMax = 587412; Integer sourceRankingsAlexaRankMin = 10; Integer sourceRankingsAlexaRankMax = 2500; List<String> sourceRankingsAlexaCountry = Arrays.asList("IE"); Integer socialSharesCountFacebookMin = 3521; Integer socialSharesCountFacebookMax = 5841; Integer socialSharesCountGooglePlusMin = 2514; Integer socialSharesCountGooglePlusMax = 36521; Integer socialSharesCountLinkedinMin = 6521; Integer socialSharesCountLinkedinMax = 36521; Integer socialSharesCountRedditMin = 14125; Integer socialSharesCountRedditMax = 95412; Boolean cluster = false;/*from w w w. j a va2 s. com*/ String clusterAlgorithm = "kmeans"; List<String> _return = Arrays.asList("id", "title", "body"); Long storyId = 789L; String storyUrl = "https://techcrunch.com/2016/04/07/aylien-launches-news-analysis-api-powered-by-its-deep-learning-tech/"; String storyTitle = "Aylien launches news analysis API powered by its deep learning tech"; String storyBody = "Text analysis startup Aylien, which uses deep learning ..."; DateTime storyPublishedAt = new DateTime("2013-10-20T19:20:30Z"); String storyLanguage = "auto"; Integer perPage = 9; CoveragesParams.Builder coveragesBuilder = CoveragesParams .newBuilder(); coveragesBuilder.setId(id); coveragesBuilder.setNotId(notId); coveragesBuilder.setTitle(title); coveragesBuilder.setBody(body); coveragesBuilder.setText(text); coveragesBuilder.setLanguage(language); coveragesBuilder.setNotLanguage(notLanguage); coveragesBuilder.setPublishedAtStart(publishedAtStart); coveragesBuilder.setPublishedAtEnd(publishedAtEnd); coveragesBuilder.setCategoriesTaxonomy(categoriesTaxonomy); coveragesBuilder.setCategoriesConfident(categoriesConfident); coveragesBuilder.setCategoriesId(categoriesId); coveragesBuilder.setNotCategoriesId(notCategoriesId); coveragesBuilder.setCategoriesLevel(categoriesLevel); coveragesBuilder.setNotCategoriesLevel(notCategoriesLevel); coveragesBuilder.setEntitiesTitleText(entitiesTitleText); coveragesBuilder.setNotEntitiesTitleText(notEntitiesTitleText); coveragesBuilder.setEntitiesTitleType(entitiesTitleType); coveragesBuilder.setNotEntitiesTitleType(notEntitiesTitleType); coveragesBuilder .setEntitiesTitleLinksDbpedia(entitiesTitleLinksDbpedia); coveragesBuilder .setNotEntitiesTitleLinksDbpedia(notEntitiesTitleLinksDbpedia); coveragesBuilder.setEntitiesBodyText(entitiesBodyText); coveragesBuilder.setNotEntitiesBodyText(notEntitiesBodyText); coveragesBuilder.setEntitiesBodyType(entitiesBodyType); coveragesBuilder.setNotEntitiesBodyType(notEntitiesBodyType); coveragesBuilder .setEntitiesBodyLinksDbpedia(entitiesBodyLinksDbpedia); coveragesBuilder .setNotEntitiesBodyLinksDbpedia(notEntitiesBodyLinksDbpedia); coveragesBuilder.setSentimentTitlePolarity(sentimentTitlePolarity); coveragesBuilder .setNotSentimentTitlePolarity(notSentimentTitlePolarity); coveragesBuilder.setSentimentBodyPolarity(sentimentBodyPolarity); coveragesBuilder .setNotSentimentBodyPolarity(notSentimentBodyPolarity); coveragesBuilder.setMediaImagesCountMin(mediaImagesCountMin); coveragesBuilder.setMediaImagesCountMax(mediaImagesCountMax); coveragesBuilder.setMediaImagesWidthMin(mediaImagesWidthMin); coveragesBuilder.setMediaImagesWidthMax(mediaImagesWidthMax); coveragesBuilder.setMediaImagesHeightMin(mediaImagesHeightMin); coveragesBuilder.setMediaImagesHeightMax(mediaImagesHeightMax); coveragesBuilder .setMediaImagesContentLengthMin(mediaImagesContentLengthMin); coveragesBuilder .setMediaImagesContentLengthMax(mediaImagesContentLengthMax); coveragesBuilder.setMediaImagesFormat(mediaImagesFormat); coveragesBuilder.setNotMediaImagesFormat(notMediaImagesFormat); coveragesBuilder.setMediaVideosCountMin(mediaVideosCountMin); coveragesBuilder.setMediaVideosCountMax(mediaVideosCountMax); coveragesBuilder.setAuthorId(authorId); coveragesBuilder.setNotAuthorId(notAuthorId); coveragesBuilder.setAuthorName(authorName); coveragesBuilder.setNotAuthorName(notAuthorName); coveragesBuilder.setSourceId(sourceId); coveragesBuilder.setNotSourceId(notSourceId); coveragesBuilder.setSourceName(sourceName); coveragesBuilder.setNotSourceName(notSourceName); coveragesBuilder.setSourceDomain(sourceDomain); coveragesBuilder.setNotSourceDomain(notSourceDomain); coveragesBuilder.setSourceLocationsCountry(sourceLocationsCountry); coveragesBuilder .setNotSourceLocationsCountry(notSourceLocationsCountry); coveragesBuilder.setSourceLocationsState(sourceLocationsState); coveragesBuilder .setNotSourceLocationsState(notSourceLocationsState); coveragesBuilder.setSourceLocationsCity(sourceLocationsCity); coveragesBuilder.setNotSourceLocationsCity(notSourceLocationsCity); coveragesBuilder.setSourceScopesCountry(sourceScopesCountry); coveragesBuilder.setNotSourceScopesCountry(notSourceScopesCountry); coveragesBuilder.setSourceScopesState(sourceScopesState); coveragesBuilder.setNotSourceScopesState(notSourceScopesState); coveragesBuilder.setSourceScopesCity(sourceScopesCity); coveragesBuilder.setNotSourceScopesCity(notSourceScopesCity); coveragesBuilder.setSourceScopesLevel(sourceScopesLevel); coveragesBuilder.setNotSourceScopesLevel(notSourceScopesLevel); coveragesBuilder.setSourceLinksInCountMin(sourceLinksInCountMin); coveragesBuilder.setSourceLinksInCountMax(sourceLinksInCountMax); coveragesBuilder .setSourceRankingsAlexaRankMin(sourceRankingsAlexaRankMin); coveragesBuilder .setSourceRankingsAlexaRankMax(sourceRankingsAlexaRankMax); coveragesBuilder .setSourceRankingsAlexaCountry(sourceRankingsAlexaCountry); coveragesBuilder .setSocialSharesCountFacebookMin(socialSharesCountFacebookMin); coveragesBuilder .setSocialSharesCountFacebookMax(socialSharesCountFacebookMax); coveragesBuilder .setSocialSharesCountGooglePlusMin(socialSharesCountGooglePlusMin); coveragesBuilder .setSocialSharesCountGooglePlusMax(socialSharesCountGooglePlusMax); coveragesBuilder .setSocialSharesCountLinkedinMin(socialSharesCountLinkedinMin); coveragesBuilder .setSocialSharesCountLinkedinMax(socialSharesCountLinkedinMax); coveragesBuilder .setSocialSharesCountRedditMin(socialSharesCountRedditMin); coveragesBuilder .setSocialSharesCountRedditMax(socialSharesCountRedditMax); coveragesBuilder.setCluster(cluster); coveragesBuilder.setClusterAlgorithm(clusterAlgorithm); coveragesBuilder.set_return(_return); coveragesBuilder.setStoryId(storyId); coveragesBuilder.setStoryUrl(storyUrl); coveragesBuilder.setStoryTitle(storyTitle); coveragesBuilder.setStoryBody(storyBody); coveragesBuilder.setStoryPublishedAt(storyPublishedAt); coveragesBuilder.setStoryLanguage(storyLanguage); coveragesBuilder.setPerPage(perPage); try { Coverages result = apiInstance.listCoverages(coveragesBuilder .build()); System.out.println(result); } catch (ApiException e) { System.err .println("Exception when calling DefaultApi#listCoverages"); e.printStackTrace(); } } }