Metadata-Version: 2.4
Name: smfun
Version: 0.0.4
Summary: This is Python Code for Operations on Strings to find Vowels, Consonants, Spaces, Digits and Special Characters
Home-page: https://github.com/sayed2174/smfun
Author: Mohammed Sayed
Author-email: mohammedcm046@gmail.com
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: summary

String Character Counter

This is a simple Python package named smfun that analyzes a string and counts the number of vowels consonants digits spaces and special characters The results are displayed in a clean and organized format using pandas

Features

Counts Vowels Detects and counts all vowels regardless of case
Counts Consonants Identifies and counts all consonants
Counts Digits Tallies all numeric characters from zero to nine
Counts Spaces Counts all whitespace characters
Counts Special Characters Flags characters that are not letters digits or spaces

Prerequisites

Python version three point six or higher is required
The pandas library will be installed automatically with the package

Installation and Usage

Install the package using pip

pip install smfun

Import the function in your Python code

from smfun import charFun

Run the function and enter a string when prompted

Enter the String Hello World 123

Example Output

Vowels 3
Consonants 7
Digits 3
Spaces 2
Special Characters 1

License

This package is released under the MIT License
