Simple anti virus
Simple Anti Virus Overview This project is a simple antivirus system built using Python. The goal of the project is to teach how basic antivirus mechanisms work, such as monitoring file changes in real-time to detect suspicious activities. It is an educational project that demonstrates how viruses might behave and how antivirus software can potentially mitigate them. Features Real-time file system monitoring using watchdog. Detects and logs changes to files such as creation, modification, and deletion. Colored output in the terminal for better visibility of events. Can be extended to include other antivirus techniques like scanning files for known signatures, detecting malicious behavior, etc. Installation Clone this repository: bash git clone https://github.com/Nelzouki22/Antivirus-Project.git Navigate to the project folder: bash cd Antivirus-Project Install the required dependencies: bash pip install -r requirements.txt You will need colorama and watchdog for terminal colo...