Skip to main content

Run things on paths

Project description

trailrunner

Walk paths and run things

version documentation changelog license build status code coverage

trailrunner is a simple library for walking paths on the filesystem, and executing functions for each file found. trailrunner obeys project level .gitignore files, and runs functions on a process pool for increased performance. trailrunner is designed for use by linting, formatting, and other developer tools that need to find and operate on all files in project in a predictable fashion with a minimal API:

walk() takes a single Path, and generates a list of significant files in that tree:

>>> from trailrunner import walk
>>> sorted(walk(Path("trailrunner")))
[
    PosixPath('trailrunner/__init__.py'),
    PosixPath('trailrunner/__version__.py'),
    PosixPath('trailrunner/core.py'),
    PosixPath('trailrunner/tests/__init__.py'),
    PosixPath('trailrunner/tests/__main__.py'),
    PosixPath('trailrunner/tests/core.py'),
]

run() takes a list of Path objects and a function, and runs that function once for each path given. It runs these functions on a process pool, and returns a mapping of paths to results:

>>> from trailrunner import run
>>> paths = [Path('trailrunner/core.py'), Path('trailrunner/tests/core.py')]
>>> run(paths, str)
{
    PosixPath('trailrunner/core.py'): 'trailrunner/core.py',
    PosixPath('trailrunner/tests/core.py'): 'trailrunner/tests/core.py',
}

walk_and_run() does exactly what you would expect:

>>> from trailrunner import walk_and_run
>>> walk_and_run([Path('trailrunner/tests')], str)
{
    PosixPath('trailrunner/tests/__init__.py'): 'trailrunner/tests/__init__.py',
    PosixPath('trailrunner/tests/__main__.py'): 'trailrunner/tests/__main__.py',
    PosixPath('trailrunner/tests/core.py'): 'trailrunner/tests/core.py',
}

Install

trailrunner requires Python 3.6 or newer. You can install it from PyPI:

$ pip install trailrunner

License

trailrunner is copyright John Reese, and licensed under the MIT license. I am providing code in this repository to you under an open source license. This is my personal repository; the license you receive to my code is from me and not from my employer. See the LICENSE file for details.

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

trailrunner-1.1.0b1.tar.gz (12.2 kB view details)

Uploaded Source

Built Distribution

trailrunner-1.1.0b1-py3-none-any.whl (8.8 kB view details)

Uploaded Python 3

File details

Details for the file trailrunner-1.1.0b1.tar.gz.

File metadata

  • Download URL: trailrunner-1.1.0b1.tar.gz
  • Upload date:
  • Size: 12.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.25.1

File hashes

Hashes for trailrunner-1.1.0b1.tar.gz
Algorithm Hash digest
SHA256 f726f0737a5db8e66c1d270ad840c136729896cf1eb4d3d850a3f9345b4fd6cb
MD5 707634d4afc5cc1b4dd4118a145f978f
BLAKE2b-256 dd119d9fa9d1aa483d1375e63b9b2d5ec18dee4de513fe90d3f62affabefa972

See more details on using hashes here.

File details

Details for the file trailrunner-1.1.0b1-py3-none-any.whl.

File metadata

File hashes

Hashes for trailrunner-1.1.0b1-py3-none-any.whl
Algorithm Hash digest
SHA256 f9e05ed298be38b2e3ea3067e9307ec8df934e522c39042b0b5b7079e30bf6b8
MD5 04d8c81bda3e9f59893f85799d440a7f
BLAKE2b-256 bb55aa2212a65c807f67c93520bc314bb7c3092a8139016149b3b89674dbb3bc

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