Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下脚本:
#!/usr/bin/python from coap import coap c = coap.coap() p = c.GET('coap://bbbb::1415:92cc:0:2/.well-known/core') print ''.join([chr(b) for b in p])
但是,当我运行它时,它在第 3 行()中给出了以下错误from coap import coap:No module coap
from coap import coap
No module coap
如何coap在脚本中导入?
coap