我想使用nfcpy库来读/写 NFC 标签。但我只是得到了一些python的源代码。
如何将它构建到可以添加import nfc
到程序中的 python 模块中?
这里解释了如何制作 Python 代码的模块:http: //learnpythonthehardway.org/book/ex40.html
你的模块(这里应该是你的python代码):
# this goes in mystuff.py
def apple():
print "I AM APPLES!"
以这种方式访问它:
import mystuff
mystuff.apple()