Skip to content
Snippets Groups Projects
Select Git revision
  • 16b04ba7860321cf902019c454c65f1081dbbe18
  • master default protected
2 results

create_slot.py

Blame
  • create_slot.py 225 B
    import nett_python as nett
    import string_message_pb2
    
    nett.initialize("tcp://127.0.0.1:65551")
    
    message = string_message_pb2.string_message()
    message.value = 'hi there'
    
    byte_stream = message.SerializeToString()