Posts

Showing posts from 2020

To-Do-list

You can visit the following link to see the todo list project code link: https://github.com/Rajesh-Maradana/to-dol-ist

random_password_generator using python and pyqt5

import random as r import string as s import sys from PyQt5.QtWidgets import * def random_generate():     l_password=[]     len_passwd,dailog_box = QInputDialog.getInt(window,"Dailog","Enter the  length of the Password ")     if len_passwd<=0:         mbox_1 = QMessageBox()         mbox_1.setText("Your Password Is")         mbox_1.resize(150,150)         mbox_1.move(250,200)         mbox_1.setStyleSheet("background-color:#B34AFE;")         mbox_1.setDetailedText("Invalid Length")         mbox_1.exec()     else:         for i in range(len_passwd):             l_password.append(r.choice(s.digits+s.ascii_letters))         mbox = QMessageBox()         mbox.setText("Your Password...