Object-oriented paths in Git repositories
Project description
A read-only implementation of Python’s pathlib that works on Git trees.
Installation
This library requires pygit2, which can be hard to install. You may need to get it installed before installing gitpathlib.
In a Python 3 virtual environment, do:
python -m pip install gitpathlib
To install an editable from a Git checkout:
python -m pip install -e.
To install without a virtual envitonment, add the --user option.
Basic Usage
A GitPath can be created from a path to a Git repository, and a commit (or tree) in it:
from gitpathlib import GitPath head = GitPath('path/to/git/repo', 'HEAD')
It can then be used as a Path would:
path = head / 'dir' / 'file.txt' with path.open() as f: contents = f.read()
GitPath provides read-only access. Creating files, opening them in write mode, etc. are not supported.
Development
You’re welcome to join this project!
If you spot an issue, please report it at the Issues page on Github.
If you’d like to start changing the code or documentation, check out the code locally using:
git clone https://github.com/encukou/gitpathlib
If you’re new to this, please read the this guide about collaborating on Github-hosted projects like this one.
If that doesn’t make sense, please e-mail the author for clarification. I’d be happy to help you get started.
Changelog
0.3 (2023-09-18)
Update to work with recent git & pygit2
0.2 (2017-04-29)
Implement the pathlib API
0.1 (2017-04-18)
Initial public version
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
File details
Details for the file gitpathlib-0.3.tar.gz
.
File metadata
- Download URL: gitpathlib-0.3.tar.gz
- Upload date:
- Size: 14.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5becc1a55a2e77d854bb72ace5c732a37e3ea69e3b39a3cc2436fd10e578f1c |
|
MD5 | 830bd8836b901848989b299ccbc45c76 |
|
BLAKE2b-256 | 3529c6b8d59243aee1628b97aa206dffa14eafd7f4c25558d46b929158f71290 |
File details
Details for the file gitpathlib-0.3-py3-none-any.whl
.
File metadata
- Download URL: gitpathlib-0.3-py3-none-any.whl
- Upload date:
- Size: 14.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31ed892cb8269853f3a19d2e6e5b23fd2668898d1dc8821c99c3282bed8e3658 |
|
MD5 | 116493aac792a8fff5ceda44599cb77d |
|
BLAKE2b-256 | e476d1c6f1056911a790fd8b11c1f935dacb741c285e26191d55170a12526be3 |