文件操作 - __init__.py
返回文件管理
返回主菜单
删除本文件
文件: /usr/lib/python2.7/site-packages/qrcode/__init__.py
编辑文件内容
from qrcode.main import QRCode, make from qrcode.constants import * from qrcode import image def run_example(data="http://www.lincolnloop.com", *args, **kwargs): """ Build an example QR Code and display it. There's an even easier way than the code here though: just use the ``make`` shortcut. """ qr = QRCode(*args, **kwargs) qr.add_data(data) im = qr.make_image() im.show() if __name__ == '__main__': import sys run_example(*sys.argv[1:])
修改文件时间
将文件时间修改为当前时间的前一年
删除文件