可迁移
couldn
这个作者很懒,什么都没留下…
展开
-
当一个程序调用另外一个程序时,文件相对路径该怎么写
这是我的测试文件目录,test.py的内容为 def create_file(): with open("../../test.txt", "a+") as a: a.write("hello") 两个a.py的内容都为: from 文件路径.test.test.test import create_file create_file() 文件路径->test->test->a.py程序运行结果是生成“文件路径->test.txt”,而“文件路径..原创 2021-02-09 11:11:53 · 474 阅读 · 0 评论 -
setup.py 打包Python包,提高项目迁移性,提高团队协作效率
以一个例子展开,方便上手。 a.py的内容: def b(name): print("hello",name) setup.py的内容: from setuptools import setup setup( name='addtest', version='1.0.0', description='test', author='zhang', packages=['addTest'], install_requires=[原创 2021-01-12 16:35:46 · 289 阅读 · 1 评论