I need to paste the output from a random text generator to the instagram login. Is there a way to do that ?
I haven't tried anything yet because I don't know how. Any help is appreciated. I need to do this automatically with a program, so far I've written this.
import random
import string
account_name='aggelos_drm_'
character_num=8
while signed_in==False:
acc_password=''.join([random.choice(string.ascii_letters + string.digits + '!' + '@' + '#' + '$' + '%' + '^' + '&' + '*' + '(' + ')') for n in range(character_num)])
sign_in()
while signed_in==True:
print('Ο κωδικός είναι',acc_password)
source https://stackoverflow.com/questions/77304397/pasting-a-password-to-instagram
Comments
Post a Comment