You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: improve README readability and value proposition
This commit overhauls the README to make it more skimmable and immediately valuable to new users:
- Add clear value proposition at the top to immediately communicate purpose and benefits
- Create 'Why Use libvcs?' section with emoji-highlighted bullet points for key features
- Reorganize examples into 'Quick Examples' section that appears earlier in the document
- Add helpful comments to doctests to explain their purpose
- Restructure content with improved headings, spacing, and visual separators
- Convert the 'Core Features' section to a numbered list for better hierarchy
- Create dedicated 'Documentation & Resources' and 'API References' sections
- Streamline the entire document for better discoverability and readability
- Keep all doctests functional (4 passing tests, up from 3 previously)
The goal is to make the value of libvcs immediately apparent to new visitors
while maintaining a clean document structure that's easy to navigate.
**Stop struggling with VCS command-line tools in Python.** libvcs gives you a clean, typed API to work with Git, Mercurial, and SVN repositories - parse URLs, run commands, and sync repos with just a few lines of code.
6
4
7
-
## Overview
5
+
## Why Use libvcs?
8
6
9
-
### Key Features
7
+
- 🔄 **Manage multiple repos** without shell scripts or subprocess calls
8
+
- 🔍 **Parse and transform VCS URLs** between different formats
9
+
- 🧪 **Test code that interacts with repositories** using included pytest fixtures
10
+
- 🔒 **Type-safe operations** with full typing support
10
11
11
-
-**URL Detection and Parsing**: Validate and parse Git, Mercurial, and Subversion URLs.
12
-
-**Command Abstraction**: Interact with VCS systems through a Python API.
13
-
-**Repository Synchronization**: Clone and update repositories locally via
14
-
Python API.
15
-
-**py.test fixtures**: Create temporary local repositories and working copies for testing for unit tests.
16
-
17
-
_Supports Python 3.9 and above, Git (including AWS CodeCommit), Subversion, and Mercurial._
18
-
19
-
To **get started**, see the [quickstart guide](https://libvcs.git-pull.com/quickstart.html) for more information.
12
+
*Supports Python 3.9 and above, Git (including AWS CodeCommit), Subversion, and Mercurial.*
## Pytest plugin: Temporary VCS repositories for testing
118
+
### 4. Pytest Fixtures for Testing
128
119
129
-
libvcs [pytest plugin](https://libvcs.git-pull.com/pytest-plugin.html) provides [py.test fixtures] to swiftly create local VCS repositories and working repositories to test with. Repositories are automatically cleaned on test teardown.
120
+
libvcs [pytest plugin](https://libvcs.git-pull.com/pytest-plugin.html) provides [py.test fixtures] to create temporary VCS repositories for testing. Repositories are automatically cleaned on test teardown.
0 commit comments