A Python abstraction layer for multiple version control systems.
python-anyvcs provides a Python interface to work with version control repositories through a consistent interface regardless of the underlying repository type. It currently supports:
- Git repositories (either bare or non-bare)
- Mercurial repositories
- Subversion master repositories (those created with
svnadmin create
)
The focus is on read-only operations, but a few write operations are supported (like creating new repositories or loading a Subversion dumpfile).
If you are looking for an interface to work with working copies of version control repositories, either contribute to this project or look elsewhere.
ls()
- list filescat()
- read file contentsreadlink()
- read symbolic link targetbranches()
- list branchesbookmarks()
- list bookmarks (Mercurial only)tags()
- list tagsheads()
- list all branches, bookmarks, tags, etc.tip()
- find the tip of a named headempty()
- determine if the repository contains any commits__len__()
- count the number of commits in the repository__contains__()
- determine if the repository contains the given revisionlog()
- get commit logschanged()
- list files that were changed in a given revisionpdiff()
- get diff that a given revision introduceddiff()
- get diff between any two revisionsancestor()
- find most recent common ancestor of any two revisionsblame()
- blame (a.k.a. annotate) lines of a filecanonical_rev()
- get the canonical revision identifiercompose_rev()
- compose a revision identifier which encodes branch and revisionclone()
- clone an existing repositoryprivate_path
- a path in the repository where untracked data can be storeddump()
- create a Subversion dumpfile (Subversion only)load()
- load a Subversion dumpfile (Subversion only)
Operations that are not natively supported by the underlying version control system are implemented in this library.
>>> from pprint import pprint >>> import anyvcs >>> repo = anyvcs.open('/path/to/repo') >>> repo.branches() ['1.0_develop', '1.0_master', 'develop', 'master'] >>> >>> log = repo.log(limit=3) >>> pprint([commit.message for commit in log]) ["Merge branch 'release/1.2.0' into develop\n", "Merge branch 'release/1.2.0'\n", 'add README symlink to keep python happy\n', 'add copyright information\n'] >>> >>> ls = repo.ls('master', '/') >>> pprint(ls) [{'name': '.gitignore', 'path': '.gitignore', 'type': 'f'}, {'name': 'AUTHORS', 'path': 'AUTHORS', 'type': 'f'}, {'name': 'COPYING', 'path': 'COPYING', 'type': 'f'}, {'name': 'COPYING.LESSER', 'path': 'COPYING.LESSER', 'type': 'f'}, {'name': 'LICENSE', 'path': 'LICENSE', 'type': 'f'}, {'name': 'MANIFEST.in', 'path': 'MANIFEST.in', 'type': 'f'}, {'name': 'README', 'path': 'README', 'type': 'l'}, {'name': 'README.md', 'path': 'README.md', 'type': 'f'}, {'name': 'RELEASE-NOTES.txt', 'path': 'RELEASE-NOTES.txt', 'type': 'f'}, {'name': 'anyvcs', 'path': 'anyvcs', 'type': 'd'}, {'name': 'setup.py', 'path': 'setup.py', 'type': 'f'}, {'name': 'tests.py', 'path': 'tests.py', 'type': 'f'}]
python-anyvcs should work with the following software versions:
- Python: 2.6 or later (including 3.0 or later)
- Git: 1.7.0 or later
- Mercurial: 1.6.1 or later
- Subversion: 1.5 or later