Skip to main content

mercury-py (Mercury for Python) is a Python based microservice that allow to manage scheduled notifications sending.

Project description

Mercury release

mercury-py logo

GitHub release (latest by date) PyPI PyPI - Status

PyPI - Python Version PyPI - Implementation

Flask

GitHub license

GitHub issues

mercury-py

mercury-py (Mercury for Python) is a Python based microservice that allow to manage scheduled notifications' sending.

Introduction

The project consists of a Flask-based RESTful Web API, through which it is possible to manage the scheduling of notifications.

SQLite database is used internally.

MongoDB database is used to store scheduled notifications.

The dispatch of notifications is managed by Celery-based submodules:

  • A Celery Beat that acts as an activator for the Workers.
  • A Celery Worker for each category of notification, who takes care of managing the specific type of dispatch.

RabbitMQ message-broker is used for interprocess communications.

Notifications Categories

The categories of notifications that can currently be sent are:

  • Email.

Categories will be implemented:

  • SMS;
  • Push notification - Firebase Cloud Messaging (FCM);
  • Telegram message.

Setup instructions

Getting it

To download mercury, either fork this GitHub repo or simply download it from PyPI via pip:

pip install mercury-py

Install Dependencies

Mercury needs:

  • MongoDB: get it from the official site (https://www.mongodb.com/) or from the official repository of your Linux distro, for example, on Debian-like systems:
sudo apt install mongodb
  • RabbitMQ: get it from the official site (https://www.rabbitmq.com/) or from the official repository of your Linux distro, for example, on Debian-like systems:
sudo apt install rabbitmq-server

After that, to use Mercury, we need to create a RabbitMQ user, a virtual host and allow that user access to that virtual host:

From terminal, type (substitute in appropriate values for [MYUSER] and [MYPASSWORD] below):

sudo rabbitmqctl add_user [MYUSER] [MYPASSWORD]
sudo rabbitmqctl add_vhost mercury
sudo rabbitmqctl set_permissions -p mercury [MYUSER] ".*" ".*" ".*"

See the RabbitMQ Admin Guide for more information about access control (http://www.rabbitmq.com/admin-guide.html#access-control).

Setting up

Copy and paste file config-*.py, from folder configs, into folder mercury-instance and modify it according to your needs.

Configure the Secret Key

SECRET_KEY should be changed to some random bytes in production.

You can use the following command to output a random secret key:

$ python -c 'import os; print(os.urandom(16))'

Then place returned value into your config.py.

Starting Celery Worker Alternative

Source

You can also embed beat inside the worker by enabling the workers -B option, this is convenient if you’ll never run more than one worker node, but it’s not commonly used and for that reason isn’t recommended for production use:

celery -A mercury.app.celery worker -B --logfile=instance\logs\celery.log --pidfile=instance\celerybeat\celery.pid --schedule=instance\celerybeat\celery-schedule.db --loglevel=DEBUG

Note: Windows Systems

On Windows systems, an additional dependency must be installed in order for Celery-based submodules to function properly.

Download and install Gevent from PyPI via pip:

pip install gevent

And run (Celery Beat and Celery Workers) from terminal:

celery -A mercury.app.celery worker --logfile=instance/logs/celeryworker.log --loglevel=DEBUG --pool=gevent
celery -A mercury.app.celery beat --logfile=instance/logs/celerybeat.log --loglevel=DEBUG --pidfile=instance/celerybeat/celerybeat.pid --schedule=instance/celerybeat/celerybeat-schedule.db

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mercury-py-1.0.5.tar.gz (61.6 kB view details)

Uploaded Source

Built Distribution

mercury_py-1.0.5-py3-none-any.whl (69.5 kB view details)

Uploaded Python 3

File details

Details for the file mercury-py-1.0.5.tar.gz.

File metadata

  • Download URL: mercury-py-1.0.5.tar.gz
  • Upload date:
  • Size: 61.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.0

File hashes

Hashes for mercury-py-1.0.5.tar.gz
Algorithm Hash digest
SHA256 6618f130641ed36d91b2af4ab16a77e18f922f1f31a38b32cc551533a99a599d
MD5 52df16ea24c879302f9a196bbb0f8754
BLAKE2b-256 6d4b400b064dd7945021a0a7ddf15765dcfca40e739e3d6f572dcfe930016189

See more details on using hashes here.

File details

Details for the file mercury_py-1.0.5-py3-none-any.whl.

File metadata

  • Download URL: mercury_py-1.0.5-py3-none-any.whl
  • Upload date:
  • Size: 69.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.0

File hashes

Hashes for mercury_py-1.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 fab8889cd14e0894f0129dc91a5506ce904aff4cbf6ce875be3c744e3fa9cc16
MD5 dd09fef84afaed2a6849903b8165e64c
BLAKE2b-256 5b1c4c3a98c5f5d52176ae67464ca5de3085e7981222eb120e860aff197c668b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page