Hello again.
I have never written major projects, and now I have before me the question of how the structure of files and directories in a project should look like, what to put and what to invest in. Googling was very difficult for me, so I walked through the repositories of large projects on the githaba and got some intersection of folders:
- src - as I understand it, the main source code of the product is what we install, connect, etc .;
- test - unit tests and, probably, all the others;
- docs - project documentation and its source code;
- examples are examples, I'm sure of that; :)
- Bin is a folder that is everywhere, but its contents are incomprehensible.
Actually, having this list, I want to ask you if I understood everything correctly and what other rules and regulations are there about this.
I am also interested in a specific case: I have files in the project that are not used directly in the project code, but are needed during the development process (for example, I communicate with third-party sites and experiment with how to analyze third-party information, output metadata about this information, etc., this file is not related to the main code, but it greatly simplifies the development, and I would like to have it in the repository) - in which directory to put them?
UPDATE - I write in python, without being tied to frameworks like django.

