Skip to main content

'git status' parser

Project description

Install

$ [sudo] pip install git-status

Classes

git_status.Status

git status parser

@property description
A return list of added files
D return list of deleted files
M return list of modified files
R return list of renamed files
untracked return list of untracked files

Functions

function description
git_status.get(path=None) return git status string

Examples

>>> import git_status
>>> git_status.get(".")
 M  path/to/modified
 A  path/to/added
 D  path/to/deleted
 R  path/to/renamed
 ?? path/to/untracked

Status class

>>> status = git_status.Status(".")
>>> status.A
['path/to/added']

>>> status.M
['path/to/modified']

>>> status.D
['path/to/deleted']

>>> status.R
['path/to/renamed']

>>> status.untracked
['path/to/untracked']

readme-md - README.md generator

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

git-status-2018.11.19.tar.gz (1.7 kB view hashes)

Uploaded Source

Built Distribution

git_status-2018.11.19-py2.py3-none-any.whl (6.9 kB view hashes)

Uploaded Python 2 Python 3

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