def restapiplugin_target() -> Generator:
"""Simulate the endpoints triggered by RESTAPIPlugin."""
fauxmo_device = Process(target=httpbin.core.app.run,
kwargs={"host": "127.0.0.1", "port": 8000},
daemon=True)
fauxmo_device.start()
time.sleep(1)
yield
fauxmo_device.terminate()
fauxmo_device.join()
评论列表
文章目录