Skip to content

This project is a Python-based utility designed to validate Gmail addresses using the re (regex) module. It ensures that email addresses meet Gmail's formatting standards, making it a handy tool for developers and testers handling email inputs.

License

Notifications You must be signed in to change notification settings

LSUDOKO/Email_Validate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Gmail Validation using Python (Regex Module)

📜 Project Description

This project is a Python-based utility designed to validate Gmail addresses using the re (regex) module. It ensures that email addresses meet Gmail's formatting standards, making it a handy tool for developers and testers handling email inputs.


🚀 Features

  • Validates email format specific to Gmail (@gmail.com domain).
  • Detects invalid characters and patterns.
  • Lightweight and efficient with no additional dependencies beyond Python's standard library.

🛠️ Technologies Used

  • Language: Python
  • Modules: re (regex)

📂 File Structure

📦 Gmail-Validation
├── 📄 main.py          # Main script for email validation
├── 📄 README.md        # Project documentation

🧰 How to Run

  • Clone the repository
  git clone https://github.com/your-username/Gmail-Validation.git
  • Run the script
    python main.py

📜 Regex Pattern

The heart of this project is the regular expression (regex) pattern used to validate Gmail addresses. The pattern ensures the following:

Pattern Breakdown

^[a-zA-Z0-9._%+-]+@gmail\.com$

👨‍💻 Contributing

Contributions are welcome! Feel free to fork the repository and submit pull requests.

📄 License

This project is licensed under the MIT License. See the LICENSE file for details.

🌟 Acknowledgments

Python documentation for the re module. StackOverflow for community-driven regex solutions.

About

This project is a Python-based utility designed to validate Gmail addresses using the re (regex) module. It ensures that email addresses meet Gmail's formatting standards, making it a handy tool for developers and testers handling email inputs.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages