Client for NHS England's MESH messaging system
Project description
MESH Client
A Python client for NHS Digital's MESH API.
Release Notes
see CHANGE-LOG for news on major changes
Installation
pip install mesh-client
Example use
from mesh_client import MeshClient, INT_ENDPOINT
# or LIVE_ENDPOINT
with MeshClient(
INT_ENDPOINT,
'MYMAILBOX',
'Password',
cert=('/etc/certs/cert.pem', '/etc/certs/key.pem') # Mesh uses SSL, so you'll need some certs
) as client:
client.handshake() # It will work without this, but Spine will complain
message_ids = client.list_messages()
first_message = client.retrieve_message(message_ids[0])
print('Subject', first_message.subject)
print('Message', first_message.read())
first_message.acknowledge()
# Alternatively, iterate
for message in client.iterate_all_messages():
with message: # With block will handle acknowledgement
print('Message', message.read())
client.send_message('RECIPIENT_MAILBOX', b'Hello World!', subject='Important message')
Testing your application
We recommend using the mesh sandbox have a look at this docker-compose.yml for an example of how to run the sandbox
Guidance for contributors
see CONTRIBUTING
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Mesh-Client-3.2.1.tar.gz
(93.5 kB
view details)
Built Distribution
File details
Details for the file Mesh-Client-3.2.1.tar.gz
.
File metadata
- Download URL: Mesh-Client-3.2.1.tar.gz
- Upload date:
- Size: 93.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4fd32b2a9d8fe4adc77f3aa6eee71a732fd9e91d144e3f9c3206d59b92bc8a1 |
|
MD5 | 34928cc595d579aa2943ca52b097a12a |
|
BLAKE2b-256 | cdaedf0309a38c70c24fbab6be753fc3af03170a2549563080c9ada7268a8236 |
File details
Details for the file Mesh_Client-3.2.1-py2.py3-none-any.whl
.
File metadata
- Download URL: Mesh_Client-3.2.1-py2.py3-none-any.whl
- Upload date:
- Size: 31.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c409909ba920a74fce0789a29c7542164e51c28e42e04d3cceeb3291b639dd8c |
|
MD5 | aa1a0ce32fcdc437d37e704567ee4ca1 |
|
BLAKE2b-256 | 98454f2b7164998300823bea18a6ef2261c09487259972999f7076e6efbfa22e |