baseimage-tutorial-framework/lib/tfw/util.py

21 lines
490 B
Python
Raw Normal View History

import json, xmlrpc.client, zmq
2018-01-31 14:50:52 +00:00
from .config.envvars import SUPERVISOR_HTTP_URI
2017-11-27 17:42:34 +00:00
def create_source_code_response_data(filename, content, language):
return {
'filename': filename,
'content': content,
'language': language
}
class SupervisorMixin:
supervisor = xmlrpc.client.ServerProxy(SUPERVISOR_HTTP_URI).supervisor
class ZMQConnectorBase:
def __init__(self, zmq_context=None):
self._zmq_context = zmq_context or zmq.Context.instance()