Utilities to normalize working with different Version Control Systems
Project description
Summary
vcsinfo gathers information about a source tree, supporting Git, Mercurial, and Perforce working directories.
Installation
pip install vcsinfo
Usage
Example usage using the vcsinfo project itself (git backend):
import vcsinfo
data = vcsinfo.detect_vcs(my_path)
data.name # project name: 'vcsinfo'
data.branch # branch name: 'main'
data.id # native commit identification: '4bb323148e43543247afe066db0dbac0fcf45537'
data.upstream_repo # upstream repo url: 'git@github.com/adobe/vcsinfo.git'
data.user # user who performed the commit: 'saville'
data.id_short # a short representation of the id: '4bb323'
data.number # same as id if commits have increasing numbers, otherwise simulated an increasing commit number: 77
data.modified # none if no local modifications, otherwise the epoch seconds of the most recently modified file: 1629746987
data.release # string representing the current state of the branch: '77.I4bb323.M1629746987'
data.id_string # string providing a unique id of branch and release: 'main-77.I4bb323.M1629746987'
# Retrieves a tuple of lists of modified changes in the changeset, see code
# for return format
data.status()
# List the files known to the VCS
data.list_files()
# Retrieves VCS information as a dict, optionally including full file information
data.info()
data.info(include_files=True)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
vcsinfo-1.0.2.tar.gz
(11.2 kB
view details)
Built Distribution
vcsinfo-1.0.2-py3-none-any.whl
(15.2 kB
view details)
File details
Details for the file vcsinfo-1.0.2.tar.gz
.
File metadata
- Download URL: vcsinfo-1.0.2.tar.gz
- Upload date:
- Size: 11.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.0 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.6.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15995399a2598c86d40673395502b80b408b812400dd75091ea552f5309dc206 |
|
MD5 | 203ff2bf0c23b6089da1e9f59d347476 |
|
BLAKE2b-256 | 9f0e91ae4e7753990e13497487ce65c2f2b552dd9b7c1d8871ac54893ae2352b |
File details
Details for the file vcsinfo-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: vcsinfo-1.0.2-py3-none-any.whl
- Upload date:
- Size: 15.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.0 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.6.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b706b6f6bbd693f248557150bfcad04dcb02e3638fe0bcf14ebf2f1a2be048a |
|
MD5 | 1e4c9dd42ccae06015732274f5430928 |
|
BLAKE2b-256 | 040dc50042bd382e9c186f2c751ee61b5aa304f807129e6c24ad3c7e08374ed2 |