Python emacs syntax checking
Project description
Introduction
The pyempt package is a python emacs package for type checking and other syntax analysis. It is basically a simple wrapper around other python syntax checkers to simplify the process of calling pylint, pep8, etc. from something like emacs flymake.
In principle, you could do all of this with a a few simple scripts. It’s nice being able to pip install something that works and collaborate on improvements, however, and that is what pyempt is for.
Installation
To install pyempt, first do something like pip install pyempt or sudo pip install pyempt. Then add something like the following to your ~/.emacs file to run pyempt.
(when (load "flymake" t) (defun flymake-pyempt-init () (let* ((temp-file (flymake-init-create-temp-buffer-copy 'flymake-create-temp-inplace)) (local-file (file-relative-name temp-file (file-name-directory buffer-file-name)))) (list "pyempt" (list local-file)))) (add-to-list 'flymake-allowed-file-name-masks '("\\.py\\'" flymake-pyempt-init))) (add-to-list 'flymake-allowed-file-name-masks '("\\.py\\'" flymake-pyempt-init)) ;; Uncomment following line if you want flymake to start on file load ;;(add-hook 'find-file-hook 'flymake-find-file-hook)
After you restart emacs or reload your init file, flymake should automatically start and call pyempt.
Usage
If you have installed pyempt and setup emacs to use it in flymake, there isn’t anything you need to do to use pyempt. Instead, it will run automatically inside emacs.
If you want to run it from the command line, you can type
pyempt --help
to see options and usage instructions or type
pyempt <PATH_TO_CHECK>
to run checks on everything in a given path.
Since pyempt will return a non-zero exit code if any of its checkers returns a non-zero code, you can simply check the return value of pyempt in build scripts or continuous integration tools.
Troubleshooting
If you have problems, the first thing to do is to try and run pyempt manually via something like
pyempt <FILE_TO_CHECK>
You can turn on logging via
pyempt <FILE_TO_CHECK> --log_level 0
You can get further help on the command line program via
pyempt --help
Forking
If you want to fork pyempt, you may find the following useful:
The README.md file is the main file. Generate the rst version via something like pandoc README.md -t rst > README.rst
Upload to pypi via something like make pypi provided you have your ~/.pypirc setup correctly.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pyempt-1.1.0.tar.gz
.
File metadata
- Download URL: pyempt-1.1.0.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7771cc97221bd1773382995a13d4088d822dce5c490b0985da57ed2d40da6506 |
|
MD5 | ccd515e3071ba844bb9544e48ba9c159 |
|
BLAKE2b-256 | 011301cb930b1f2da265d2847697ed4e8748f62cdd4a8a280a98f0b7f4236f78 |