Tools to get git version information on files and python modules/packages
Project description
About
Tools for getting information about git repositories in python, based on gitpython; gittools provides functions to get quick commit information of paths / files:
current_commit_hash()(return str of latest commit)path_status()(return dict with more info, e.g. tags, dirty or not, etc.)
There are also functions targeted for use on python packages and modules that are within a git repository (e.g. following editable install from git clone):
module_status(): similar to path_status() but with a python package or module as an input instead of a pathcheck_modules(): check the status of a collection of python modules/packages using module_status()save_metadata(): save git information and any other metadata provided as input into a JSON file.
Other functions include repo_tags() and path_in_tree() (see below).
See docstrings and information below for more details.
Install
pip install gittools
Contents
See help / docstrings of functions for details, and Examples section below.
General functions
current_commit_hash(
path='.',
checkdirty=True,
checktree=True,
)
commit hash (str) of HEAD commit of repository where path belongs; if True, checkdirty and checktree raise exceptions if repo is dirty and if path does not belong to repo's tree, respectively.
path_status(path='.')
Similar to current_commit_hash() but does not raise exceptions. Instead, returns git status (commit hash, dirty or clean, tag if there is one) as a dictionary.
module_status(module, nogit_ok=True)
Similar to path_status() but takes a python module or python package as input.
If nogit_ok is set to False, the function will raise an error when the module is not versioned by git.
If nogit_ok is set to True, module status will indicate version info if available.
Functions for collections of modules and metadata
check_modules(
modules,
dirty_warning=False,
dirty_ok=False,
notag_warning=False,
nogit_ok=False,
nogit_warning=False,
)
Get version information for a collection of modules.
Data is returned as a dict of dicts where the keys are module names and the nested dicts correspond to dicts returned by path_status().
There is a nogit_ok option to avoid raising an error if one or several modules are not in a git repository.
In this case, the returned information of the module indicates that the module is not in a git repo and uses the module version number as a tag.
Similarly, if dirty_ok is set to True, no DirtyRepo exception is thrown if the modules have a dirty repository.
Other options are to print warnings when:
- the repo is dirty, i.e. uncommitted (
dirty_warning), - it is missing a tag at the current commit (
notag_warning), - one or more modules are not in a git repo (
nogit_warning).
save_metadata(
file,
info=None,
module=None,
dirty_warning=False,
dirty_ok=False,
notag_warning=False,
nogit_ok=False,
nogit_warning=False,
):
Save metadata (infos dictionary), current time, and git module info. The module, dirty_warning, notag_warning, nogit_ok and nogit_warning parameters are the same as for module_status().
Miscellaneous functions
-
repo_tags(path='.'): lists all tags in repository the path belongs to, as a {'commit hash': 'tag name'} dictionary (both keys and values are strings). -
path_in_tree(path, commit): used by current_commit_hash; returns True if path belongs to the commit's working tree (or is the root directory of repo), else False.
Exceptions
The checkdirty and checktree options raise custom exceptions: DirtyRepo and NotInTree, respectively.
Examples
>>> from gittools import current_commit_hash, repo_tags
>>> current_commit_hash() # Most recent commit of the current working directory
'1f37588eb5aadf802274fae74bc4abb77d9d8004'
# Other possibilities
>>> current_commit_hash(checkdirty=False) # same, but avoid raising DirtyRepo
>>> current_commit_hash('gitrepos/repo1/foo.py') # same, but specify path/file
# Note that the previous example will raise an exception if the file is not
# tracked in a git repository. To silence the exception and see the most
# recent commit hash of the closest git repository in a parent directory:
>>> current_commit_hash('Test/untracked_file.pyc', checktree=False)
# List all tags of repo:
>>> repo_tags() # current directory, but also possible to specify path
{'1f37588eb5aadf802274fae74bc4abb77d9d8004': 'v1.1.8',
'b5173941c9cceebb786b0c046c67ea505786d820': 'v1.1.9'}
It can be easier to use higher level functions to get hash name, clean/dirty status, and tag (if it exists):
>>> from gittools import path_status, module_status
>>> path_status() # current working directory (also possible to specify path)
{'hash': '1f37588eb5aadf802274fae74bc4abb77d9d8004',
'status': 'clean',
'tag': 'v1.1.8'}
>>> import mypackage1 # module with clean repo and tag at current commit
>>> module_status(mypackage1)
{'hash': '1f37588eb5aadf802274fae74bc4abb77d9d8004',
'status': 'clean',
'tag': 'v1.1.8'}
>>> import mypackage2 # this package has uncommitted changes and no tags
>>> module_status(mypackage2)
{'hash': '8a0305e6c4e7a57ad7befee703c4905aa15eab23',
'status': 'dirty'}
>>> check_modules(
[mypackage1, mypackage2],
dirty_ok=True,
dirty_warning=True,
)
Warning: the following modules have dirty git repositories: mypackage2
{'mypackage1': {'hash': '1f37588eb5aadf802274fae74bc4abb77d9d8004',
'status': 'clean',
'tag': 'v1.1.8'},
'mypackage2': {'hash': '8a0305e6c4e7a57ad7befee703c4905aa15eab23',
'status': 'dirty'}}
# mypackage3 not a git repo
>>> check_modules(
[mypackage1, mypackage2, mypackage3],
dirty_ok=True,
nogit_ok=True,
)
{'mypackage1': {'hash': '1f37588eb5aadf802274fae74bc4abb77d9d8004',
'status': 'clean',
'tag': 'v1.1.8'},
'mypackage2': {'hash': '8a0305e6c4e7a57ad7befee703c4905aa15eab23',
'status': 'dirty'},
'mypackage3': {'status': 'not a git repository',
'tag': 'v1.3.2'}}
Save metadata with current time and git info (from module_status())
>>> import gittools, oclock, numpy
>>> from gittools import save_metadata
>>> modules = gittools, oclock
>>> parameters = {'temperature': 25, 'pressure': 2338}
>>> save_metadata('metadata.json', info=parameters, modules=modules, dirty_ok=True, nogit_ok=True)
# Writes a .json file with the following info:
{
"temperature": 25,
"pressure": 2338,
"time (utc)": "2020-12-03 21:33:17",
"code version": {
"gittools": {
"hash": "12f2ceb3c5fffcc31e422474485e2481890a8094",
"status": "dirty",
"tag": "v0.3.1"
},
"oclock": {
"hash": "826aa76e5096680805eb43fb22a80ccc3b282015",
"status": "clean",
"tag": "v1.0.1"
}
"numpy": {
"status": "not a git repository",
"tag": "v1.19.2"
}
}
}
Requirements / dependencies
Python
- Python >= 3.6
Python packages
(installed automatically by pip if necessary)
- gitpython (https://gitpython.readthedocs.io)
- importlib-metadata
Other
- git (see gitpython requirements for git minimal version)
Author
Olivier Vincent (ovinc.py@gmail.com)
License
3-Clause BSD (see LICENSE file)
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gittools-0.7.0.tar.gz.
File metadata
- Download URL: gittools-0.7.0.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f98760b69fb1f95ffddcec36a490750fa893616f99a87da10635e50e5b400615
|
|
| MD5 |
9fc391613bdcfc0a19cd4606439215ab
|
|
| BLAKE2b-256 |
c0cdf3b164ef5b83724968341c5cc115b4f6062f2651a2fe678eb943f6f6e4cd
|
File details
Details for the file gittools-0.7.0-py3-none-any.whl.
File metadata
- Download URL: gittools-0.7.0-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
944466ea2bc932c1efd14b053c69a8c71be4d7715d1715a62f497bc39b51413f
|
|
| MD5 |
87738339b640ca4a445fe8d99535bedd
|
|
| BLAKE2b-256 |
1c52a3932b3bd9f11a08fd36bac05500dffac6293d11847109a8836b98e1920a
|