Source code for darc.proxy.mail

# -*- coding: utf-8 -*-
"""Email Addresses
=====================

The :mod:`darc.proxy.mail` module contains the auxiliary functions
around managing and processing the email addresses.

Currently, the :mod:`darc` project directly save the email
addresses extracted to the data storage file
:data:`~darc.proxy.mail.PATH` without further processing.

"""

import multiprocessing
import os

from darc.const import PATH_MISC
from darc.link import Link

PATH = os.path.join(PATH_MISC, 'mail.txt')
LOCK = multiprocessing.Lock()


[docs]def save_mail(link: Link): """Save email address. The function will save email address to the file as defined in :data:`~darc.proxy.mail.PATH`. Args: link: Link object representing the email address. """ with LOCK: with open(PATH, 'a') as file: print(link.url, file=file)