Best Python code snippet using localstack_python
hwserver_proxy.py
Source:hwserver_proxy.py
...27 backend_socket = Ctx.socket(zmq.DEALER)28 backend_socket.bind(Backend_Url)29 loop.add_callback(partial(run_proxy, socket, backend_socket))30@gen.coroutine31def run_proxy(socket_from, socket_to):32 poller = Poller()33 poller.register(socket_from, zmq.POLLIN)34 poller.register(socket_to, zmq.POLLIN)35 while True:36 events = yield poller.poll()37 events = dict(events)38 if socket_from in events:39 msg = yield socket_from.recv_multipart()40 print('(run_proxy) received from frontend -- msg: {}'.format(msg))41 yield socket_to.send_multipart(msg)42 print('(run_proxy) sent to backend -- msg: {}'.format(msg))43 elif socket_to in events:44 msg = yield socket_to.recv_multipart()45 print('(run_proxy) received from backend -- msg: {}'.format(msg))...
run_proxy_buleprint.py
Source:run_proxy_buleprint.py
1# -*- coding: utf-8 -*-2# __author__ = 'Gz'3import json4import os5import signal6from sanic import Sanic7from sanic.response import json as sanic_json, text as sanic_text8from sanic.blueprints import Blueprint9from DataBaseFunction.Redirect_data_sql import select_redirect_all10import subprocess11import multiprocessing12PATH = os.path.dirname(os.path.abspath(__file__))13run_proxy = Blueprint('run_proxy')14cmd = 'mitmdump -p 8192 -s ' + PATH + '/../proxy_run.py'15multiprocessing.freeze_support()16pool = multiprocessing.Pool(1)17proxy_pid = 018@run_proxy.route('/')19async def proxy(request):20 global proxy_pid21 global pool22 if proxy_pid != 0:23 os.kill(proxy_pid, signal.SIGKILL)24 p = subprocess.Popen(cmd, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE)25 # p = subprocess.Popen(cmd, shell=True)26 proxy_pid = p.pid27 print(proxy_pid)28 if proxy_pid == 0:29 code = 'error'30 message = 'å¯å¨å¤±è´¥'31 else:32 code = 'ok'33 message = ''34 return sanic_json({'code': code, "message": message})35@run_proxy.route('/stop')36async def stop_proxy(request):37 global proxy_pid38 if proxy_pid == 0:39 code = 'error'40 message = '没æå¯å¨çProxyè¿ç¨'41 else:42 os.kill(proxy_pid, signal.SIGKILL)43 # os.popen('kill -9 %s' % str(proxy_pid))44 print(proxy_pid)45 proxy_pid = 046 code = 'ok'47 message = 'å·²å
³éProxyè¿ç¨'...
server_run.py
Source:server_run.py
1# -*- coding: utf-8 -*-2# __author__ = 'Gz'3from sanic import Sanic, response4from server.redirect_buleprint import redirect5from server.request_buleprint import realtime6from server.run_proxy_buleprint import run_proxy7from server.har_buleprint import har8from sanic_cors import CORS, cross_origin9app = Sanic()10if __name__ == "__main__":11 app = Sanic()12 CORS(app)13 app.blueprint(redirect, url_prefix='/redirect')14 app.blueprint(realtime, url_prefix='/realtime')15 app.blueprint(run_proxy, url_prefix='/run_proxy')16 app.blueprint(har, url_prefix='/har')17 app.static('/dist', './dist')...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!