Password Manager

Password Manager This is a password manager developed in Python using Tkinter for the graphical interface. It allows users to add, view, delete and change passwords for different services. Language Python. Features Add Password: Allows you to enter the service, username and password. View Passwords: Displays a list of all saved passwords. Remove Password: Remove […]
Intrusion Detection System

Intrusion Detection System (IDS) This project is an application to detect network packets using Python and Scapy. Language Python. Requirements Make sure you have Python installed on your machine. Requires the following libraries: scapy tkinter Code import tkinter as tk from scapy.all import sniff, AsyncSniffer import threading class IDSApp: def __init__(self, master): self.master = master […]
Encryptor

Encryptor A simple message encryption program written in Python. It uses the cryptography library to encrypt and decrypt messages, allowing users to protect their information. Language Python. Requirements Python 3.x pip (gestor de paquetes de Python) Clave.key ta36_ktgnBctCOdQqjcAYHIMKwG8o2NAOMjZKY9TYtc= Code import tkinter as tk from tkinter import messagebox from cryptography.fernet import Fernet # Generar clave def […]
Age Calculator

Age Calculator A simple Python project to calculate age. Language Python. Code from tkinter import * from datetime import date root=Tk() root.geometry(«800×600») root.resizable(False,False) root.title(«Age Calculator») photo=PhotoImage(file=»Age_Calculator.png») myimage=Label(image=photo) myimage.pack(padx=15,pady=15) def calculateAge(): today=date.today() birthDate=date(int(yearEntry.get()),int(monthEntry.get()),int(dayEntry.get())) age=today.year – birthDate.year-((today.month,today.day)
Image Viewer

Image Viewer A simple Python project for viewing images. Language Python. Code from tkinter import * from tkinter import filedialog import tkinter as tk from PIL import Image,ImageTk import os def showimage(): filename=filedialog.askopenfilename(initialdir=os.getcwd(),title=»Select image file»,filetype=((«JPG File»,»*.jpg»),(«PNG file»,»*.png»),(«All file «,»how are you .txt»))) img=Image.open(filename) img=ImageTk.PhotoImage(img) lbl.configure(image=img) lbl.image=img root=Tk() fram=Frame(root) fram.pack(side=BOTTOM,padx=15,pady=15) lbl=Label(root) lbl.pack() btn=Button(fram,text=»Select Image»,command=showimage) btn.pack(side=tk.LEFT) btn2=Button(fram,text=»Exit»,command=lambda:exit()) […]