https://github.com/devparihar5/lovematch
Realtion match percentage calculator
https://github.com/devparihar5/lovematch
love lovematch python
Last synced: 28 days ago
JSON representation
Realtion match percentage calculator
- Host: GitHub
- URL: https://github.com/devparihar5/lovematch
- Owner: Devparihar5
- License: mit
- Created: 2023-04-19T11:22:56.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-20T07:30:31.000Z (about 2 years ago)
- Last Synced: 2025-05-01T17:06:58.732Z (about 1 month ago)
- Topics: love, lovematch, python
- Language: Python
- Homepage: https://pypi.org/project/lovematch/
- Size: 10.7 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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}")
```