vcs abstraction layer
Project description
libvcs - abstraction layer for vcs, powers vcspull.
Install:
$ pip install libvcs
Open up python:
$ python
>>> from libvcs.shortcuts import create_repo_from_pip_url, create_repo
# repo is an object representation of a vcs repository.
>>> r = create_repo(url='https://www.github.com/tony/myrepo',
... vcs='git',
... repo_dir='/tmp/repo')
# or via pip-style URL
>>> r = create_repo_from_pip_url(
... pip_url='git+https://www.github.com/tony/myrepo',
... repo_dir='/tmp/repo')
# it may or may not be checked out/cloned on the system yet
>>> r.update_repo()
|myrepo| (git) Repo directory for myrepo (git) does not exist @ /tmp/myrepo
|myrepo| (git) Cloning.
|myrepo| (git) git clone https://www.github.com/tony/myrepo /tmp/myrepo
Cloning into '/tmp/myrepo'...
Checking connectivity... done.
|myrepo| (git) git fetch
|myrepo| (git) git pull
Already up-to-date.
Donations
Your donations fund development of new features, testing and support. Your money will go directly to maintenance and development of the project. If you are an individual, feel free to give whatever feels right for the value you get out of the project.
See donation options at https://git-pull.com/support.html.
More information
Python support |
Python 2.7, >= 3.3, pypy |
VCS supported |
git(1), svn(1), hg(1) |
Source |
|
Docs |
|
Changelog |
|
API |
|
Issues |
|
Travis |
|
Test Coverage |
|
pypi |
|
Open Hub |
|
License |
BSD. |
git repo |
|
install dev |
|
tests |
|
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
libvcs-0.2.2.tar.gz
(16.9 kB
view details)
File details
Details for the file libvcs-0.2.2.tar.gz
.
File metadata
- Download URL: libvcs-0.2.2.tar.gz
- Upload date:
- Size: 16.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5330ac73544869745c0090d80975d3046fd4a1ba089b118c7ac687d33ed8a6b9 |
|
MD5 | dcf346bf7b56966a3111dfe264461f1b |
|
BLAKE2b-256 | 96eac337f563231af6490374bfab39393337df05fae4634463c8f8537828f5c0 |