How directory is organized
There are already some common directory structures for how to organize a better Python project directory structure. On this issue of StackOverflow, we can see the discussion of the Python directory structure.
Assuming that your project is named Foo, I would recommend the most convenient and quick directory structure that would suffice:
Foo/|-- bin/| |-- foo //启动脚本foo调用main.py||-- foo/| |-- tests/ //存放测试代码| | |-- __init__.py| | |-- test_main.py| || |-- __init__.py //创建Python包,自动含有__init__.py| |-- main.py //程序主入口||-- docs/ //文档目录| |-- conf.py| |-- abc.rst||-- setup.py //安装部署脚本|-- requirements.txt //依赖关系|-- README
Briefly explain:
bin/: Store some executable files of the project, of course you can name and script/ so on.
foo/: stores all source code for the project. (1) All modules and packages in the source code should be placed in this directory. Do not place the top level directory. (2) Its subdirectory tests/ holds unit test code, and (3) The entrance of the program is preferably named main.py .
docs/: Store some documents.
setup.py: Install, deploy, and package the scripts.
requirements.txt: A list of external Python packages that store software dependencies.
README: Project description file.
In addition, there are a number of scenarios that give more content. For example LICENSE.txt , ChangeLog.txt files and so on, I am not listed here, because these things are mainly open source projects need to use. If you want to write an open source software, how to organize the directory, you can refer to this article.
Now, let me briefly explain my understanding of these directories and my personal requirements.
About the content of the Readme
This is a document that I think should be available for each project, with the aim of briefly describing the project's information and giving the reader a quick overview of the project.
It needs to illustrate several things:
- Software positioning, the basic functions of the software.
- How to run your code: Installation environment, startup commands, and so on.
- Brief instructions for use.
- Code directory structure Description, more detailed can explain the basic principles of the software.
- FAQ's description.
I think the above points are the better one README . In the early stages of software development, it is not always possible to complete all the information in the first place because the above content may be ambiguous or changed during the development process. But at the end of the project, it is necessary to write such a document.
can refer to the Redis source code in the wording of the readme, which is concise but clearly describes the Redis function and source structure.
About Requirements.txt and setup.pysetup.py
In general, use it setup.py to manage the packaging, installation, and deployment of your code. The industry standard notation is to use Python's popular packaging tools Setuptools to manage these things. This approach is commonly used in open source projects. But the core idea here is not to use standardized tools to solve these problems, but to say that a project must have an installation deployment tool that can quickly and easily install the environment on a new machine, deploy the code, and run the program.
I've stepped on the pit.
When I first started working on Python writing projects, installing the environment, deploying the code, and running the program were all done manually and encountered the following issues:
- Install the environment often forget that recently added a new Python package, the result of running on the line, the program is wrong.
- Python package version dependencies, sometimes we use a version of the Python package, but the official is already the latest package, by manual installation may be wrong.
- If you rely on a lot of packages, it is time-consuming to install these dependencies one by one.
- When a new classmate starts writing a project, it is very troublesome to run the program because it may often forget how to install various dependencies.
setup.pyThese things can be automated to improve efficiency and reduce the probability of errors. "Complex things are automated and things that can be automated must be automated. "is a very good habit.
Setuptools documents are huge, just contact, it may not be very good to find an entry point. The way to learn technology is to see how others are used, you can refer to a Python web framework, How flask is written: setup.py
Of course, simply writing a setup script ( deploy.sh ) setup.py can be an alternative.
Requirements.txt
The purpose of this file exists is to:
- Easy for developers to maintain software package dependencies. Add the new packages in the development process to this list to avoid
setup.py missing packages when installing dependencies.
- Make it easy for readers to identify which Python packages the project uses.
The format of this file is that each line contains a description of the package dependencies, usually flask>=0.10 this format, the requirement is that the format can be pip recognized, so that you can simply pass pip install -r requirements.txt all the Python package dependencies are installed. Specific format description: click here.
about how to use the configuration file note that in the above directory structure, there is no
conf.pyPlaced in the source directory, but placed in
docs/Directory.
Many projects use the configuration file as follows:
- The configuration file is written in one or more Python files, such as the conf.py here.
- Which module in the project uses this configuration file directly
import conf in this form to use the configuration in the code.
I don't quite agree with this approach:
- This makes unit testing difficult (because the module internally relies on external configuration)
- On the other hand, the configuration file as the interface of the user control program, should be free to specify the path of the file.
- The reusability of the program components is too poor, because the code is hardcoded across all modules, making most modules dependent on
conf.py the file.
So, I think the use of configuration, the better way is that
- The configuration of the module is flexible and is not affected by external configuration files.
- The configuration of the program can also be flexibly controlled.
Can support this idea is, with Nginx and MySQL students know that nginx, MySQL these programs are free to specify the user configuration.
Therefore, you should not use the configuration file directly in your code import conf . In the above directory structure conf.py , is a configuration sample given, not to write dead in the program directly referenced by the configuration file. You can main.py let the program read the configuration by specifying the configuration path for the startup parameter. Of course, conf.py you can change a similar name here, for example settings.py . Or you can use other formats to write configuration files, such as settings.yaml .
(Transferred from Https://www.cnblogs.com/alex3714/articles/5765046.html)
python--Directory organization method