We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can't log in with these codes:
from iqoptionapi.stable_api import IQ_Option
usern = input("username: ") passw = input("password: ") API = IQ_Option(usern, passw) ck1,ck2 = API.connect() if ck1 == True: print("log in success") balance = API.get_balance() print(balance) else: print("log in fail") quit()
if the password is wrong, it can print out ("log in fail") but if the password is correct, my program will not respond.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I can't log in with these codes:
from iqoptionapi.stable_api import IQ_Option
usern = input("username: ")
passw = input("password: ")
API = IQ_Option(usern, passw)
ck1,ck2 = API.connect()
if ck1 == True:
print("log in success")
balance = API.get_balance()
print(balance)
else:
print("log in fail")
quit()
if the password is wrong, it can print out ("log in fail") but if the password is correct, my program will not respond.
The text was updated successfully, but these errors were encountered: