from a1topup_api import A1TopupAPI

# Initialize the API with your credentials
a1 = A1TopupAPI(username="505621", password="6l3xy8me")
A1TOPUP_USERNAME = ''
A1TOPUP_PASSWORD = ''
# Make a Recharge
# recharge_response = a1.make_recharge(
#     circlecode="13",       # Andhra Pradesh
#     operatorcode="RC",     # JIO
#     number="8096248999",   # Your mobile number
#     amount="1",
#     orderid="VP38999001BAA"   # Unique order ID
# )
# print("🔄 Recharge Response:", recharge_response)

# Check Balance
balance_response = a1.check_balance()
print("💰 Balance:", balance_response)

# Check Recharge Status
# status_response = a1.check_status(orderid="ORD123456")
status_response = a1.check_status(orderid="VP-3-8999-9D74BB")


print("📦 Status:", status_response)
