A Python module for predicting transaction categorization
Project description
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
transactify-0.1.1.tar.gz
(5.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file transactify-0.1.1.tar.gz.
File metadata
- Download URL: transactify-0.1.1.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60571fe5e64b405c8af7382f0ce41ad8ebd32b3d044cd883fe05b21ec9625480
|
|
| MD5 |
42a4a7cb54795e66ae93596abfd1687e
|
|
| BLAKE2b-256 |
620168a95ea5978f4617209b40e6ee8a4ed28fe612a5cb5df1ec0f2758ce84e0
|
File details
Details for the file transactify-0.1.1-py3-none-any.whl.
File metadata
- Download URL: transactify-0.1.1-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
950a3341ce531839eafdc0e7773fa0b8c0f428ba6d7798105d80c81fd5b64d64
|
|
| MD5 |
f6389f615bb0892878b3d652db86c6c4
|
|
| BLAKE2b-256 |
761301cba6023b8dfdd4ab5ffbe5124a2518f2e48d73062ae5358f85320a64a7
|