apiverve-textsummarizer


Nameapiverve-textsummarizer JSON
Version 1.1.5 PyPI version JSON
download
home_pageNone
SummaryText Summarizer is a simple tool for summarizing text. It returns a summary of the text.
upload_time2024-09-21 07:04:37
maintainerNone
docs_urlNone
authorNone
requires_python>=3.12
licenseNone
keywords text summarizer text summarizer api text summarizer tool text summarizer software text summarizer service
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Text Summarizer API
============

Text Summarizer is a simple tool for summarizing text. It returns a summary of the text.

![Build Status](https://img.shields.io/badge/build-passing-green)
![Code Climate](https://img.shields.io/badge/maintainability-B-purple)
![Prod Ready](https://img.shields.io/badge/production-ready-blue)

This is a Python API Wrapper for the [Text Summarizer API](https://apiverve.com/marketplace/api/textsummarizer)

---

## Installation
	pip install apiverve-textsummarizer

---

## Configuration

Before using the textsummarizer API client, you have to setup your account and obtain your API Key.  
You can get it by signing up at [https://apiverve.com](https://apiverve.com)

---

## Usage

The Text Summarizer API documentation is found here: [https://docs.apiverve.com/api/textsummarizer](https://docs.apiverve.com/api/textsummarizer).  
You can find parameters, example responses, and status codes documented here.

### Setup

```
# Import the client module
from apiverve_textsummarizer.apiClient import TextsummarizerAPIClient

# Initialize the client with your APIVerve API key
api = TextsummarizerAPIClient("[YOUR_API_KEY]")
```

---


### Perform Request
Using the API client, you can perform requests to the API.

###### Define Query

```
query = {  "text": "A news article can include accounts of eyewitnesses to the happening event. It can contain photographs, accounts, statistics, graphs, recollections, interviews, polls, debates on the topic, etc. Headlines can be used to focus the reader's attention on a particular (or main) part of the article. The writer can also give facts and detailed information following answers to general questions like who, what, when, where, why and how.",  "sentences": 2 }
```

###### Simple Request

```
# Make a request to the API
result = api.execute(query)

# Print the result
print(result)
```

###### Example Response

```
{
  "status": "ok",
  "error": null,
  "data": {
    "originalWords": 67,
    "summaryWords": 30,
    "percentDifference": 44.78,
    "summary": "Headlines can be used to focus the reader's attention on a particular (or main) part of the article. A news article can include accounts of eyewitnesses to the happening event."
  },
  "code": 200
}
```

---

## Customer Support

Need any assistance? [Get in touch with Customer Support](https://apiverve.com/contact).

---

## Updates
Stay up to date by following [@apiverveHQ](https://twitter.com/apiverveHQ) on Twitter.

---

## Legal

All usage of the APIVerve website, API, and services is subject to the [APIVerve Terms of Service](https://apiverve.com/terms) and all legal documents and agreements.

---

## License
Licensed under the The MIT License (MIT)

Copyright (©) 2024 APIVerve, and Evlar LLC

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "apiverve-textsummarizer",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.12",
    "maintainer_email": null,
    "keywords": "text summarizer, text summarizer api, text summarizer tool, text summarizer software, text summarizer service",
    "author": null,
    "author_email": "APIVerve <hello@apiverve.com>",
    "download_url": "https://files.pythonhosted.org/packages/70/0f/3728966ae3bc21733ca00ea34190e6d829baab72102a6eec644eb859ad7f/apiverve_textsummarizer-1.1.5.tar.gz",
    "platform": null,
    "description": "Text Summarizer API\r\n============\r\n\r\nText Summarizer is a simple tool for summarizing text. It returns a summary of the text.\r\n\r\n![Build Status](https://img.shields.io/badge/build-passing-green)\r\n![Code Climate](https://img.shields.io/badge/maintainability-B-purple)\r\n![Prod Ready](https://img.shields.io/badge/production-ready-blue)\r\n\r\nThis is a Python API Wrapper for the [Text Summarizer API](https://apiverve.com/marketplace/api/textsummarizer)\r\n\r\n---\r\n\r\n## Installation\r\n\tpip install apiverve-textsummarizer\r\n\r\n---\r\n\r\n## Configuration\r\n\r\nBefore using the textsummarizer API client, you have to setup your account and obtain your API Key.  \r\nYou can get it by signing up at [https://apiverve.com](https://apiverve.com)\r\n\r\n---\r\n\r\n## Usage\r\n\r\nThe Text Summarizer API documentation is found here: [https://docs.apiverve.com/api/textsummarizer](https://docs.apiverve.com/api/textsummarizer).  \r\nYou can find parameters, example responses, and status codes documented here.\r\n\r\n### Setup\r\n\r\n```\r\n# Import the client module\r\nfrom apiverve_textsummarizer.apiClient import TextsummarizerAPIClient\r\n\r\n# Initialize the client with your APIVerve API key\r\napi = TextsummarizerAPIClient(\"[YOUR_API_KEY]\")\r\n```\r\n\r\n---\r\n\r\n\r\n### Perform Request\r\nUsing the API client, you can perform requests to the API.\r\n\r\n###### Define Query\r\n\r\n```\r\nquery = {  \"text\": \"A news article can include accounts of eyewitnesses to the happening event. It can contain photographs, accounts, statistics, graphs, recollections, interviews, polls, debates on the topic, etc. Headlines can be used to focus the reader's attention on a particular (or main) part of the article. The writer can also give facts and detailed information following answers to general questions like who, what, when, where, why and how.\",  \"sentences\": 2 }\r\n```\r\n\r\n###### Simple Request\r\n\r\n```\r\n# Make a request to the API\r\nresult = api.execute(query)\r\n\r\n# Print the result\r\nprint(result)\r\n```\r\n\r\n###### Example Response\r\n\r\n```\r\n{\r\n  \"status\": \"ok\",\r\n  \"error\": null,\r\n  \"data\": {\r\n    \"originalWords\": 67,\r\n    \"summaryWords\": 30,\r\n    \"percentDifference\": 44.78,\r\n    \"summary\": \"Headlines can be used to focus the reader's attention on a particular (or main) part of the article. A news article can include accounts of eyewitnesses to the happening event.\"\r\n  },\r\n  \"code\": 200\r\n}\r\n```\r\n\r\n---\r\n\r\n## Customer Support\r\n\r\nNeed any assistance? [Get in touch with Customer Support](https://apiverve.com/contact).\r\n\r\n---\r\n\r\n## Updates\r\nStay up to date by following [@apiverveHQ](https://twitter.com/apiverveHQ) on Twitter.\r\n\r\n---\r\n\r\n## Legal\r\n\r\nAll usage of the APIVerve website, API, and services is subject to the [APIVerve Terms of Service](https://apiverve.com/terms) and all legal documents and agreements.\r\n\r\n---\r\n\r\n## License\r\nLicensed under the The MIT License (MIT)\r\n\r\nCopyright (&copy;) 2024 APIVerve, and Evlar LLC\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Text Summarizer is a simple tool for summarizing text. It returns a summary of the text.",
    "version": "1.1.5",
    "project_urls": {
        "Documentation": "https://docs.apiverve.com/api/textsummarizer?utm_source=pypi",
        "Homepage": "https://apiverve.com?utm_source=pypi",
        "Repository": "https://github.com/apiverve/textsummarizer.Python-API",
        "Twitter": "https://twitter.com/apivervehq"
    },
    "split_keywords": [
        "text summarizer",
        " text summarizer api",
        " text summarizer tool",
        " text summarizer software",
        " text summarizer service"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "708c09e828b6bcd3e845d3e6a488ba8c0e2f56581e20579f969aa177f0e6f9ab",
                "md5": "ae7e3da44312863a35d1c2563ae23a78",
                "sha256": "c93daa44ab6da4e3004221ed0724f57986f1468d4915e516b2e1833765ff76a0"
            },
            "downloads": -1,
            "filename": "apiverve_textsummarizer-1.1.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ae7e3da44312863a35d1c2563ae23a78",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.12",
            "size": 7494,
            "upload_time": "2024-09-21T07:04:36",
            "upload_time_iso_8601": "2024-09-21T07:04:36.998273Z",
            "url": "https://files.pythonhosted.org/packages/70/8c/09e828b6bcd3e845d3e6a488ba8c0e2f56581e20579f969aa177f0e6f9ab/apiverve_textsummarizer-1.1.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "700f3728966ae3bc21733ca00ea34190e6d829baab72102a6eec644eb859ad7f",
                "md5": "21090c5b8465dd0317f793b393850f65",
                "sha256": "69b9e0958187d93369a93b319d87680534107495c4869a501280311377e94f93"
            },
            "downloads": -1,
            "filename": "apiverve_textsummarizer-1.1.5.tar.gz",
            "has_sig": false,
            "md5_digest": "21090c5b8465dd0317f793b393850f65",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.12",
            "size": 7395,
            "upload_time": "2024-09-21T07:04:37",
            "upload_time_iso_8601": "2024-09-21T07:04:37.820176Z",
            "url": "https://files.pythonhosted.org/packages/70/0f/3728966ae3bc21733ca00ea34190e6d829baab72102a6eec644eb859ad7f/apiverve_textsummarizer-1.1.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-21 07:04:37",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "apiverve",
    "github_project": "textsummarizer.Python-API",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "apiverve-textsummarizer"
}
        
Elapsed time: 1.46184s