Bitocredit python package
python wrapper for Bitocredit API
usage
install package using pip
pip install pythonGatewayand use package like this:
from pythonGateway import BitocreditApi
baseurl = "https://bitocredit.com/api/";
token = "TOKEN"; # fill your token
Api = BitocreditApi(baseurl , token);
res = Api.createWallet("wallet_id" , "network") # replace wallet_id with your wallet id and network type
print(res)methods
createWallet
This method used for creating wallet for user
endpoint : https://bitocredit.com/api/create/wallet/{token}
res = Api.createWallet("wallet_id" , "network") # replace wallet_id with your wallet id and network type
print(res)
transactionCheck
This method used for check a transaction is confirmed or not
endpoint : https://bitocredit.com/api/transaction/check/{token}
res = Api.transactionCheck("transaction_hash" , "wallet_address") # replace transaction_hash and wallet_address with your transaction hash and wallet address
print(res)transactionRecovery
This method used for check a transaction that is lost in blockchain
endpoint : https://bitocredit.com/api/transaction/recovery/{token}
res = Api.transactionRecovery("transaction_hash") # replace transaction_hash with your transaction hash
print(res)transactionFee
This method used for check a transaction that is lost in blockchain
endpoint : https://bitocredit.com/api/transaction/fee/{token}
res = Api.transactionFee()
print(res)transactionExample
Please only use this api for test ! it's only an example to show how the server sends data to callback after payment confirmation
endpoint : https://bitocredit.com/api/transaction/example/callback
res = Api.transactionExample("transaction_hash") # replace transaction_hash with your transaction hash
print(res)