Skip to main content

M360 middleware library for Python Django and Flask

Project description

m360.mw.python


The M360 Python Middleware is a dependency that gets consumed by a Python Web Server built using one of these frameworks Django and Flask.

The middleware is developed using native Python and includes interfaces that facilitate using it with the above mentioned frameworks.

Installation


pip install m360-middleware

Usage


Django

In your settings.py file, include the middleware and its configuration:

import os
# ...
MIDDLEWARE = [
   # ...
   # -------------------- M360 Middleware Setup --------------------
   'm360.frameworks.django.middleware.DjangoMiddleware',
   # ...
]
# ...
M360 = {
    "contract": os.path.join(os.path.dirname(__file__), "./contract.json"),
    "ip":  os.environ.get('APP_IP') or "127.0.0.1",
    "type": "django",
    "platform": "manual"
}

In your views, import and use the middleware:

from django.http import JsonResponse

# the sdk is initialized using the middleware when Django starts
from m360 import sdk
M360 = sdk.instance()

def get_settings(request):
    return JsonResponse(M360.registry.get(), status=200, safe=False)

Flask

In your settings.py file, include the middleware and its configuration:

import os
# ...
app = Flask(__name__)

from m360.frameworks.flask.middleware import FlaskMiddleware
app.wsgi_app = FlaskMiddleware(app.wsgi_app, {
    "contract": os.path.join(os.path.dirname(__file__), "./contract.json"),
    "ip": os.environ.get('APP_IP') or "127.0.0.1",
    "type": "flask",
    "platform": "manual"
})

In your views, import and use the middleware:

# the sdk is initialized using the middleware when Flask starts
import json
from m360 import sdk
M360 = sdk.instance()

@app.route('/m360/settings', methods=['GET', 'POST'])
def m360_settings():
    return json.dumps(M360.registry.get())

Containerized Deployment


Deploying on Docker

When deploying on Docker, please provide the extra options below. Without these options, the handshake between the middleware and the gateway will fail, along with any maintenance operation that gets triggered from the console onto this microservice.

Replace the platform:manual with platform:docker and add the below.

Option Data Type Mandatory Description
platform String YES value equals 'docker'
network String YES value equals the docker network attached to this docker service
service String YES value equals the name of the docker service
containerIP String NO value is the internal IP address of the docker container in the docker service

Example

'platform': 'docker',
'platformOptions': {
    'network': 'mike',
    'service': 'service-express',
    'containerIP': '127.0.0.1'
}

Deploying on Kubernetes

When deploying on Kubernetes, please provide the extra options below. Without these options, the handshake between the middleware and the gateway will fail, along with any maintenance operation that gets triggered from the console onto this microservice.

Replace the platform:manual with platform:kubernetes and add the below.

Option Data Type Mandatory Description
platform String YES value equals 'kubernetes'
namespace String YES value equals the kubernetes namespace where your deployment will run
service String YES value equals the name of the kubernetes service that is attached to the your deployment
exposedPort String YES value equals the exposed port kubernetes service
'platform': 'kubernetes',
'platformOptions": {
    'namespace': 'mike',
    'service': 'service-express',
    'exposedPort': 30402
}

Notes


The Middleware includes samples on how you can consume it with both Django and Flask.

These sample apps are located inside the examples folder in this repository.

Reference: M360 Middleware Official Documentation

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

m360-middleware-0.0.8.tar.gz (36.5 kB view details)

Uploaded Source

Built Distribution

m360_middleware-0.0.8-py3-none-any.whl (52.0 kB view details)

Uploaded Python 3

File details

Details for the file m360-middleware-0.0.8.tar.gz.

File metadata

  • Download URL: m360-middleware-0.0.8.tar.gz
  • Upload date:
  • Size: 36.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.2

File hashes

Hashes for m360-middleware-0.0.8.tar.gz
Algorithm Hash digest
SHA256 64f8904ad6d8df6d0fd82956a8de009fabce788602bf1e97206549a2a35b9683
MD5 2381010bd66ea8f38f3fd5f363e4d714
BLAKE2b-256 d74bafd38739db51fe4d8e9cc77dde1d064eddaf03ab91f71795043d5ab7744e

See more details on using hashes here.

File details

Details for the file m360_middleware-0.0.8-py3-none-any.whl.

File metadata

File hashes

Hashes for m360_middleware-0.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 fd9c16b6085f2b5a6c5ecef069111dc591751736b78fb9b206669274483f3556
MD5 19ac7859c29c6d07288d6e4d6be328b5
BLAKE2b-256 05d86ebd1a1a28aa70fa9650cc34559cf97ea2d888d109ed2cb56d53e612f315

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