Skip to main content

A package which allows making bash style command line scripts easier.

Project description

Latest Version Downloads Development Status License

Overview

Bash color management and log system for Python users.

Requirements

  • Python 2.7.x

    NOTE: This has only been tested on a Mac (10.10.2) at this time.

Installation

You can install directly via pip:

pip install python-bash-utils

Or from the BitBucket repository (master branch by default):

git clone https://bitbucket.org/tsantor/python-bash-utils
cd python-bash-utils
sudo python setup.py install

Usage

colors

Import:

from bashutils import colors

Functions:

colors.color_text(text, color="none")

logmsg

Import:

from bashutils import logmsg

Functions:

logmsg.log_divline()             # ----------
logmsg.log_header('header')      # ==> header
logmsg.log_success('success')    # [✓] success
logmsg.log_error('error')        # [✗] error
logmsg.log_warning('warning')    # [!] warning
logmsg.log_info('info')          # [i] info
logmsg.log_declined('something') # [✗] something declined. Skipping...

bashutils

Import:

from bashutils import bashutils

Functions:

bashutils.get_os() # OSX, 'Fedora', 'CentOS', 'Debian', 'Ubuntu'

status, stdout, stderr = bashutils.exec_cmd('git -h')

bashutils.cmd_exists('git') # True or False

bashutils.file_exists('/path/to/file.ext') # True or False
bashutils.delete_file('/path/to/file.ext') # True or False
bashutils.dir_exists('/path/to/dir') # True or False
bashutils.make_dir('/path/to/dir')
bashutils.delete_dir('/path/to/dir')
bashutils.copy_dir('/path/to/dir', '/path/to/destination')
bashutils.copy_file('/path/to/file.ext', '/path/to/destination/file.ext')

Version History

  • 0.1.0 - Initial release

  • 0.1.1 - Added some new methods

Issues

If you experience any issues, please create an issue on Bitbucket.

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

Python-Bash-Utils-0.1.1.tar.gz (5.5 kB view hashes)

Uploaded Source

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