Skip to main content

Locate python object definition in your file-system

Project description

Build Status Coverage Status Last released version Supported python versions Download rate Package stability License

pyloc prints the location of the definition of any python object in your file-system.

Introduction

pyloc is very similar to what python3 -m inspect -d <object> offers. However, it is only focused to retrieve the file name (and eventually the line number) where a given Python object is defined. The object can be a package, module, class, method or function.

pyloc makes some further efforts to figure out the line and column number and its output is formatted so that it can easily be passed to emacsclient or vi.

Examples

You can see the location of Popen.wait method in the sub-process package:

$ python -m pyloc -f human subprocess:Popen.wait
Filename: /Users/polrop/.pyenv/versions/2.7.9/lib/python2.7/subprocess.py
Line: 1379

$ python -m pyloc -f human email.utils:formataddr
Filename: /Users/polrop/.pyenv/versions/2.7.9/lib/python2.7/email/utils.py
Line: 85

(Output may be different on your system if you have different installation path and version)

Note that the object naming syntax is as follow: module[:qualname] Since version 0.2.0, syntax module[.qualname] a la pydoc is also supported.

To open it in Emacs you can do:

$ emacsclient `python -m pyloc -f emacs subprocess:Popen.wait`

or in vim:

$ vim `python -m pyloc -f vi subprocess:Popen.wait`

If you are lazy typing -f <format> all the time and you often use the same format, you can set the default output format this way (you can add this line in your .zshenv or .bashrc):

$ export PYLOC_DEFAULT_FORMAT=emacs

pyloc will always locate object based on the python interpreter your are using:

$ python3 -m pyloc -f human subprocess:Popen.wait
Filename: /Users/polrop/.pyenv/versions/3.4.3/lib/python3.4/subprocess.py
Line: 1526

$ /usr/local/bin/python -m pyloc -f human email.utils:formataddr
Filename: /usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/email/utils.py
Line: 85

$ /usr/bin/python -m pyloc -f human email.utils:formataddr
Filename: /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/email/utils.py
Line: 85

Installation

Using pip

You can install pyloc using pip like this:

$ pip install pyloc

or

$ pip3 install pyloc

Directly from the source

$ git clone https://github.com/nicolasdespres/pyloc.git
$ cd pyloc
$ python setup.py develop
# If you also want it for Python 3
$ python3 setup.py develop

Note that if you also install the Python 3 version, the pyloc2 command line driver will not work but the pyloc driver will point to the Python 2 installation.

To uninstall it, you ca do:

$ python setup.py develop --uninstall
# And if you installed the Python 3 version
$ python3 setup.py develop --uninstall

However, this won’t remove the entry scripts generated by easy install.

Known bugs

  • Classes or built-in types like int or str do not contain location information. In this case pyloc tries to look for the name in the AST. This procedure may not be accurate since Python is a dynamic language.

Hacking

See HACKING for details.

Release notes

See the corresponding tag annotation. After cloning you can do for instance:

$ git show v0.1.10

License

pyloc is released under the term of the Simplified BSD License. Copyright (c) 2015-2106, Nicolas Desprès All rights reserved.

As noted in the source code, some part has been inspired by code from the inspect module written by Ka-Ping Yee <ping@lfw.org> and Yury Selivanov <yselivanov@sprymix.com> form the Python 3.4.3 distribution (see the LICENSE file in the python distribution)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

pyloc-0.2.0.zip (23.1 kB view details)

Uploaded Source

pyloc-0.2.0.tar.gz (16.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pyloc-0.2.0-py3-none-any.whl (16.3 kB view details)

Uploaded Python 3

pyloc-0.2.0-py2-none-any.whl (16.3 kB view details)

Uploaded Python 2

File details

Details for the file pyloc-0.2.0.zip.

File metadata

  • Download URL: pyloc-0.2.0.zip
  • Upload date:
  • Size: 23.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pyloc-0.2.0.zip
Algorithm Hash digest
SHA256 d186218bdb3e05145907adca1cf44a1d00637f2dac2415bb7c165cf7c58954bc
MD5 b451e9cd4e2a57e4969217f3e190d13e
BLAKE2b-256 6f742c7c773805ccd97e002c7e0d5deb74dec26623850348cd23369abbe2da87

See more details on using hashes here.

File details

Details for the file pyloc-0.2.0.tar.gz.

File metadata

  • Download URL: pyloc-0.2.0.tar.gz
  • Upload date:
  • Size: 16.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pyloc-0.2.0.tar.gz
Algorithm Hash digest
SHA256 30186816cea04587363aec8c097e1f9b5b269b50c139469ad0f833940eab2b3d
MD5 ad0c10b50c2166663cb54a98a465f739
BLAKE2b-256 2823651d4a290774714015922bac4ebf78c6b5f1f9bc7c85a912f1eece9180d8

See more details on using hashes here.

File details

Details for the file pyloc-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pyloc-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fd59c29d7fc302feefcda2065fe69aa6010a2726f9f80f34b88c54d82f468b5c
MD5 dcdfada0243d6511c4e510f34ab0e399
BLAKE2b-256 880176d7019002945da0ae33361f2de45e38e2697e971a5ee12bfc43ade490ed

See more details on using hashes here.

File details

Details for the file pyloc-0.2.0-py2-none-any.whl.

File metadata

File hashes

Hashes for pyloc-0.2.0-py2-none-any.whl
Algorithm Hash digest
SHA256 3d1c54f347977e9722e6a249267353d193f98608e7a93995222619d0aaffa470
MD5 d02f377e126e4d962e090e33fc7b4a1e
BLAKE2b-256 bd1542408c2b7d0005cfa7bc0e69790913ac4f8bb24f3d32a77d660553281377

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page