RuntimeError: There is no current event loop in thread #39;Dummy-1#39;(运行错误:线程#39;Dummy-1#39;中没有当前事件循环。)
本文介绍了运行错误:线程';Dummy-1';中没有当前事件循环。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在开发一个使用Python后端和Django服务器的Web应用程序。我有几个树莓PI,它们将数据发送到服务器,然后我应该从后端获取这些数据。我在我的项目中成功地做到了这一点,所以我对代码很有把握。现在我想将此函数集成到我的项目中,因此文件如下:
loop = asyncio.get_event_loop()
class StartApp:
def __init__(self, interval=1):
self.interval = interval
Mqtt = multiprocessing.Process(target = self.runMqtt)
loop.run_until_complete(runCoap())
async def runCoap():
print('COUCOU C cOAP')
protocol = await Context.create_client_context()
requestTemp = Message(code=GET, uri='coap://129.6.60.38/other/sensors/temperature')
requestHumidity = Message(code=GET, uri='coap://129.6.60.38/other/sensors/humidity')
while True:
time.sleep(1)
try:
responseTemp = await protocol.request(requestTemp).response
responseHumidity = await protocol.request(requestHumidity).response
except Exception as e:
print('Failed to fetch resource:')
print(e)
else:
print('Result: %s
%r'%(responseTemp.code, responseTemp.payload))
print('Result: %s
%r'%(responseHumidity.code, responseHumidity.payload))
运行我的应用程序时出现此错误:
Unhandled exception in thread started by <function check_errors.<locals>.wrapper at 0x7f55cdc989d8>
Traceback (most recent call last):
File "/usr/local/lib/python3.5/dist-packages/django/utils/autoreload.py", line 228, in wrapper
fn(*args, **kwargs)
File "/usr/local/lib/python3.5/dist-packages/django/core/management/commands/runserver.py", line 147, in inner_run
handler = self.get_handler(*args, **options)
File "/usr/local/lib/python3.5/dist-packages/django/contrib/staticfiles/management/commands/runserver.py", line 28, in get_handler
handler = super(Command, self).get_handler(*args, **options)
File "/usr/local/lib/python3.5/dist-packages/django/core/management/commands/runserver.py", line 68, in get_handler
return get_internal_wsgi_application()
File "/usr/local/lib/python3.5/dist-packages/django/core/servers/basehttp.py", line 47, in get_internal_wsgi_application
return import_string(app_path)
File "/usr/local/lib/python3.5/dist-packages/django/utils/module_loading.py", line 20, in import_string
module = import_module(module_path)
File "/usr/lib/python3.5/importlib/__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 986, in _gcd_import
File "<frozen importlib._bootstrap>", line 969, in _find_and_load
File "<frozen importlib._bootstrap>", line 958, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 673, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 665, in exec_module
File "<frozen importlib._bootstrap>", line 222, in _call_with_frames_removed
File "/home/vincentnahmias/Workspace/IOT-Testbed-Dashboard/IOT-Testbed-Dashboard/wsgi.py", line 13, in <module>
from Dashboard.pySharkToDb.LAN_to_DB import StartApp
File "/home/vincentnahmias/Workspace/IOT-Testbed-Dashboard/Dashboard/pySharkToDb/LAN_to_DB.py", line 17, in <module>
loop = asyncio.get_event_loop()
File "/usr/lib/python3.5/asyncio/events.py", line 632, in get_event_loop
return get_event_loop_policy().get_event_loop()
File "/usr/lib/python3.5/asyncio/events.py", line 578, in get_event_loop
% threading.current_thread().name)
RuntimeError: There is no current event loop in thread 'Dummy-1'.
我尝试打印循环,但似乎没有创建循环,因此我假设Django和Asyncio之间存在冲突,因为我可以使用以下命令在项目外运行此完全相同的函数:
if __name__ == "__main__":
asyncio.get_event_loop().run_until_complete(main())
其中main是我命名为runCoap的方法的名称。
推荐答案
多亏了@user4815162342,解决方案如下:
def __init__(self, interval=1):
self.interval = interval
logging.basicConfig(level=logging.INFO)
loop = asyncio.new_event_loop();
asyncio.set_event_loop(loop)
loop.run_until_complete(self.runCoap())
loop.close()
Mqtt = multiprocessing.Process(target = self.runMqtt)
async def runCoap(self):
print('COUCOU C cOAP')
protocol = await Context.create_client_context()
requestTemp = Message(code=GET, uri='coap://129.6.60.38/other/sensors/temperature')
requestHumidity = Message(code=GET, uri='coap://129.6.60.38/other/sensors/humidity')
while True:
await asyncio.sleep(1)
try:
responseTemp = await protocol.request(requestTemp).response
responseHumidity = await protocol.request(requestHumidity).response
except Exception as e:
print('Failed to fetch resource:')
print(e)
else:
print('Result: %s
%r'%(responseTemp.code, responseTemp.payload))
print('Result: %s
%r'%(responseHumidity.code, responseHumidity.payload))
这篇关于运行错误:线程';Dummy-1';中没有当前事件循环。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:运行错误:线程';Dummy-1';中没有当前事件循环。
基础教程推荐
猜你喜欢
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 如何在Python中绘制多元函数? 2022-01-01