modernpythonproject.hashnode.devCreate a modern Python projectLet's look at the project tree! The following project architecture is modifiable, however, it is already a good starting point! my_python_project/ ├── .venv/ ├── src/ │ ├── utils/ │ │ └── __init__.py │ ├── index.py │ └── __init__.py ├── log...Jul 15, 2025·11 min read
path-guide-for-python-developers.hashnode.devPath Handling Using PythonWhat is effectively a path? In computer science, a path is a string or object that describes the location of a file or directory in a filesystem. Paths are essential for reading or writing files, navigating directories, and referencing resources. Wha...Jun 19, 2025·3 min read