RaunDev – Developer Portfolio
Frontend Projects


	import random, string
chars = string.ascii_letters + string.digits
password = "".join(random.choices(chars, k=12))
print(password)
	|
  

Password Generator

Tech Stack: Python, PyInstaller, Tkinter

This desktop application, built with Python and featuring a clean Tkinter-based GUI, allows users to generate secure, customizable passwords with a single click. Users can specify the desired password length, and the generated passwords include symbols, numbers, and uppercase characters — meeting most common password validation requirements.

The project was packaged using PyInstaller, making it easy to distribute as a standalone `.exe` for Windows users. It’s lightweight, fast, and perfect for anyone who wants strong passwords without the hassle.

⬇️ Download ZIP  |  View on GitHub

Note: This file is safe and hosted securely on raundev.com. If your browser flags it, you can safely allow the download.

App Preview

Password Generator Screenshot