wordslistpack


Namewordslistpack JSON
Version 0.1.1 PyPI version JSON
download
home_pagehttps://github.com/Subeesh4020/
SummaryPython library to manage sentence or paragraph
upload_time2023-04-18 11:38:39
maintainer
docs_urlNone
authorSubeesh Palamadathil
requires_python
licenseLICENSE.txt MIT LICENSE Permission is hereby granted, free of charge, to any person obtaining a copy of this package and associated documentation files (the “package”), to deal in the package without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the package, and to permit persons to whom the package 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 package. THE PACKAGE 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 PACKAGE OR THE USE OR OTHER DEALINGS IN THE PACKAGE.
keywords wordslist wordslistfromparagraph wordslistfromsentence
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            README.txt

Introduction:- Python package to manage sentence / paragraph

Usage:- use pip to install wordslistpack pip install wordslistpack after installation you are ready to use the functions in this package.

e.g.,

to extract the words list from a sentence / paragraph, use the function 'get_words_list()'

from wordslistpack import wordslist

paragraph = """package to manage sentence or paragraph package to manage sentence or paragraph package to manage sentence or paragraph""" words = []

words = wordslist.get_words_list(paragraph)

Output:- ['package', 'to', 'manage', 'sentence', 'or', 'paragraph', 'package', 'to', 'manage', 'sentence', 'or', 'paragraph', 'package', 'to', 'manage', 'sentence', 'or', 'paragraph']

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Subeesh4020/",
    "name": "wordslistpack",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "wordslist,wordslistfromparagraph,wordslistfromsentence",
    "author": "Subeesh Palamadathil",
    "author_email": "subi4020@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/21/54/58deb2f727ffbf49ec314572d2049337b921e0dcbbc4129698e0882178cb/wordslistpack-0.1.1.tar.gz",
    "platform": null,
    "description": "README.txt\r\n\r\nIntroduction:- Python package to manage sentence / paragraph\r\n\r\nUsage:- use pip to install wordslistpack pip install wordslistpack after installation you are ready to use the functions in this package.\r\n\r\ne.g.,\r\n\r\nto extract the words list from a sentence / paragraph, use the function 'get_words_list()'\r\n\r\nfrom wordslistpack import wordslist\r\n\r\nparagraph = \"\"\"package to manage sentence or paragraph package to manage sentence or paragraph package to manage sentence or paragraph\"\"\" words = []\r\n\r\nwords = wordslist.get_words_list(paragraph)\r\n\r\nOutput:- ['package', 'to', 'manage', 'sentence', 'or', 'paragraph', 'package', 'to', 'manage', 'sentence', 'or', 'paragraph', 'package', 'to', 'manage', 'sentence', 'or', 'paragraph']\r\n",
    "bugtrack_url": null,
    "license": "LICENSE.txt  MIT LICENSE Permission is hereby granted, free of charge, to any person obtaining a copy of this package and associated documentation files (the \u201cpackage\u201d), to deal in the package without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the package, and to permit persons to whom the package 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 package.  THE PACKAGE IS PROVIDED \u201cAS IS\u201d, 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 PACKAGE OR THE USE OR OTHER DEALINGS IN THE PACKAGE.",
    "summary": "Python library to manage sentence or paragraph",
    "version": "0.1.1",
    "split_keywords": [
        "wordslist",
        "wordslistfromparagraph",
        "wordslistfromsentence"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "215458deb2f727ffbf49ec314572d2049337b921e0dcbbc4129698e0882178cb",
                "md5": "cc130d0b330359858834fb1600971b90",
                "sha256": "6c57bf18b3cb637b25e1af40e62b7fbdcebcdb14193e3c53d5d8dadede03c15c"
            },
            "downloads": -1,
            "filename": "wordslistpack-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "cc130d0b330359858834fb1600971b90",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2157,
            "upload_time": "2023-04-18T11:38:39",
            "upload_time_iso_8601": "2023-04-18T11:38:39.484838Z",
            "url": "https://files.pythonhosted.org/packages/21/54/58deb2f727ffbf49ec314572d2049337b921e0dcbbc4129698e0882178cb/wordslistpack-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-18 11:38:39",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "wordslistpack"
}
        
Elapsed time: 0.05507s