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
  • asyncio 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.

New in 2.0.7: asyncio support, through async_check_call and async_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-3.0.tar.gz (8.9 kB view details)

Uploaded Source

Built Distribution

coveo_systools-3.0-py3-none-any.whl (9.7 kB view details)

Uploaded Python 3

File details

Details for the file coveo_systools-3.0.tar.gz.

File metadata

  • Download URL: coveo_systools-3.0.tar.gz
  • Upload date:
  • Size: 8.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.9.22 Linux/6.8.0-1027-azure

File hashes

Hashes for coveo_systools-3.0.tar.gz
Algorithm Hash digest
SHA256 c8efcbc6bb4907c5459805a398fcec3f84077c2f9fbccd7ebd205ba29e836825
MD5 574c5e323d8843e18af00de6e36d2972
BLAKE2b-256 7dbebe871c2b3961e8b6c653f978b72a69a89ef7de36e3a85434d9e56dbea4ec

See more details on using hashes here.

File details

Details for the file coveo_systools-3.0-py3-none-any.whl.

File metadata

  • Download URL: coveo_systools-3.0-py3-none-any.whl
  • Upload date:
  • Size: 9.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.9.22 Linux/6.8.0-1027-azure

File hashes

Hashes for coveo_systools-3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f1704fe6173ba8cca09f49c2e096b6441c67960a9a3fccb9d9889364119e976f
MD5 78442a7c838bb8c3878695e91c3d3a32
BLAKE2b-256 7dd7b90e436dd47ac834576d209e515eeb936cf2a08910c3484cfac1f50845cb

See more details on using hashes here.

Supported by

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