Skip to main content

Filesystem, language and OS related tools.

Project description

coveo-systools

Language and OS related utilities.

Content in a nutshell:

  • enhanced subprocess calls
  • file and app finding made easy
  • safe text write and replace-if-different
  • git-repo-root locator
  • bool platforms if WINDOWS or LINUX or MAC or WSL:

searching the filesystem

import os
from coveo_systools.filesystem import find_paths, find_application, find_repo_root

os.getcwd()
# '/code/coveo-python-oss/coveo-systools'

find_application('git')
# WindowsPath('C:/Program Files/Git/cmd/git.EXE')  # windows example for completeness

find_repo_root()
# Path('/code/coveo-python-oss')

list(find_paths('pyproject.toml', search_from=find_repo_root(), in_root=True, in_children=True))
# [Path('/code/coveo-python-oss/pyproject.toml'), ...]

enhanced subprocess calls

An opinionated version of subprocess.check_call and subprocess.check_output.

Adds the following features:

  • command line is a variable args (instead of a list)
  • automatic conversion of output to a stripped string (instead of raw bytes)
  • automatic conversion of Path, bytes and number variables in command line
  • automatic filtering of ansi codes from the output
  • enhanced DetailedCalledProcessError on error (a subclass of the typical CalledProcessError)
from pathlib import Path
from coveo_systools.subprocess import check_call

check_call('mypy', '--config-file', Path('configs/mypy.ini'), verbose=True)

safe I/O, if changed

Good programming practices requires files to be saved using a temporary filename and then renamed. This helper takes it a step further by skipping the write operation if the content did not change:

import json
from pathlib import Path
from coveo_systools.filesystem import safe_text_write

safe_text_write(Path('./path/to/file.txt'), json.dumps(...), only_if_changed=True)

conditional platforms syntactic sugar

Readability is important, not repeating yourself is important. Forget about platform.platform() and use bools directly:

from coveo_systools.platforms import WINDOWS, LINUX, IOS, WSL

if WINDOWS or WSL:
    print("Hello Windows!")
elif LINUX or IOS:
    print("Hello Unix!")

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

coveo-systools-2.0.7a1.tar.gz (9.2 kB view details)

Uploaded Source

Built Distribution

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

coveo_systools-2.0.7a1-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file coveo-systools-2.0.7a1.tar.gz.

File metadata

  • Download URL: coveo-systools-2.0.7a1.tar.gz
  • Upload date:
  • Size: 9.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.9.13 Linux/5.13.0-1025-azure

File hashes

Hashes for coveo-systools-2.0.7a1.tar.gz
Algorithm Hash digest
SHA256 97da2b55b7fd3a258796d0769678fe922792659ba44bd87111ff34786f835629
MD5 c9cb458346ca8d793a5dc2db2528e82a
BLAKE2b-256 ba72f5f5e858cf031290dde0cce0c630ac33b1c3d4fb29c31c895691ac2d34f6

See more details on using hashes here.

File details

Details for the file coveo_systools-2.0.7a1-py3-none-any.whl.

File metadata

  • Download URL: coveo_systools-2.0.7a1-py3-none-any.whl
  • Upload date:
  • Size: 9.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.9.13 Linux/5.13.0-1025-azure

File hashes

Hashes for coveo_systools-2.0.7a1-py3-none-any.whl
Algorithm Hash digest
SHA256 6a9fcf74cdc467d4ba70956356a7b887e0d28a2b5d8590471213894417fa7c11
MD5 3ddeac3bddaa2390d0cd533442e0f620
BLAKE2b-256 68d96fc2d0dcd42d933aa52484676e31d0cfa7d566d54e636e09a60c560083d4

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