ballerinax/nytimes.semantic Ballerina library

1.5.1

Overview

This is a generated connector from New York Times Semantic API v2.0.0 OpenAPI specification. With the New York Times Semantic API you can get sementic terms (people, places, organizations, and locations). The Semantic API complements the Articles API. With the Semantic API, you get access to the long list of people, places, organizations and other locations, entities and descriptors that make up the controlled vocabulary used as metadata by The New York Times (sometimes referred to as Times Tags) and used for Times Topics pages. The Semantic API uses concepts which are, by definition, terms in The New York Times controlled vocabulary. Like the way facets are used in the Articles API, concepts are a good way to uncover articles of interest in The New York Times archive, and at the same time, limit the scope and number of those articles. The Semantic API maps to external semantic data resources, in a fashion consistent with the idea of linked data. The Semantic API also provides combination and relationship information to other, similar concepts in The New York Times controlled vocabulary.

Prerequisites

Before using this connector in your Ballerina application, complete the following:

Quickstart

To use the New York Times Semantic connector in your Ballerina application, update the .bal file as follows:

Step 1: Import connector

First, import the ballerinax/nytimes.semantic module into the Ballerina project.

Copy
import ballerinax/nytimes.semantic as ns;

Step 2: Create a new connector instance

Create a semantic:ApiKeysConfig with the API key obtained, and initialize the connector with it.

Copy
ns:ApiKeysConfig config = {
    apiKey: "<API_KEY>"
}
ns:Client baseClient = check new Client(config);

Step 3: Invoke connector operation

  1. Now you can use the operations available within the connector. Note that they are in the form of remote operations.

    Following is an example on how to make a Semantic API request by concept type and specific concept using the connector.

    concept_type is one of seven types:

    • nytd_geo for a location
    • nytd_per for a person
    • nytd_org for an organization
    • nytd_des for a descriptor
    • nytd_ttl for a creative work title
    • nytd_topic for a topic
    • nytd_porg for a public company

    specific_concept_name is a term in The New York Times controlled vocabulary.

    Semantic API request by concept type and specific concept

    Copy
    public function main() {
        ns:InlineResponse200|error response = baseClient->getConcepts("nytd_des", "Baseball", "Baseball");
        if (response is ns:InlineResponse200) {
            ns:Concept[]? concepts = response?.results;
            if !(concepts is ()) {
                foreach var concept in concepts {
                    log:printInfo(concept.toString() + "\n");
                }
            }
        } else {
            log:printInfo(response.toString());
        }
    }

    Following is an example on how to call a Semantic API search query using the connector. Here we have an example, it asks for all of the concepts that contain the substring "Evan" and return the result.

    Semantic API search query

    Copy
    public function main() {
        ns:InlineResponse2001|error response = baseClient->searchConcepts("evan");
        if (response is ns:InlineResponse2001) {
            ns:ConceptRelation[]? conceptsRelation = response?.results;
            if !(conceptsRelation is ()) {
                foreach var conceptRelation in conceptsRelation {
                    log:printInfo(conceptRelation.toString() + "\n");
                }
            }
        } else {
            log:printInfo(response.toString());
        }
    }
  2. Use bal run command to compile and run the Ballerina program.

Import

import ballerinax/nytimes.semantic;Copy

Metadata

Released date: 12 months ago

Version: 1.5.1

License: Apache-2.0


Compatibility

Platform: any

Ballerina version: 2201.4.1

GraalVM compatible: Yes


Pull count

Total: 0

Current verison: 0


Weekly downloads


Source repository


Keywords

Lifestyle & Entertainment/News & Lifestyle

Cost/Free


Contributors

Other versions

See more...