First time here? Check out the FAQ!
1

Obtain the script dirname interactively from wing IDE.

I have a python script in the following location:

 $ realpath pymatgen-affine_matrix.py 
/home/werner/pymatgen-gap-affine_matrix/pymatgen-affine_matrix.py

When I use this script to do some development work in the wing IDE, it's convenient to read some related files on the system based on the directory location of this script. For this purpose, I try to use the following code snippet in this script:

import os,sys
script_dirname1=os.path.dirname(os.path.realpath(__file__))
script_dirname2=os.path.dirname(os.path.abspath(sys.argv[0]))
print(script_dirname1)
print(script_dirname2)

But the above code snippet doesn't work while running them interactively with wing IDE:

import os,sys
script_dirname1=os.path.dirname(os.path.realpath(__file__))
script_dirname2=os.path.dirname(os.path.abspath(sys.argv[0]))
Traceback (most recent call last):
  Python Shell, prompt 8, line 2
builtins.NameError: name '__file__' is not defined
print(script_dirname1)
Traceback (most recent call last):
  Python Shell, prompt 9, line 1
builtins.NameError: name 'script_dirname1' is not defined
print(script_dirname2)
/home

I want to know if there are any clever methods to solve this problem.

P.S. I have understood the problem according to the comments here:

I think what you want to do is run in the debugger, set a breakpoint on the last line, and use the Debug Probe. Evaluating in the Python Shell is (roughly) the equivalent of copying the text from the file and then pasting it into the Python Shell so there's no __file__ set.

We plan to add an option to the debugger to stop just before the program exits.

Cheers,

John

Regards, HZ

hongyi-zhao's avatar
507
hongyi-zhao
asked 2022-05-16 04:42:30 -0500
Wingware Support's avatar
4k
Wingware Support
updated 2022-05-19 14:29:13 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

1

This snippet doesn't work in the interactive shell because the interactive shell isn't executing code from a file and thus doesn't set the __file__ variable (__file__ is set to the filename where the code comes from). My suggestion is to always run code using __file__ in the debugger (or from the command line). You can also set __file__ in the interactive shell via a simple __file__ = '/path/to/file.py' before executing the snippet.

Wingware Support's avatar
4k
Wingware Support
answered 2022-05-16 10:15:46 -0500
edit flag offensive 0 remove flag delete link

Comments

Nice trick. Got it. Thank you very much.

hongyi-zhao's avatar hongyi-zhao (2022-05-16 18:45:02 -0500) edit
add a comment see more comments

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss.

Add Answer