Skip to content

HK-Mattew/python-payeer-asyncio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AsyncIO Payeer Client

Implementation of AsyncIO Client for Payeer API.

Before use, it is advisable to familiarize yourself with the official Payeer documentation (https://payeercom.docs.apiary.io/). The application implements the interaction protocol described in this document.

Installation

pip install git+https://github.com/HK-Mattew/python-payeer-asyncio

Example of use

from payeer_asyncio import PayeerAsyncIO
import asyncio



async def main():


    payeer = PayeerAsyncIO(
        account='<your-account>',
        apiId='<your-api-id>',
        apiPass='<your-api-pass>'
    )


    balance = await payeer.get_balance()

    print(balance)




if __name__ == "__main__":
    asyncio.run(main())

About

⚙️ AsyncIO Payeer Client | Python

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages