Syntax checker for python using inotify
Project description
“Because syntax checking should happen on file writes, not VCS commits”
quick (or not so quick) and dirty tool to run syntax checking and doc tests on python code in a separate screen window
Features
Syntax check files
Doc test files
Call a command on syntax failures
terminal bell
filter files by hashbang and globs
color output with tty detection
multiple output formats (oneline, short and long)
Supports python2 and python3
This program was mainly written to assist me in developing python code and letting me know a couple of seconds before i try and run my program that there are basic syntax mistakes in the code.
to achieve this inotify is used to wait for files to be written to and then if all pre conditions are fine (globs and hashbangs) then a syntax check is executed. on an error a message is printed and it moves on to the next file
By using the ‘bell’ facility the window running check does not have to be visible to the programmer and instead a message will be printed in the message line on error indicating attention may be required, allowing screen to be used as the windowing component of a flexible IDE setup
Examples
To check a directory for file changes and run syntax checks on file save try the following command
$ icheck -b ~/code/icheck/icheck/
This will ‘ring the bell’ in the terminal on file changes that are syntactically incorrect. in screen this causes a ‘bell in window x’ message to be displayed at the bottom of the screen for all files in the directory
To limit ourselves to just scanning .py files (sounds like a good idea!) we can add a filter based on filename with the ‘-g’ flag
$ icheck -b -g ‘*.py’ ~/code/icheck/icheck/
Optionally we can filter based on the hash-bang at the beginning of the file with ‘-s’ this defaults to looking for the string ‘python’ however this can be changed by specifying it after the ‘-s’ flag. This is applied in an ‘AND’ fashion with the ‘-g’ flag so that the file extension AND the shebang need to match. if only one detection method is desired then only use one flag or optionally use neither detection and specify exactly which files you want to watch (ie specifying files on the cmdline rather than the directory they are contained in)
Limitations
At this point in time file watching is not recursive, creating directories does not cause them to be watched. It is assumed that the project layout that you are watching is mostly static for the time being. to watch sub-directories try the command below
$ icheck ~/code/icheck/icheck ~/code/icheck/icheck/*/
Docstring checking imports your modules, if you run your code in a virtualenv with libs not avalible to the system then import errors may occur. to prevent this install and run icheck from your virtualenv
Release History
1.8 (2015-08-29)
Run Doctests as well as syntax checking
1.7 (2015-08-15)
Bug Fixes
Errors on the last line of a src file would crash the checker
1.6 (2014-10-24)
Bug Fixes
Certain conditions would prevent a variable that was used from being set/create
1.5 (2014-10-24)
Fixed up some links in setup.py
Add reason why the syntax check failed to output, where available
1.4 (2014-10-24)
Check on file close rather than write to avoid partial files
1.3 (2014-10-20)
Add python 2.7 compatibility
1.2.1 (2014-10-20)
Bug Fixes
Fix packaging again and convert to module, now installs correctly
1.2 (2014-10-20)
Bug Fixes
Fix packaging so setup.py is included again
1.1 (2014-10-20)
Change-log now appended to project description
Bug Fixes
Fixed (one) race condition on checking hashbang
Fixed up entry point to eat stack trace on Keyboard Interrupt
1.0 (2014-10-19)
Initial Release
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
Built Distribution
File details
Details for the file icheck-1.8.zip
.
File metadata
- Download URL: icheck-1.8.zip
- Upload date:
- Size: 15.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 002257ced64d067d6b43cb8df72e0303089f14930c90ed3fb4e2a633c671cf76 |
|
MD5 | 7a8cd6c64a6c6622d9852f57fca36344 |
|
BLAKE2b-256 | 1578da37c881ac6a555e0bfce33dce30fa8c43a7346f958bef1f89279dd357f7 |
File details
Details for the file icheck-1.8.tar.bz2
.
File metadata
- Download URL: icheck-1.8.tar.bz2
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee3b38060136ea55c372315fa0dfc0902988824f7d7c705a1f846d370e1145af |
|
MD5 | f89ac7e6e0866b8035cd6cb9a261259b |
|
BLAKE2b-256 | 6cbc9d3ea7df0d735a9b6488f78a10dfe6dc8260f4c30276263af429345b624e |
File details
Details for the file icheck-1.8-py2.py3-none-any.whl
.
File metadata
- Download URL: icheck-1.8-py2.py3-none-any.whl
- Upload date:
- Size: 9.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7aa7bec05ac0723cea912803d96f3bdbd8187091dbe423934bebe6454f3bebb |
|
MD5 | f8dcca7c06cbf4240633a139c733b538 |
|
BLAKE2b-256 | ca2d97eaa7009ebb392f89ad2bdcb1845f0469ee6384aa56c2f1708117c79188 |