I have my own package in python and I am using it very often. what is the most elegant or conventional directory where i should put my package so it is going to be imported
I usually put the stuff i want to have ready to import in the user site directory:
~/.local/lib/pythonX.X/site-packages
To show the right directory for your platform, you can use python -m site --user-site
python -m site --user-site
edit: it will show up in sys.path once you create it:
sys.path
mkdir -p "`python -m site --user-site`"