MeaningCloud-python


NameMeaningCloud-python JSON
Version 2.0.0 PyPI version JSON
download
home_pagehttps://github.com/MeaningCloud/meaningcloud-python
SummaryOfficial Python SDK for MeaningCloud APIs
upload_time2020-09-15 08:52:47
maintainer
docs_urlNone
authorMeaningCloud
requires_python
license
keywords nlp meaningcloud text analytics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # MeaningCloud for Python

This is MeaningCloud's official Python client, designed to enable you to use MeaningCloud's services easily from your own applications.

## MeaningCloud

MeaningCloud is a cloud-based text analytics service that through APIs allows you extract meaning from all kind of unstructured content: social conversation, articles, documents... You can check our demos here: https://www.meaningcloud.com/demos

The different APIs provide easy access to many NLP tasks such as automatic classification, sentiment analysis, topic extraction, etc. To be able to use the service you just have to log into MeaningCloud (by registering or using other services to log in: https://www.meaningcloud.com/developer/login), and you will receive a license key associated to a basic Free plan.

You can read more about the plans and the features available here: https://www.meaningcloud.com/products/pricing

## SDK versions

Starting from version 2.0 the classification API `class-1.1` is deprecated. Please refer to the
[class-1.1 to class-2.0 Model Migration Guide](https://www.meaningcloud.com/blog/text-classification-20-migration-guide)
to upgrade your classification models.

|                     | v1.2                   | v2.0                   |
|---------------------|------------------------|------------------------|
| Class               | class-1.1              | **class-2.0**          |
| Deep Categorization | deepcategorization-1.0 | deepcategorization-1.0 |
| Language Detection  | lang-2.0               | lang-2.0               |
| Parser              | parser-2.0             | parser-2.0             |
| Sentiment Analysis  | sentiment-2.1          | sentiment-2.1          |
| Topics Extraction   | topics-2.0             | topics-2.0             |


## Getting started

### Installation

You can load meaningcloud-python into your project by using:
```
pip install MeaningCloud-python
```

You can also clone the code and type the following on your shell:

``` 
python setup.py install
```

### Configuration

The only thing you need to start using MeaningCloud's APIs is to log into MeaningCloud (by registering or using other services to log in). Once you've done that, you will be given a license key (https://www.meaningcloud.com/developer/account/subscription). Copy it and paste it in the corresponding place in the code, select the API you want to use and the parameters you want to use, and that's it.

You can find all the technical documentation about the APIs in the API section of the website: https://www.meaningcloud.com/developer/apis

And we are always available at support@meaningcloud.com

### Functionality

This SDK currently contains the following:

- **Request**: manages requests to any of MeaningCloud's APIS. It can also be used to directly generate requests without using specific classes .
    - **ClassRequest**: models a request to MeaningCloud Text Classification API.
    - **ClusteringRequest**: models a request to MeaningCloud Text Clustering API.
    - **DeepCategorizationRequest**: models a request to MeaningCloud Deep Categorization API.
    - **LanguageRequest**: models a request to MeaningCloud Language Identification API.
    - **ParserRequest**: models a request to Meaningcloud Lemmatization, PoS and Parsing API.
    - **SentimentRequest**: models a request to MeaningCloud Sentiment Analysis API.
    - **SummarizationRequest**: models a request to Meaningcloud Summarization API.
    - **TopicsRequest**: models a request to MeaningCloud TopicsExtraction API.
- **Response**: models a generic response from the MeaningCloud API.
    - **ClassResponse**: models a response from the Text Classification API, providing auxiliary functions to work with the response and extract the different fields in each category.
    - **ClusteringResponse**: models a response from the Text Clustering API, providing auxiliary functions to work with the response and extract the different fields in each cluster.
    - **DeepCategorizationResponse**: models a response from the Deep Categorization API, providing auxiliary functions to work with the response and extract the different fields in each category.
    - **LanguageResponse**: models a response from the Language Identification API, providing auxiliary functions to work with the response and extract the sentiment detected at different levels and for different elements.
    - **ParserResponse**: models a response from the Lemmatization, PoS and Parsing API, providing auxiliary functions to work with the response and extract the lemmatization and PoS tagging of the text provided.
    - **SentimentResponse**: models a response from the Sentiment Analysis API, providing auxiliary functions to work with the response and extract the sentiment detected at different levels and for different elements.
    - **SummarizationResponse**: models a response from the Summarization API, providing auxiliary functions to work with the response and obtain the summary extracted.
    - **TopicsResponse**: models a response from the Topic Extraction API, providing auxiliary functions to work with the response, extracting the different types of topics and some of the most used fields in them.

### Usage

In the _example_ folder, there are two examples:
- **Client.py**, which contains a simple example on how to use the SDK.
- **mc_rapidminer.py**, which contains a script you can run from RapidMiner using the [Python scripting extension](https://docs.rapidminer.com/latest/studio/operators/utility/scripting/execute_python.html)
- **mc_showcase.py**, which implements a pipeline where plain text files are read from a folder, and two CSV files result as output: one with several types of analyses done over each text, and the results from running [Text Clustering](https://www.meaningcloud.com/developer/text-clustering) over the complete collection.
    The analyses done are:

  * [Language Identification](https://www.meaningcloud.com/developer/language-identification): detects the language and returns code or name
  * [Sentiment Analysis](https://www.meaningcloud.com/developer/sentiment-analysis): detects the global polarity detected in the text
  * [Topics Extraction](https://www.meaningcloud.com/developer/topics-extraction): detects the most relevant entities and concepts in the text. If the _get_fibo_ variable is enabled, FIBO concepts will be output (requires access to the [Financial Industry pack](https://www.meaningcloud.com/developer/documentation/vertical-packs#financial_industry))
  * [Deep Categorization](https://www.meaningcloud.com/developer/deep-categorization): categorizes the text according to the *IAB 2.0* taxonomy
  * [Text Classification](https://www.meaningcloud.com/developer/text-classification): classifies the text according the *IPTC* taxonomy
  * [Summarization](https://www.meaningcloud.com/developer/summarization): extracts a summary from the text


This is what **Client.py** looks like:

```python
#! /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("\nThe request to 'Topics Extraction' finished successfully!\n")

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

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

    # 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("\nThe request to 'Language Identification' finished successfully!\n")
        first_lang = lang_response.getFirstLanguage()
        if first_lang:
            language = lang_response.getLanguageCode(first_lang)
            print("\tLanguage detected: " + lang_response.getLanguageName(first_lang) + ' (' + language + ")\n")
        else:
            print("\tNo language detected!\n")

    # 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("\nThe request to 'Lemmatization, PoS and Parsing' finished successfully!\n")
        lemmatization = parser_response.getLemmatization(True)
        print("\tLemmatization and PoS Tagging:\n")
        for token, analyses in lemmatization.items():
            print("\t\tToken -->", token)
            for analysis in analyses:
                print("\t\t\tLemma -->", analysis['lemma'])
                print("\t\t\tPoS Tag -->", analysis['pos'], "\n")


except ValueError:
    e = sys.exc_info()[0]
    print("\nException: " + str(e))
```



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/MeaningCloud/meaningcloud-python",
    "name": "MeaningCloud-python",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "nlp,MeaningCloud,text analytics",
    "author": "MeaningCloud",
    "author_email": "support@meaningcloud.com",
    "download_url": "https://files.pythonhosted.org/packages/53/64/cfc57dbe8c9321c370ffcc9518c2b3b5fd1a55952c8dadc0b6a114ba0335/MeaningCloud-python-2.0.0.tar.gz",
    "platform": "",
    "description": "# MeaningCloud for Python\n\nThis is MeaningCloud's official Python client, designed to enable you to use MeaningCloud's services easily from your own applications.\n\n## MeaningCloud\n\nMeaningCloud is a cloud-based text analytics service that through APIs allows you extract meaning from all kind of unstructured content: social conversation, articles, documents... You can check our demos here: https://www.meaningcloud.com/demos\n\nThe different APIs provide easy access to many NLP tasks such as automatic classification, sentiment analysis, topic extraction, etc. To be able to use the service you just have to log into MeaningCloud (by registering or using other services to log in: https://www.meaningcloud.com/developer/login), and you will receive a license key associated to a basic Free plan.\n\nYou can read more about the plans and the features available here: https://www.meaningcloud.com/products/pricing\n\n## SDK versions\n\nStarting from version 2.0 the classification API `class-1.1` is deprecated. Please refer to the\n[class-1.1 to class-2.0 Model Migration Guide](https://www.meaningcloud.com/blog/text-classification-20-migration-guide)\nto upgrade your classification models.\n\n|                     | v1.2                   | v2.0                   |\n|---------------------|------------------------|------------------------|\n| Class               | class-1.1              | **class-2.0**          |\n| Deep Categorization | deepcategorization-1.0 | deepcategorization-1.0 |\n| Language Detection  | lang-2.0               | lang-2.0               |\n| Parser              | parser-2.0             | parser-2.0             |\n| Sentiment Analysis  | sentiment-2.1          | sentiment-2.1          |\n| Topics Extraction   | topics-2.0             | topics-2.0             |\n\n\n## Getting started\n\n### Installation\n\nYou can load meaningcloud-python into your project by using:\n```\npip install MeaningCloud-python\n```\n\nYou can also clone the code and type the following on your shell:\n\n``` \npython setup.py install\n```\n\n### Configuration\n\nThe only thing you need to start using MeaningCloud's APIs is to log into MeaningCloud (by registering or using other services to log in). Once you've done that, you will be given a license key (https://www.meaningcloud.com/developer/account/subscription). Copy it and paste it in the corresponding place in the code, select the API you want to use and the parameters you want to use, and that's it.\n\nYou can find all the technical documentation about the APIs in the API section of the website: https://www.meaningcloud.com/developer/apis\n\nAnd we are always available at support@meaningcloud.com\n\n### Functionality\n\nThis SDK currently contains the following:\n\n- **Request**: manages requests to any of MeaningCloud's APIS. It can also be used to directly generate requests without using specific classes .\n    - **ClassRequest**: models a request to MeaningCloud Text Classification API.\n    - **ClusteringRequest**: models a request to MeaningCloud Text Clustering API.\n    - **DeepCategorizationRequest**: models a request to MeaningCloud Deep Categorization API.\n    - **LanguageRequest**: models a request to MeaningCloud Language Identification API.\n    - **ParserRequest**: models a request to Meaningcloud Lemmatization, PoS and Parsing API.\n    - **SentimentRequest**: models a request to MeaningCloud Sentiment Analysis API.\n    - **SummarizationRequest**: models a request to Meaningcloud Summarization API.\n    - **TopicsRequest**: models a request to MeaningCloud TopicsExtraction API.\n- **Response**: models a generic response from the MeaningCloud API.\n    - **ClassResponse**: models a response from the Text Classification API, providing auxiliary functions to work with the response and extract the different fields in each category.\n    - **ClusteringResponse**: models a response from the Text Clustering API, providing auxiliary functions to work with the response and extract the different fields in each cluster.\n    - **DeepCategorizationResponse**: models a response from the Deep Categorization API, providing auxiliary functions to work with the response and extract the different fields in each category.\n    - **LanguageResponse**: models a response from the Language Identification API, providing auxiliary functions to work with the response and extract the sentiment detected at different levels and for different elements.\n    - **ParserResponse**: models a response from the Lemmatization, PoS and Parsing API, providing auxiliary functions to work with the response and extract the lemmatization and PoS tagging of the text provided.\n    - **SentimentResponse**: models a response from the Sentiment Analysis API, providing auxiliary functions to work with the response and extract the sentiment detected at different levels and for different elements.\n    - **SummarizationResponse**: models a response from the Summarization API, providing auxiliary functions to work with the response and obtain the summary extracted.\n    - **TopicsResponse**: models a response from the Topic Extraction API, providing auxiliary functions to work with the response, extracting the different types of topics and some of the most used fields in them.\n\n### Usage\n\nIn the _example_ folder, there are two examples:\n- **Client.py**, which contains a simple example on how to use the SDK.\n- **mc_rapidminer.py**, which contains a script you can run from RapidMiner using the [Python scripting extension](https://docs.rapidminer.com/latest/studio/operators/utility/scripting/execute_python.html)\n- **mc_showcase.py**, which implements a pipeline where plain text files are read from a folder, and two CSV files result as output: one with several types of analyses done over each text, and the results from running [Text Clustering](https://www.meaningcloud.com/developer/text-clustering) over the complete collection.\n    The analyses done are:\n\n  * [Language Identification](https://www.meaningcloud.com/developer/language-identification): detects the language and returns code or name\n  * [Sentiment Analysis](https://www.meaningcloud.com/developer/sentiment-analysis): detects the global polarity detected in the text\n  * [Topics Extraction](https://www.meaningcloud.com/developer/topics-extraction): detects the most relevant entities and concepts in the text. If the _get_fibo_ variable is enabled, FIBO concepts will be output (requires access to the [Financial Industry pack](https://www.meaningcloud.com/developer/documentation/vertical-packs#financial_industry))\n  * [Deep Categorization](https://www.meaningcloud.com/developer/deep-categorization): categorizes the text according to the *IAB 2.0* taxonomy\n  * [Text Classification](https://www.meaningcloud.com/developer/text-classification): classifies the text according the *IPTC* taxonomy\n  * [Summarization](https://www.meaningcloud.com/developer/summarization): extracts a summary from the text\n\n\nThis is what **Client.py** looks like:\n\n```python\n#! /usr/bin/env python\n\n# Created by MeaningCloud Support Team\n# Date: 26/02/18\n\nimport sys\nimport meaningcloud\n\n# @param model str - Name of the model to use. Example: \"IAB_en\" by default = \"IPTC_en\"\nmodel = 'IAB_en'\n\n# @param license_key - Your license key (found in the subscription section in https://www.meaningcloud.com/developer/)\nlicense_key = '<<<<< your license key >>>>>'\n\n# @param text - Text to use for different API calls\ntext = 'London is a very nice city but I also love Madrid.'\n\n\ntry:\n    # We are going to make a request to the Topics Extraction API\n    topics_response = meaningcloud.TopicsResponse(meaningcloud.TopicsRequest(license_key, txt=text, lang='en',\n                                                                             topicType='e').sendReq())\n\n    # If there are no errors in the request, we print the output\n    if topics_response.isSuccessful():\n        print(\"\\nThe request to 'Topics Extraction' finished successfully!\\n\")\n\n        entities = topics_response.getEntities()\n        if entities:\n            print(\"\\tEntities detected (\" + str(len(entities)) + \"):\\n\")\n            for entity in entities:\n                print(\"\\t\\t\" + topics_response.getTopicForm(entity) + ' --> ' +\n                      topics_response.getTypeLastNode(topics_response.getOntoType(entity)) + \"\\n\")\n\n        else:\n            print(\"\\tNo entities detected!\\n\")\n    else:\n        if topics_response.getResponse() is None:\n            print(\"\\nOh no! The request sent did not return a Json\\n\")\n        else:\n            print(\"\\nOh no! There was the following error: \" + topics_response.getStatusMsg() + \"\\n\")\n\n    # CLASS API CALL\n    # class_response = meaningcloud.ClassResponse(\n    #   meaningcloud.ClassRequest(license_key, txt=text, model=model).sendReq())\n\n    # SENTIMENT API CALL\n    # sentiment_response = meaningcloud.SentimentResponse(\n    #   meaningcloud.SentimentRequest(license_key, lang='en', txt=text, txtf='plain').sendReq())\n\n    # GENERIC API CALL\n    # generic = meaningcloud.Request(url=\"url_of_specific_API\",key=key)\n    # generic.addParam('parameter','value')\n    # generic_result = generic.sendRequest()\n    # generic_response = meaningcloud.Response(generic_result)\n\n    # We are going to make a request to the Language Identification API\n    lang_response = meaningcloud.LanguageResponse(meaningcloud.LanguageRequest(license_key, txt=text).sendReq())\n\n    # If there are no errors in the request, we will use the language detected to make a request to Sentiment and Topics\n    if lang_response.isSuccessful():\n        print(\"\\nThe request to 'Language Identification' finished successfully!\\n\")\n        first_lang = lang_response.getFirstLanguage()\n        if first_lang:\n            language = lang_response.getLanguageCode(first_lang)\n            print(\"\\tLanguage detected: \" + lang_response.getLanguageName(first_lang) + ' (' + language + \")\\n\")\n        else:\n            print(\"\\tNo language detected!\\n\")\n\n    # We are going to make a request to the Lemmatization, PoS and Parsing API\n    parser_response = meaningcloud.ParserResponse(\n        meaningcloud.ParserRequest(license_key, txt=text, lang='en').sendReq())\n\n    # If there are no errors in the request, print tokenization and lemmatization\n    if parser_response.isSuccessful():\n        print(\"\\nThe request to 'Lemmatization, PoS and Parsing' finished successfully!\\n\")\n        lemmatization = parser_response.getLemmatization(True)\n        print(\"\\tLemmatization and PoS Tagging:\\n\")\n        for token, analyses in lemmatization.items():\n            print(\"\\t\\tToken -->\", token)\n            for analysis in analyses:\n                print(\"\\t\\t\\tLemma -->\", analysis['lemma'])\n                print(\"\\t\\t\\tPoS Tag -->\", analysis['pos'], \"\\n\")\n\n\nexcept ValueError:\n    e = sys.exc_info()[0]\n    print(\"\\nException: \" + str(e))\n```\n\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Official Python SDK for MeaningCloud APIs",
    "version": "2.0.0",
    "split_keywords": [
        "nlp",
        "meaningcloud",
        "text analytics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "bad4a0b3b59a7b5fa5bd09c965b9b9b9",
                "sha256": "aa4eae91319a87ffa50d8e6a9b7ff5422883f23036ce3aca199e010d9f9e5a03"
            },
            "downloads": -1,
            "filename": "MeaningCloud_python-2.0.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bad4a0b3b59a7b5fa5bd09c965b9b9b9",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 21544,
            "upload_time": "2020-09-15T08:52:46",
            "upload_time_iso_8601": "2020-09-15T08:52:46.428686Z",
            "url": "https://files.pythonhosted.org/packages/d8/cb/f06467d7e9abf8b1aa5b9a224184428bc1e72a948ccf0f5b1bcc82ac1441/MeaningCloud_python-2.0.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "1fe98157180d680f216237d3816e755e",
                "sha256": "3134abc3be97a8bc37405f4da856f3ccfd3bf8c999395d64d6ffe2b00eb4b566"
            },
            "downloads": -1,
            "filename": "MeaningCloud-python-2.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "1fe98157180d680f216237d3816e755e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 12734,
            "upload_time": "2020-09-15T08:52:47",
            "upload_time_iso_8601": "2020-09-15T08:52:47.727583Z",
            "url": "https://files.pythonhosted.org/packages/53/64/cfc57dbe8c9321c370ffcc9518c2b3b5fd1a55952c8dadc0b6a114ba0335/MeaningCloud-python-2.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2020-09-15 08:52:47",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "MeaningCloud",
    "github_project": "meaningcloud-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "meaningcloud-python"
}
        
Elapsed time: 0.02088s