Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
django-multi-email-field
Advanced tools
|build| |coverage| |pypi|
Field and widget to store a list of e-mail addresses in a Django <https://www.djangoproject.com>
_ project.
It provides:
For now:
::
pip install django-multi-email-field
multi_email_field
to your INSTALLED_APPS
:::
# settings.py
INSTALLED_APPS = (
...
'multi_email_field',
)
::
# forms.py
from django import forms
from multi_email_field.forms import MultiEmailField
class SendMessageForm(forms.Form):
emails = MultiEmailField()
If you want to store a list of e-mails, you can use this:
::
from django.db import models
from multi_email_field.fields import MultiEmailField
class ContactModel(models.Model):
emails = MultiEmailField()
* Created by `Florent Lebreton <https://github.com/fle/>`_
* Maintained by `Makina Corpus <https://github.com/makinacorpus/>`_
|makinacom|_
.. |makinacom| image:: http://depot.makina-corpus.org/public/logo.gif .. |coverage| image:: https://coveralls.io/repos/github/fle/django-multi-email-field/badge.svg?branch=master :target: https://coveralls.io/github/fle/django-multi-email-field?branch=master .. |pypi| image:: https://pypip.in/v/django-multi-email-field/badge.png :target: https://crate.io/packages/django-multi-email-field/ .. |build| image:: https://travis-ci.org/fle/django-multi-email-field.svg?branch=master :target: https://travis-ci.org/fle/django-multi-email-field .. _makinacom: http://www.makina-corpus.com
FAQs
Provides a model field and a form field to manage list of e-mails
We found that django-multi-email-field demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.