Metadata-Version: 2.1
Name: telebirrTxChecker
Version: 0.0.6
Summary: asynchronous telebirr transaction checker
Home-page: https://github.com/wizkiye/TelebirrPaymentProcessor
Author: Kidus
Author-email: wizkiye@gmail.com
License: MIT
Description-Content-Type: text/markdown

# Telebirr Transaction Checker/Parser

This is a simple script that checks your Telebirr transactions and parses them 

### ⚠ Not finished yet

## Installation

```bash

pip install git+https://github.com/wizkiye/telebirr-tx-checker.git

```

## Usage

```python
from ttxc import TelebirrTxChecker


async def main():
    checker = TelebirrTxChecker()
    tx = await checker.get_transaction("<TRANSACTION_ID>")
    print(tx.status)
    print(tx.id)
    print(tx.total_sent)
    print(tx.total_amount_in_word)
    print(tx.mode)
    print(tx.channel)
    print(tx.payer)
    print(tx.payer.name)
    print(tx.payer.phone)
    print(tx.payer.account_type)

```
