I've created a poetry project with "poetry new my_project", great now I have the file structure shown below. I've created a core.py file inside src/my_project and create a function called "hello_world". My question is: lets I want to make a quick check to see if the function is working properly, so I want to create a sandbox.py file, import my_package and call the function. What is the professional way of doing so? where would you guys create that sandbox.py file? I've been trying different ways of doing it but I keep getting "no module found" errors. I've tried creating it in the tests/ folder, same error also
βββ my_first_project
βββ README.md
βββ pyproject.toml
βββ sandbox.py
βββ src
βΒ Β βββ my_first_project
βΒ Β βββ init.py
βΒ Β βββ core.py
βββ tests
βββ init.py