Skip to content

JoaquimCassano/Alertpix.py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Alertpix.py

OS
Uma biblioteca não-oficial python para facilitar o uso da API do AlertPix

Instalação

Instale usando o pip:

pip install alertpix

Exemplos

Criar um pagamento

import alertpix, time

pagamento = alertpix.Charge(link="apenasumnerdd", amount=100, comment="teste", username="fulano")

pagamento.create()
print("BrCode para o pagamento: ", pagamento.brcode.code)

while True:
    time.sleep(1)
    if pagamento.check():
        print("Pagamento concluído")
        break
    else:
        print("Aguardando pagamento...")

About

Python SDK for the Alertpix's api

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages