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.3.tar.gz (29.3 kB view details)

Uploaded Source

Built Distribution

m360_middleware-0.0.3-py3-none-any.whl (43.9 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for m360-middleware-0.0.3.tar.gz
Algorithm Hash digest
SHA256 fd5845e97533be1eb79c831de23c1dec08ea381e98bfba86db28745585e0478f
MD5 4df37880a33cc43bfded07e8e4ce6761
BLAKE2b-256 2fcbdc9fd10d1d920365d11ce67f9c03978d667086f71f9b4a01c7efabea8414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for m360_middleware-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 23c72491f42b91b84bbed260f5d0e57c0e1f9006439f00a683dbdcc220208229
MD5 c928515390ed69a0bf8243dc13c56de9
BLAKE2b-256 b7e25a9cd5a0802e2afae0518aae78e7bd89f92b2db8f1fba27799f295ab9bfc

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