IT-новости про Python, которые стоит знать

Собрали в одном месте самые важные ссылки
консультируем про IT, Python

     26.04.2016       Выпуск 123 (25.04.2016 - 01.05.2016)       Интересные проекты, инструменты, библиотеки

django-jabber - посылаем Jabber оповещения из Django Django Jaber notification

from django_jabber import send_message

recipients = ['user1', 'user2', ] # without @domain.com part
send_message(u'Hello there', recipients)

# You can also pass this job to your Celery instance
send_message.delay(u'Async message', recipients)