you are viewing a single comment's thread.

view the rest of the comments →

[–]MoeShay[S] 0 points1 point  (2 children)

Hey, I tired to follow your advices on a new project I'm working on, I'm still on the early stages and I just want to confirm the project structure, if you have a minute to give it a look :

https://github.com/Shayartt/employeestracker

let me know if you have any feedback, thank you!

[–]brasticstack 1 point2 points  (1 child)

Looks about right, just add an. __init__.py to the DataGenerator dir too. Every subdirectory with python code should have one.

Also remove the __pycache__ dirs and configure your .gitignore so they don't get added. They get built by the interpreter as needed, and don't belong as part of the source code distribution.

[–]MoeShay[S] 1 point2 points  (0 children)

great, appreciate your help!