No project description provided
Project description
svine
Lightweight Python wrapper for a highly limited number of svn subcommands.
Meant for use in mining Subversion repositories.
Installation
pip install svine
Usage
Setup for all use cases is the same:
from svine import SvnClient, SvnException
remote = SvnClient("https://svn.repository.url/whoever/still/uses/svn/")
svn log
Returns log entries in named tuples with fields for message (msg), author, revision and date.
try:
for log_entry in remote.log():
print(log_entry.msg)
except SvnException:
# Handle
pass
# Get latest log entry only
try:
for log_entry in remote.log(limit=1):
print(log_entry.author)
except SvnException:
# Handle
pass
svn info
Provides a named tuple with the info returned by the svn info subcommand. Fields are:
"url", "relative_url", "entry_kind", "entry_path", "entry_revision", "repository_root", "repository_uuid",
"wcinfo_wcroot_abspath", "wcinfo_schedule", "wcinfo_depth", "commit_author", "commit_date", "commit_revision".
try:
info = remote.info()
print(info.repository_root)
except SvnException:
# Handle
pass
svn list
Yields the contents only of the remote repository root directory.
try:
for root_content in remote.list():
print(root_content)
except SvnException:
# Handle
pass
# Prints, e.g.:
#
# trunk/
# branches/
# tags/
Contributing
Contributions are generally welcome. Please open an issue to start the contribution process.
Please note that there are currently no plans or dedicated resources to do development or maintenance of this project.
Licenses
This project is compliant with the REUSE Specifications version 3.2.
Applicable licenses are defined in REUSE.toml and the respective license texts
are available in LICENSES/.
Project details
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 svine-0.1.0.tar.gz.
File metadata
- Download URL: svine-0.1.0.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.3 Linux/5.15.153.1-microsoft-standard-WSL2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6373b3b33873ebcf490951184044e933a81cdfdb150495fcc91eaf69fab715c
|
|
| MD5 |
733a1aa86e6ab7bd8e115e80e4e4ed88
|
|
| BLAKE2b-256 |
275bc4aa06dfe50423de60fa34a2a6fe4d021a841cb0d83dc623180c245dcc24
|
File details
Details for the file svine-0.1.0-py3-none-any.whl.
File metadata
- Download URL: svine-0.1.0-py3-none-any.whl
- Upload date:
- Size: 13.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.3 Linux/5.15.153.1-microsoft-standard-WSL2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b1ec9d4b18995ddf44aab6259fb44c7c01f6d90717478af2ba2062541f8bcf2
|
|
| MD5 |
a8cafcadccc45a0ea7ea7320d168769d
|
|
| BLAKE2b-256 |
57d438cdaf2d104456e450ac2af63697af47527f1b9955620a407933230c87c2
|