Python Open Module (New)
Opens the Python module file based on the Python import path. Plugin to Sublime Text 2.
Details
Installs
- Total 9K
- Win 6K
- Mac 1K
- Linux 2K
Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Python Open Module (New)
Plugin to Sublime Text 2. Opens the Python module file based on the Python import path.
More advanced and bugfree version of PythonOpenModule.
Typical use case
Imagine you are reading some Python script and trying to understand why it works the way it works.
At the top of the script you see from some.very.mysterious.module import muhahaha
.
Are you curious what muhahaha
is doing? Simple enough!
Highlight some.very.mysterious.module
, press Alt+Shift+o, Enter and enjoy.
Features
- works with virtual environments
- easy modification of sys.path contents through settings
- automatically discoveres and includes Python packages in your currently opened project
- resolves relative paths and .pth files
- user-friendly input panel with syntax highlighting (i.e. if you type bullshit, it turns red)
- you can choose whether to view the modules in the current or a new window
Install
The easiest way to install this is with Package Control.
Usage
Press Alt+Shift+o to open the input panel. Type the Python import path of the module you want to view.
Note: this plugin STRICTLY simulates the Python's import mechanism. What it means is that you can view only such files that Python would be able to import from the current working file. The only exception are your project packages, which are automatically included in sys.path for you.
Suppose the following directory tree of your Python project:
MyProject/
x.py
A/
__init__.py
y.py <- current working file
B/
__init__.py
z.py
Examples:
Type into input panel -> What file is opened (sys.path prefix to file omitted):
----------------------------------------------------------------------------------
os -> os.py
django.db -> django.db.__init__.py
Prefix import paths with `+` to open them in a new window:
----------------------------------------------------------
+os -> Opens os.py in a new window.
+django -> Opens whole django project in a new window (because `django` is a package).
Inside your project (MyProject/ is automatically included to sys.path):
-----------------------------------------------------------------------
x -> x.py
A.y -> A/y.py
A.B.z -> A/B/z.py
Relative paths are resolved based on the current working file:
--------------------------------------------------------------
.B.z -> A/B/z.py
.B -> A/B/__init__.py
. -> A/__init__.py
If you try to input a path that Python would not be able to import from the current working file, nothing will be opened and you will receive an information in the status bar (at the bottom of ST2 window).
Virtual environment
If you are using virtual environment, you need to set the setting python_executable
(Preferences > Package Settings > PythonOpenModule(New) > Settings - User)
to the path pointing to the Python executable inside your venv directory.
Modifying sys.path
Use the setting path
to modify the contents of sys.path, used for module search.
See the default settings for reference.
FAQ
Plugin doesn't work for sys
or datetime
modules. Is it a bug?
No it is not a bug. Some modules simply doesn't have the raw .py files available, thus cannot be opened.
For example sys
module is on your system probably stored as sysmodule.c
file.
For other modules, maybe only .pyc files are available.
There is nothing that can be done about this. Sorry.