Skip to content

Latest commit

 

History

History
60 lines (43 loc) · 1.56 KB

README.md

File metadata and controls

60 lines (43 loc) · 1.56 KB

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.