Metadata-Version: 2.1
Name: stripend
Version: 0.1.1
Summary: A Python module that includes utility methods for making your code shorter, more flexible, and smarter.
Home-page: https://github.com/TrueMyst/stripend
Author: TrueMyst
License: MIT
Project-URL: Issue tracker, https://github.com/TrueMyst/stripend/issues
Keywords: utilities,utils,python,code,
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries
Description-Content-Type: text/markdown
License-File: LICENSE

# stripend 0.1.0

<p align = "center"><img width="750" height="350" src="https://i.imgur.com/O0r8lYo.png"></p>

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

A Python module that includes utility methods for making your code shorter, more flexible, and smarter.

## Tables of Contents
* `0` [Updates](#0-updates)
* `1` [Installation](#1-installation)
* `2` [Usage](#2-usage)
    * `2.1` [Examples](#21-examples)
* `3` [Modules](#3-available-functions)
* `4` [Feedback](#4-feedback)
* `5` [License](#5-license)

## `0` Updates
- New features: 
    - Added `MostCommon()` function.
- Bug Fixes 



## `1` Installation 
You may use pip or a similar tool to install latest versions of stripend from the PyPi. To Install the Module - 

- Install the Stable Version: 
```bash
# Linux/macOS
$ python3 -m pip install -U stripend

# Windows
$ py -3 -m pip install -U stripend
```
- Install the Beta Version:
```cmd
pip install git+https://github.com/TrueMyst/stripend.git
```
## `2` Usage 
To import the Module, you can do like this - 
```py
>>> import stripend
```
### `2.1` Examples
```py
>>> import stripend

# Use "HasUniqueElements" to check whether a list has any unique items.
>>> random_list = ["Banana", "Apple", "Orange", "Cherry", "Blueberry"]

>>> print(stripend.HasUniqueElements(random_list))
>>> True 

# Use "Flattenlist()" to flatten a nested list.
>>> nested_list = [["Banana", "Apple"], ["Orange"], ["Cherry", "Blueberry"]]

>>> print(stripend.FlattenList(nested_list))
>>> ["Banana", "Apple", "Orange", "Cherry", "Blueberry"]

>>> xyz = {"Say" : "1", "Hello" : "2", "World" : "3"}

>>> print(stripend.FindKeyByValue(xyz, "2"))
>>> 'Hello'
```


## `3` Available Functions

The following functions are currently available:

|                | **Available Functions** |               |
| :--------      | :----------------       | :------------ |
| SwapKeysValues | MergeDicts              | StringIsEmpty |
| AnyCharMatches | HasUniqueElements       | MethodSource  |
| MergeList      | FindKeyByValue          | FlattenList   |
| RepeatedValue  | ReverseText             | CheckPrefix   |
| MostCommon     |         -               |       -       |


## `4` Feedback

If you have any feedback, please reach out to us at our [Discord](https://discord.gg/your_link)

## `5` License
`stripend` was created by TrueMyst. It is licensed under the terms of the MIT license.



