stringhandling


Namestringhandling JSON
Version 0.3 PyPI version JSON
download
home_page
SummaryPython package for string handling
upload_time2023-04-18 13:15:31
maintainer
docs_urlNone
authorSubeesh Palamadathil
requires_python
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            README.txt

Introduction:- Python package for string handling

Usage:- use pip to install stringhandling. pip install stringhandling 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 stringhandling import strhandle

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

words = strhandle.get_words_list(paragraph)

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

To see all functions available under a package, type

import <package>

print(dir(package))


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "stringhandling",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Subeesh Palamadathil",
    "author_email": "subi4020@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/c0/85/f6c8a653f1e785b7eae505728c9d3956cef75409e5fffcd72fe61394307e/stringhandling-0.3.tar.gz",
    "platform": null,
    "description": "README.txt\r\n\r\nIntroduction:- Python package for string handling\r\n\r\nUsage:- use pip to install stringhandling. pip install stringhandling 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 stringhandling import strhandle\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 = strhandle.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\r\nTo see all functions available under a package, type\r\n\r\nimport <package>\r\n\r\nprint(dir(package))\r\n\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python package for string handling",
    "version": "0.3",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c085f6c8a653f1e785b7eae505728c9d3956cef75409e5fffcd72fe61394307e",
                "md5": "55b945549665cc8bd918b4f5c0dc9d1b",
                "sha256": "5cec7b9c8c9b27def814e23425a6ad467429fe701b1608b17f3ccdb383d1776e"
            },
            "downloads": -1,
            "filename": "stringhandling-0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "55b945549665cc8bd918b4f5c0dc9d1b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2422,
            "upload_time": "2023-04-18T13:15:31",
            "upload_time_iso_8601": "2023-04-18T13:15:31.660599Z",
            "url": "https://files.pythonhosted.org/packages/c0/85/f6c8a653f1e785b7eae505728c9d3956cef75409e5fffcd72fe61394307e/stringhandling-0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-18 13:15:31",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "stringhandling"
}
        
Elapsed time: 0.27458s