Metadata-Version: 2.1
Name: lovematch
Version: 1.8.0
Summary: Realtion match percentage calculator
Home-page: https://github.com/Devparihar5/lovematch
Author: Devendra Parihar
Author-email: devendraparihar340@gmail.com
Keywords: python,love,match,percentage,calculator,lovematch
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE



# lovematch

The `lovematch` library is a Python package that allows you to calculate friendship and love match percentages between given names.

## Installation

You can install `lovematch` using pip, the Python package manager:

```bash
pip install lovematch
```


## Usage
### You can use lovematch in your Python code as follows:


```python
from lovematch.friendship import calculate_frindship_match_percentage
from lovematch.love import calculate_love_match_percentage

# Calculate friendship match percentage
your_name = "Alice"
friend_name = "Bob"
friendship_percentage = calculate_frindship_match_percentage(your_name, friend_name)
print(f"Friendship match percentage between {your_name} and {friend_name}: {friendship_percentage}")

# Calculate love match percentage
your_name = "Alice"
partner_name = "Bob"
love_percentage = calculate_love_match_percentage(your_name, partner_name)
print(f"Love match percentage between {your_name} and {partner_name}: {love_percentage}")
```

