Il 2005-10-20, mku <[EMAIL PROTECTED]> ha scritto:
> Hi,
>
> thereĊ½s a function inside a module. How can these function retrieve
> the path+name   of his module ? (The path is most important).
> That should also work if the module is part of a package.


[EMAIL PROTECTED]:~ $ cat > test.py
print __file__
import os
print os.path.abspath(__file__)

[EMAIL PROTECTED]:~ $ python test.py
test.py
/home/rhymes/test.py

Bye



-- 
Lawrence
http://www.oluyede.org/blog
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to