Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

IPTC text classification example

  CURL *curl;
  CURLcode res;
  curl = curl_easy_init();
  if(curl) {
    curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "POST");
    curl_easy_setopt(curl, CURLOPT_URL, "https://api.meaningcloud.com/class-1.1?key=<your_key>&txt=<text>&model=<model>");
    curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
    curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "https");
    struct curl_slist *headers = NULL;
    curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
    res = curl_easy_perform(curl);
  }
  curl_easy_cleanup(curl);
Comment

IPTC text classification example

#! /usr/bin/env python

# Created by MeaningCloud Support Team
# Date: 26/02/18

import sys
import meaningcloud

# @param model str - Name of the model to use. Example: "IAB_en" by default = "IPTC_en"
model = 'IAB_en'

# @param license_key - Your license key (found in the subscription section in https://www.meaningcloud.com/developer/)
license_key = '<<<<< your license key >>>>>'

# @param text - Text to use for different API calls
text = 'London is a very nice city but I also love Madrid.'


try:
    # We are going to make a request to the Topics Extraction API
    topics_response = meaningcloud.TopicsResponse(meaningcloud.TopicsRequest(license_key, txt=text, lang='en',
                                                                             topicType='e').sendReq())

    # If there are no errors in the request, we print the output
    if topics_response.isSuccessful():
        print("
The request to 'Topics Extraction' finished successfully!
")

        entities = topics_response.getEntities()
        if entities:
            print("	Entities detected (" + str(len(entities)) + "):
")
            for entity in entities:
                print("		" + topics_response.getTopicForm(entity) + ' --> ' +
                      topics_response.getTypeLastNode(topics_response.getOntoType(entity)) + "
")

        else:
            print("	No entities detected!
")
    else:
        if topics_response.getResponse() is None:
            print("
Oh no! The request sent did not return a Json
")
        else:
            print("
Oh no! There was the following error: " + topics_response.getStatusMsg() + "
")

    # CLASS API CALL
    # class_response = meaningcloud.ClassResponse(
    #   meaningcloud.ClassRequest(license_key, txt=text, model=model).sendReq())

    # SENTIMENT API CALL
    # sentiment_response = meaningcloud.SentimentResponse(
    #   meaningcloud.SentimentRequest(license_key, lang='en', txt=text, txtf='plain').sendReq())

    # GENERIC API CALL
    # generic = meaningcloud.Request(url="url_of_specific_API",key=key)
    # generic.addParam('parameter','value')
    # generic_result = generic.sendRequest()
    # generic_response = meaningcloud.Response(generic_result)

    # We are going to make a request to the Language Identification API
    lang_response = meaningcloud.LanguageResponse(meaningcloud.LanguageRequest(license_key, txt=text).sendReq())

    # If there are no errors in the request, we will use the language detected to make a request to Sentiment and Topics
    if lang_response.isSuccessful():
        print("
The request to 'Language Identification' finished successfully!
")
        first_lang = lang_response.getFirstLanguage()
        if first_lang:
            language = lang_response.getLanguageCode(first_lang)
            print("	Language detected: " + lang_response.getLanguageName(first_lang) + ' (' + language + ")
")
        else:
            print("	No language detected!
")

    # We are going to make a request to the Lemmatization, PoS and Parsing API
    parser_response = meaningcloud.ParserResponse(
        meaningcloud.ParserRequest(license_key, txt=text, lang='en').sendReq())

    # If there are no errors in the request, print tokenization and lemmatization
    if parser_response.isSuccessful():
        print("
The request to 'Lemmatization, PoS and Parsing' finished successfully!
")
        lemmatization = parser_response.getLemmatization(True)
        print("	Lemmatization and PoS Tagging:
")
        for token, analyses in lemmatization.items():
            print("		Token -->", token)
            for analysis in analyses:
                print("			Lemma -->", analysis['lemma'])
                print("			PoS Tag -->", analysis['pos'], "
")


except ValueError:
    e = sys.exc_info()[0]
    print("
Exception: " + str(e))
Comment

PREVIOUS NEXT
Code Example
Python :: qlabel click python 
Python :: python on read text execute command 
Python :: python requests json backslash 
Python :: adding attributes and metadata to a dataset using xarray 
Python :: schedule a function python inside tkinter loop 
Python :: python lxml get parent 
Python :: como resolver números primos em python 
Python :: python: subset top 5 values in a column 
Python :: most valuable features in pandas model 
Python :: print less than specific number in one row python 
Python :: reportlab line thickness 
Python :: username__icontains in django 
Python :: how to get python to write to 100 
Python :: how to take long input in python 
Python :: plot idl 
Python :: Save this RDD as a SequenceFile of serialized objects 
Python :: arrotondamento python 
Python :: integer to boolean numpy 
Python :: sqlite3 with flask web application CRUD pdf 
Python :: restore tf model python ValueError: Unknown loss function:smoothL1 
Python :: convert python to c++ online 
Python :: height and width of colorbar 
Python :: how to use put method in django 
Python :: can i save additional information with png file 
Python :: pip django graphql 
Python :: weighted averae multiple columns 
Python :: ex: for stopping the while loop after 5 minute in python 
Python :: multipart encoder 
Python :: base conversion python 
Python :: python split clever looping 
ADD CONTENT
Topic
Content
Source link
Name
4+8 =