You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EMV is a fast and robust email validation library for Python, utilizing a Rust backend to ensure optimal performance. This package is designed to enhance and speed up the functionality of the older `python-email-validator` library.
You can customize the email validation behavior using the `EmailValidator` class:
73
54
74
55
```python
75
-
from emv import EmailValidator
76
-
77
56
validator = EmailValidator(
78
57
allow_smtputf8=True,
79
58
allow_empty_local=False,
@@ -165,28 +144,10 @@ except Exception as e:
165
144
print(f"Validation error: {e}")
166
145
```
167
146
168
-
## Contributing
147
+
## Getting Help
169
148
170
-
Contributions are welcome and highly appreciated. To get started, check out the [**contributing guidelines**](https://github.com/your-repo/emv/blob/main/CONTRIBUTING.md).
171
-
172
-
You can also join us on [**Discord**](https://discord.com/invite/your-discord-invite).
173
-
174
-
## Support
175
-
176
-
Having trouble? Check out the existing issues on [**GitHub**](https://github.com/your-repo/emv/issues), or feel free to [**open a new one**](https://github.com/your-repo/emv/issues/new).
177
-
178
-
You can also ask for help on [**Discord**](https://discord.com/invite/your-discord-invite).
179
-
180
-
## Acknowledgements
181
-
182
-
EMV draws inspiration from the `python-email-validator` library and other email validation tools. We are grateful to the maintainers of these tools for their work and the value they provide to the Python community.
149
+
For questions and issues, please open an issue in the [GitHub issue tracker](https://github.com/your-repo/emv/issues).
183
150
184
151
## License
185
152
186
-
This repository is licensed under the [MIT License](https://github.com/your-repo/emv/blob/main/LICENSE). See the [LICENSE](LICENSE) file for more details.
0 commit comments