Python Password generator using secrets | Unhackable password generator | Advanced level #python

preview_player
Показать описание
Viewer Description-
Read out all the important points and important message through out this description, and practice it carefully. All the Best.

In this video, I have explained each and everything in detailed also used advanced library to generate password, In my previous video I have used "random" module but lots of comment were dropped down, and asked to create a video with the help of secrets module in python.

Time lines in this video -
00:00 Preview
00:24 Video starts
02:04 Simple Password Generator
02:32 More complex passwords
02:59 Simple Pin generator
03:43 Making attractive
04:47 Password and Pin generator in one
09:40 Running it
09:50 First and Most advanced password and pin generator video on YouTube

FAQs -
1) What is Python ?

2) Modules / Libraries used in this program - Strings and Secrets
(Learn more)

3) Software used to code ?
VS code or visual studio code

Follow me on
YouTube - Click on Subscribe button 👍

Voice over artist - TTS (Text-to-Speech)
Video performed & Created by - Harshit (Owner)

Copyright Disclaimer under Section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.
Рекомендации по теме
Комментарии
Автор

Ask your doubts or any queries. Follow me.

harshitbhaihackerxguy
Автор

Your programmes can run on python version 2.7.15 shell..???

yashbanait...
Автор

okay so copy the thing 6 times and number it like pin0 pin1 pin2 and like this u have random password and pin generator!

Smite-Gee
Автор

Are we allowed to use the code? For our own projectS

averigonzalez
Автор

this is how you typing + read stackoverflaw at the same time.

jobemesser
Автор

He is using a second moniter to look at the code online, That's why there's random pauses in coding.

PotatoGodGGS
Автор

what python version did you use? In python 3.10 it doesen't work

itz_Crih
Автор

why did you not added alpha newmaric character?

prajwaldeshpande
Автор

i made it chrs = string.ascii_letters + string.digits because i wanted numbers in my password

ShadowKiyotaka
Автор

PEP 8 E401: Multiple imports on one line.

Also:
- better use *int(input())* for easier debugging
- better use *match case* instead of *if-elif-else* chain
- extra memory because of generating two passwords instead of one requested (small mistake in this situation but needed to be pointed out)

SyberiaK
Автор

Bhai ye modules ya library install krne ka step btaye plzz

navedkhan
Автор

Brother, can I make him guess on a specific file?

Palestine-is-free
Автор

I made a version with 710 characters because this one is limited to 71

caspiansk
Автор

how to crack pdf password with python by android

mohamedseddig
Автор

import string, secrets

chrs = string.ascii_letters
numbers = string.digits

choose = input("What do you want to print? : ")
length = input("Choose your password/pin length: ")

password_in_chrs = "".join(secrets.choice(chrs) for i in range(length)))
password_in_numbers = "".join(secrets.choice(chrs) for i in range(length)))

Password Generator

if choose == "password":
print(password_in_chrs)

if choose == "pin":
print(password_in_numbers)

диамус