Uma biblioteca não-oficial python para facilitar o uso da API do AlertPix
Instale usando o pip:
pip install alertpix
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...")