Is it possible to use WAMP / Crossbar to send small simple files, such as .txt
?
At the moment, I have this snippet of tutorial code in Python:
def sendSketch(self, datastring):
if datastring == "1":
payload = b'1'
How can I get Python to send out files instead of just a '1'?
This is a pressing need - any help on how to do this would be greatly appreciated.