string-utils-package


Namestring-utils-package JSON
Version 0.1.1 PyPI version JSON
download
home_pageNone
SummaryA collection of useful string manipulation and validation functions
upload_time2025-10-30 08:13:52
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseMIT
keywords string utilities validation manipulation
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # String Utilities

A collection of useful string manipulation and validation functions.

## Installation

```bash
pip install string-utils-package
```

## Usage

```python
from string_utils import reverse_string, is_palindrome, slugify

# Reverse a string
print(reverse_string("hello"))  # Output: "olleh"

# Check if palindrome
print(is_palindrome("radar"))   # Output: True

# Create slug
print(slugify("Hello World!"))  # Output: "hello-world"
```

## Available Functions

### Core Functions
- `reverse_string(text)`: Reverse a string
- `capitalize_words(text)`: Capitalize each word
- `slugify(text)`: Convert to URL-friendly slug

### Validation Functions  
- `is_palindrome(text)`: Check if string is palindrome
- `is_strong_password(password)`: Validate password strength

## License

MIT License - see LICENSE file for details.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "string-utils-package",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "string, utilities, validation, manipulation",
    "author": null,
    "author_email": "Your Name <your.email@example.com>",
    "download_url": "https://files.pythonhosted.org/packages/5b/77/101b28dc7de05b1be39b0843e09702a0e862afebef3a95f8ebdca037dab2/string_utils_package-0.1.1.tar.gz",
    "platform": null,
    "description": "# String Utilities\r\n\r\nA collection of useful string manipulation and validation functions.\r\n\r\n## Installation\r\n\r\n```bash\r\npip install string-utils-package\r\n```\r\n\r\n## Usage\r\n\r\n```python\r\nfrom string_utils import reverse_string, is_palindrome, slugify\r\n\r\n# Reverse a string\r\nprint(reverse_string(\"hello\"))  # Output: \"olleh\"\r\n\r\n# Check if palindrome\r\nprint(is_palindrome(\"radar\"))   # Output: True\r\n\r\n# Create slug\r\nprint(slugify(\"Hello World!\"))  # Output: \"hello-world\"\r\n```\r\n\r\n## Available Functions\r\n\r\n### Core Functions\r\n- `reverse_string(text)`: Reverse a string\r\n- `capitalize_words(text)`: Capitalize each word\r\n- `slugify(text)`: Convert to URL-friendly slug\r\n\r\n### Validation Functions  \r\n- `is_palindrome(text)`: Check if string is palindrome\r\n- `is_strong_password(password)`: Validate password strength\r\n\r\n## License\r\n\r\nMIT License - see LICENSE file for details.\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A collection of useful string manipulation and validation functions",
    "version": "0.1.1",
    "project_urls": {
        "Homepage": "https://github.com/yourusername/string-utils-package",
        "Issues": "https://github.com/yourusername/string-utils-package/issues",
        "Repository": "https://github.com/yourusername/string-utils-package"
    },
    "split_keywords": [
        "string",
        " utilities",
        " validation",
        " manipulation"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "81817a185f2586ea9c49773bd2a181a4487820816469ee0a2035e8b8b2adc030",
                "md5": "0241db0d201f97a0ac821eeb2881852f",
                "sha256": "3a1a5d13c4905cf2a52c00d130c176d1e90d1a178238b5d84fbe437305a22a69"
            },
            "downloads": -1,
            "filename": "string_utils_package-0.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0241db0d201f97a0ac821eeb2881852f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 5062,
            "upload_time": "2025-10-30T08:13:50",
            "upload_time_iso_8601": "2025-10-30T08:13:50.628382Z",
            "url": "https://files.pythonhosted.org/packages/81/81/7a185f2586ea9c49773bd2a181a4487820816469ee0a2035e8b8b2adc030/string_utils_package-0.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b77101b28dc7de05b1be39b0843e09702a0e862afebef3a95f8ebdca037dab2",
                "md5": "74286553ed6d5ce2981cd73a87edd7e2",
                "sha256": "41d94d01ddeef763158a09363a6077beaf93efc4a66c9ffeb805d93e9951d130"
            },
            "downloads": -1,
            "filename": "string_utils_package-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "74286553ed6d5ce2981cd73a87edd7e2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 5205,
            "upload_time": "2025-10-30T08:13:52",
            "upload_time_iso_8601": "2025-10-30T08:13:52.012241Z",
            "url": "https://files.pythonhosted.org/packages/5b/77/101b28dc7de05b1be39b0843e09702a0e862afebef3a95f8ebdca037dab2/string_utils_package-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-30 08:13:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "yourusername",
    "github_project": "string-utils-package",
    "github_not_found": true,
    "lcname": "string-utils-package"
}
        
Elapsed time: 1.04873s