Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 1.59 KB

File metadata and controls

17 lines (15 loc) · 1.59 KB

Python Mini Projects

Below are some Python based mini projects based on various domain.

Table of Contents

Projects

Name Description
Batch Rename This is a Python code that renames all files in the current directory.
Email Extractor This is a Python code that extracts email addresses from a given text. The code uses a regular expression to match the pattern of an email address.
File Explorer The code uses the os and shutil modules to perform file operations, such as opening, moving, copying, deleting, and creating files and directories.
Folder Manager This is a Python code for a file organizer. The code uses a dictionary to map file extensions to directories.
Image Editor This is a Python code for a simple image editor. The code uses the PIL library to perform image editing operations.
Number to Words This is a Python code for converting a number to words. The code uses a recursive function.
Password Generator The code uses a list of characters to represent the different types of characters that can be used in a password, such as numbers, lowercase alphabets, uppercase alphabets, and special symbols.
Password Validator The code uses a regular expression to check if the password contains at least one digit, one uppercase letter, one lowercase letter, and one special symbol. The code also checks if the password is at least 6 characters long.