mesibo is a real-time communication platform with APIs for messaging and calls
Project description
mesibo Python Package
mesibo offers everything to make your app real-time and scalable. It's modular, lightweight, and easy to integrate.
mesibo supports almost all popular platforms and languages for you to quickly build your applications. Whether you are developing mobile apps (Android, iOS, Java, Objective-C, C++), web apps (Javascript), integrating with backend (Linux, macOS, Windows, Python, C++), or creating cool devices using Raspberry Pi, mesibo has APIs for you.
mesibo's high-performance Python library enables you to interface your chat clients with various scientific computing and machine learning systems on your backend like TensorFlow, Matlab, Octave, NumPy, etc to create a powerful chat experience and analysis.
- Website: https://mesibo.com
- Documentation: https://mesibo.com/documentation/
- Tutorials: https://mesibo.com/documentation/tutorials/get-started
Supported Platforms
Mesibo Python Package supports the following platforms.
- CentOS / RedHat 7.x or above
- Debian / Ubuntu
- Mac OS - both x86_64 and arm64 (M1) versions
- Raspberry Pi 3 and 4 (64-bit)
Example
Below are some examples of typical usage. For more examples, see the examples directory on the GitHub repo.
Sending and Receiving Messages
#!/usr/bin/python3
import mesibo
from mesibo import MesiboListener
class PyMesiboListener(MesiboListener):
def Mesibo_onConnectionStatus(self, status):
"""A status = 1 means the listener
successfully connected to the mesibo server
"""
print("## Mesibo_onConnectionStatus: ", status)
return 0
def Mesibo_onMessage(self, msg):
"""Invoked on receiving a new message
or reading database messages
msg: Message Object
"""
try:
if(msg.isRichMessage()):
print("\n ## message:", msg.message)
print("\n ## title:", msg.title)
print("\n ## subtitle:", msg.subtitle)
print("\n ## path:", msg.file.path)
print("\n ## url:", msg.file.url)
#print("\n ## tn:", msg.file.thumbnail)
else:
print("\n ## Received data:", msg.data)
except:
pass
print("\n ## Mesibo_onMessage: ", msg)
return 0
def Mesibo_onMessageUpdate(self, msg):
"""Invoked on receiving a message update
"""
print("\n ## Mesibo_onMessageUpdate: ", msg)
return 0
def Mesibo_onMessageStatus(self, msg):
"""Invoked when the status
of an outgoing or sent message is changed.
"""
print("## Mesibo_onMessageStatus", msg)
return 0
def Mesibo_onPresence(self, msg):
print("## Mesibo_onPresence", msg)
return 0
# Get access token and app id by creating a mesibo user
# See https://mesibo.com/documentation/tutorials/get-started/
ACCESS_TOKEN = "<use your user token>"
APP_ID = "com.mesibo.python"
# Create a Mesibo Instance
api = mesibo.getInstance()
# if you are sending or receiving binary/signalling data, set the format. By default, mesibo
# auto detects and sets to Unicode string or bytes[]
# You can override it by setting mesibo.MESIBO_READAS_BYTES or mesibo.MESIBO_READAS_UNICODE
# mesibo.readDataAs(mesibo.MESIBO_READAS_AUTO)
#input("Press Enter to continuee...\n")
# Enable or disable End-to-end-encryption
#e2ee = api.e2ee();
#e2ee.enable(1)
# Set Listener
listener = PyMesiboListener()
api.addListener(listener)
# Set your AUTH_TOKEN obtained while creating the user
if(-1 == api.setAccessToken(ACCESS_TOKEN)):
print("===> Invalid ACCESS_TOKEN: ", ACCESS_TOKEN)
print("See https://mesibo.com/documentation/tutorials/get-started/")
exit(1)
# Set APP_ID which you used to create AUTH_TOKEN
api.setAppName(APP_ID)
# Set the name of the database
api.setDatabase("mesibo", 0)
# Start mesibo,
api.start()
msg = api.newMessage("destination")
#msg.title = "some title";
msg.message = "First Message";
#msg.data = "raw data"
#msg.data = bytearray(b'Hello')
#msg.data = bytes([0x68, 0x65]);
input("Press Enter to send a message...\n")
#msg.setContent("https://www.netflix.com/in/title/81312835?s=i&trkid=13747225&vlang=en&clip=81641466&t=wha")
msg.send()
#e2ee.getPublicCertificate("/root/pycert.cert")
#print("fingerPrint: " + e2ee.getFingerprint("destination"))
#Wait for the application to exit
api.wait()
Installing using pip
See requirements to learn about installation requirements before you continue.
$ sudo python -m pip install mesibo
Installing from source
Alternatively, you can build and install the package by downloading the source code from the GitHub repo.
Download the source files from mesibo Python repo on GitHub
git clone https://github.com/mesibo/python.git
You will find the following directory structure:
|-- examples
|-- setup.py
|-- src
To build the mesibo Python package from source
sudo python setup.py build
To build and install the mesibo Python package from source
sudo python setup.py install
Tutorial
Write your First mesibo Enabled Application - Python
Troubleshooting
If you are facing issues installing the package, execute the following to print verbose logs.
$ sudo python -m pip install mesibo -v
Then, raise an issue here with the complete logs.
If you get a run-time error like
Unable to load: ... Platform not supported ...
then mesibo does not support this platform. Contact us at https://mesibo.com/support/ with your platform details, python version, installation logs, etc and we will help you out.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.