How to organize a Python Project?

后端 未结 8 1920
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-22 16:35

I\'m new to Python and I\'m starting a mini Project, but I have some doubts on how to organize the folders in the \"Python Way\".

I\'m using PyDev in my

8条回答
  •  醉梦人生
    2020-12-22 16:50

    The cookiecutter project by audreyr includes several Python project templates:

    • https://github.com/audreyr/cookiecutter#python

    The package uses a single ~/.cookiecutterrc file to create custom project templates in Python, Java, JS, and other languages.

    For example, a Python template compatible with PyPI:

    • https://github.com/audreyr/cookiecutter-pypackage

提交回复
热议问题