0

我想使用nfcpy库来读/写 NFC 标签。但我只是得到了一些python的源代码。

如何将它构建到可以添加import nfc到程序中的 python 模块中?

4

1 回答 1

1

这里解释了如何制作 Python 代码的模块:http: //learnpythonthehardway.org/book/ex40.html

你的模块(这里应该是你的python代码):

# this goes in mystuff.py
def apple():
    print "I AM APPLES!"

以这种方式访问​​它:

import mystuff
mystuff.apple()
于 2013-04-20T07:20:51.557 回答