Skip to content
This repository has been archived by the owner on Feb 5, 2020. It is now read-only.

Phalelashvili/emoneyge-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6cfdbb5 · Mar 4, 2019

History

10 Commits
Mar 4, 2019
Feb 2, 2019
Feb 15, 2019
Feb 2, 2019

Repository files navigation

Unofficial eMoney.ge Client for Python

Installation

pip install emoneyge-py

Usage

pincode is whatever method you're using to confirm transactions, can be password or even sms

from emoney import eMoneyClient
client = eMoneyClient()
client.login('username', 'password', pincode=pincode)

if you have SMS, or Google Authentication

client.send_code()
sms = # received code
client.login('username', 'password', googleauthcode='foobar', smsauthcode=sms)
Get Balance
```python
client.get_balance()

Get transaction

client.get_transaction(transactioncode)

Request money

client.request_money(sender, amount)

Send money currency you're sending, default is GEL, default is GEL, accepts GEL, USD, EUR, RUB, AMD, AMZ, UAH description of transaction (optional)
if given value between 0 and 5, function will return security code which must be used by recipient to redeem money, value is amount of days till it expires

client.send_money(receiver, amount, currency='GEL', description='', protect: 5)

Cancel transaction

client.cancel_transaction(transactioncode)

About

Unofficial Python library for emoney.ge

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages