В Python есть удобный почтовый debug-сервер. Он поможет проверить работу почты вашего web-проекта на этапе разработки без необходимости настраивать внешние сервисы или взаимодействие с реальными серверами Google или Yandex. Этот сервер просто печатает все сообщения в консоль.
Таким образом удобно дебажить одноразовые ссылки активации или просто факт отправки письма по расписанию.
Запускается очень просто:
python3 -m smtpd -n -c DebuggingServer localhost:1025
Теперь настройте ваш проект на использование этого сервера. Например вот так настраивается Django:
# settings.py
if DEBUG:
EMAIL_HOST = 'localhost'
EMAIL_PORT = 1025
EMAIL_HOST_USER = ''
EMAIL_HOST_PASSWORD = ''
EMAIL_USE_TLS = False
DEFAULT_FROM_EMAIL = '[email protected]'
#django#tricks
🌐📖Collective Licensing for AI Era: RSL Launches New Rights Model
Real Simple Licensing (RSL) has launched a nonprofit collective rights platform aimed at protecting online publishers and creators in the age of generative AI. Through the RSL Standard, the organization enables content owners to collectively negotiate fair compensation when their work is used to generate AI outputs, setting market-wide licensing terms.
Modeled after organizations like ASCAP and BMI in the music industry, the RSL Collective introduces a unified rights framework for the digital era. For the first time, publishers and creators can pool rights into a single platform to establish fair market prices and simplify licensing for AI companies, ensuring they are not left out of the AI economy.
#AIEthics#Copyright#RSL#GenerativeAI#ResponsibleAI
🎉 Нашу статью приняли на EMNLP 2025 в Main Track.
💪 Выводим распознавание жестовых языков на новый качественный уровень. В статье достигаем state-of-the-art🌿 на жестовых языках разных стран, включая в первую очередь русский жестовый язык (РЖЯ). Показываем, что качественный претрейн и предобработка — залог успеха.
Спасибо авторам: @your_petros@ilyaovodov@nagadit@hukenovs@karinakvanchiani
📝Жестовый язык: похожее в непохожем и наоборот
📖Logos as a Well-Tempered Pre-train for Sign Language Recognition
До встречи на конференции!
#research#rsl#emnlp