Skip to main content

A command line tool for watching files and running shell commands when they change.

Project description

Latest PyPI version

Spotter is a simple command line tool for watching files and running shell commands when they change. Directives are read from a text file, and spotter will look for a file named .spotter in the current directory if no filenames are given.

Usage

spotter [-h] [-v] [-q] [-c] [filename [filename ...]]
Positional arguments:
  • filename: A list of files containing directives to load, defaulting to [".spotter"].

Optional arguments:
  • -h, --help: Explain the command line options.

  • -v, --version: Show the current version number.

  • -q, --quiet: The output of commands is not printed unless they fail.

  • -c, --continue: Failed commands will not stop spotter from continuing.

Spotter can also be run as a python module:

python -m spotter ...

Directives

All directives are in the following form:

<directive>: <argument> [-> <second argument>]

Not all directives take a second argument, but all of them take a first argument.

Watch

watch: <pattern> -> <command>

The Watch directive takes two arguments: <pattern> is a unix-style filename pattern, and <command> is a shell command to run when a file matching the pattern is created or changed. More information on the pattern matching used can be found in the fnmatch library documentation.

watch: *.txt -> echo "Text file changed"

Multiple watch directives can be given, and spotter will continue to run matching watch directives until one fails (i.e. returns an exit code above 0) or until it runs a matching watch-final directive.

watch: * -> return 1
watch: * -> echo "This command will not run"

The --continue command line argument can be used to disable this behaviour, forcing spotter to continue processing watches even if one fails.

Watch-Final

watch-final: <pattern> -> <command>

Watch-final has exactly the same syntax and behaviour as the Watch directive. Unlike the Watch directive, if the pattern matches and the command is run, no further watches will be processed.

watch-final: *.txt -> echo "No commands will run after this"

Start / Stop

start: <command>
stop: <command>

The start and stop directives can be used to run commands when spotter starts running and when spotter stops running.

start: echo "Started watching files"
stop: echo "Stopped watching files"

Define

define: <name> -> <value>

The Define directive allows values to be stored and then included in other directives when they are run. filename is always available in watch commands, and contains the path of the file that matched the pattern. Definitions are included in the commands using python format specifications, and are inserted when the command is run, not when the command is loaded.

define: python_command -> python2.6

watch: *.py -> {python_command} "{filename}"

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

spotter-1.7.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

spotter-1.7-py2.py3-none-any.whl (8.6 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file spotter-1.7.tar.gz.

File metadata

  • Download URL: spotter-1.7.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for spotter-1.7.tar.gz
Algorithm Hash digest
SHA256 af1015a280f62dbac7a60ce8540ea9376f4e6f7ab2927660c31c75d726431d38
MD5 c1e219483315b9a97462119bef9803d8
BLAKE2b-256 36b6cbb52eabf717f08464ab4f3c24683cdfd510d71d202cdbe2e97129758cee

See more details on using hashes here.

File details

Details for the file spotter-1.7-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for spotter-1.7-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 c60ceeeb1762b7b3db9950503d2c5ad1b987ffad20a2bffbeb89e8c0b161a392
MD5 a9a062b932f8f5aff4c8cc993e673e99
BLAKE2b-256 f2f25bf02dfef4699b2842079e54b7f87384a2fc00e15961559a634051a75254

See more details on using hashes here.

Supported by

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