Metadata-Version: 2.1
Name: transactify
Version: 0.1.0
Summary: A Python module for predicting transaction categorization
Home-page: https://github.com/web-slate/transactify
Author: Venkatraman.R
Author-email: ramsunvtech@gmail.com
License: MIT
Description-Content-Type: text/markdown

# transactify
A Python module for predicting transaction categorization


## Step 1: Install Transactify

```
pip install transactify
```

## Add Simple Transaction List.

```
from transactify import predict_categories


new_transactions = [
    "Book purchase from Bookstore ABC",
    "Lunch at Cafe XYZ",
    "Book movie ticket in website"
]

# Predict categories for new transactions
predicted_categories = predict_categories(new_transactions)

for transaction, category in zip(new_transactions, predicted_categories):
    print(f"Transaction: {transaction} --> Predicted Category: {category}")

```

## Expected output
```
Transaction: Book purchase from Bookstore ABC --> Predicted Category: Online Payment
Transaction: Lunch at Cafe XYZ --> Predicted Category: Unknown
Transaction: Book movie ticket in website --> Predicted Category:  Online Payment
```
