Excellent to the point video without wasting any time with nonsense. Learned exactly what I came here for, nothing more, nothing less. This is a perfect example of what all KZbin tutorial videos should be.
@Lorry1275 ай бұрын
Great video! Brief, informative, precise, and without BS. Keep up the fantastic work!
@rafaArt680 Жыл бұрын
Best channel for python developers ever, I learn a lot from you man!!
@tracyprice85482 жыл бұрын
This is awesome. This is similar to the project I am building in my current class. I added similar code to flask app along with html files to create webpages😊🎉
@carecavoador2 жыл бұрын
Awesome, man. As always very interesting content showing practical use of nice things.
@thienviet3429 Жыл бұрын
I want to inform other people, that the key needs to be more than 19 letters. You will get an error, if you the key has less than 20 letters.
@kiiikoooPT Жыл бұрын
this is very usefull, but I'm looking for kind of the oposite, like I want to make the authenticator itself, what I mean is, I want to make my own app where I can scan the qr code or something, and aply the uri there from any service, to keep them all in the same app, my own app. and you probably will ask why, well i have a bunch of acounts and 3 Auth apps, and some accounts dont work with some Auth apps, you need a specific auth app for that type of account, so I wonder if is possible to make your own Auth app and have all the accounts on it???
@Julie90092 жыл бұрын
Thank you 😊 This video came at just the right time for me. It will allow me to very easily add 2FA to an app that I'm currently developing.
@andrewcropper1632 ай бұрын
Is there a way to use secret key and password where it wouldn’t ask again? We have a central username for downloading reports from a system. But introduced MFA recently. The import process doesn’t work as it’s asking for MFA. Essentially we have an SSIS package using python to login normally and now it asks for MFA. Sorry I haven’t explained it well. But I tried using the shared secret code from the QR code but just asks for the 6 digit code and then stops
@vedantbarhate20282 жыл бұрын
hey brother can u plz. tell u r from which university and what are u learning like ur major and all.......
@Salmanmushtaq-cs3jm6 ай бұрын
I create the uri and generate the QRCODE, when I scan using google authenticator it shows "key not recognized"
@sanikamnjoshi2 ай бұрын
came in handy! thank you!
@Salmanmushtaq-cs3jm6 ай бұрын
when i generate qrcode and scan using google authenticator i received error "key not recognized"
@mindcreativestudios4709 Жыл бұрын
Thank you! So helpful and practical.
@Jmignet Жыл бұрын
Great Video! Is it advisable to have some sort of destruction mechanism on that QR Code? Otherwise, anyone that scans it would be able to add it to an authenticator app? Or does that QR Code already come with some sort of OTP encrypted?
@editsensei6876 Жыл бұрын
Plz Share code
@rabeemohammed53512 жыл бұрын
I want ask you question please Can I send sms messages for my phone use python Or use USB Or use kivy I mean same apk sms messages in phone📱
@PaulineLepre3 ай бұрын
I appreciate your efforts! 🙏 I wanted to ask something unrelated: 🤔 I have these words 🤨. (behave today finger ski upon boy assault summer exhaust beauty stereo over). What should I do with this? 🤷♂️
@1mrnewton2 жыл бұрын
Great Great🔥🔥
@c0rp0rat1on1 Жыл бұрын
I am trying to do this in bit different way but I get non base32 detection error and I am not able to log in to my broker plz help
@ПавелВылиток-р7ш Жыл бұрын
Thank you for great tutorial!
@aadityasahoo6244 Жыл бұрын
Hey what do i do when i try to scan the qr with google authenticator and it says that error: key not recognised? any solutions/ideas?
@mrpinkm4n Жыл бұрын
pyotp.totp.TOTP(base64.b32encode(secret_key)) google authenticator needs converted base32 key
@elricho72 Жыл бұрын
Great chanel !, awesome example, thank you
@mikepenprogrammer26522 жыл бұрын
Awesome! Thank you for the great content.
@limitlessplays0072 жыл бұрын
Please make a video on python with keycloak it has all these features and 2fa and main thing is its open source
@paulthomas10522 жыл бұрын
Very useful demo. Thanks :)
@strycinek Жыл бұрын
Very useful. Thank you for the tutorial
@acrobite26 Жыл бұрын
I get the following error: TypeError: argument should be a bytes-like object or ASCII string, not 'list' What do i do?😭
@BardUser-l7s Жыл бұрын
Thank you for the video.
@Stl712 жыл бұрын
Beautiful man! Can you make a video and explain how to have a different code for each computer?
@irfanshaikh2622 жыл бұрын
Great stuff
@rajat62492 жыл бұрын
How to increase time from 30 seconds to 3 minutes or more??
@ihazpowah Жыл бұрын
You can't increase the duration that a TOTP token is valid. However you can add an extra argument in the verify function to increase the window of tokens that will be valid: # accept the current, previous and next token (for most applications this should be sufficient): pyotp.verify(otp=, valid_window=1) # accept the current, previous 3 and next 3 tokens: pyotp.verify(otp=, valid_window=3)
@abdullahsaid8561 Жыл бұрын
the key has to be base64, not string
@kristianjackson6196 Жыл бұрын
Was wondering about this, thank you
@SalvillaJohnRey3 ай бұрын
I just wanna ask if this is free?
@naveensc86711 ай бұрын
Hi ModuleNotFoundError: No module named 'pyotp'
@khalidbouychou3 ай бұрын
install it
@LearnandCodeHub2 ай бұрын
pip install pyotp
@santaclausiscomingtotown3923 Жыл бұрын
love!
@1DannyJh Жыл бұрын
gracias!
@ozkanozdemir62552 жыл бұрын
Great...
@writetogupta4 ай бұрын
Great
@-sothea21432 жыл бұрын
👌💖
@shad-intech Жыл бұрын
Happy I will not be writing the logic provided py PyOTP from scratch.
@samrijijkot2 жыл бұрын
Comment for engagement
@tcgvsocg14582 жыл бұрын
too much import you show nothing...
@abishekmajee80643 ай бұрын
I have a problem with pip install pyotp, its showing some network error-WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno 11002] getaddrinfo failed')': /simple/pip/, please help to install pyotp
@jorgechavarriaga395 Жыл бұрын
Nice ! Thanks! Great video! Little question.. I'm trying to in my provisioning_uri to send an image.. (to be able to have it in the autentication app ..like microsoft, etc).. but so far without success ... i have not found any documentation related.. any ideas ? uri = totp.provisioning_uri(name=user, issuer_name=company, image=url) url = "XXXXX/myimage.png" i dont receive any error.. but also no image in the app