
Security News
New CVE Forecasting Tool Predicts 47,000 Disclosures in 2025
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
GitFleet is a high-performance Python library (powered by Rust) for managing and analyzing Git repositories in bulk. It supports asynchronous cloning, parallel git blame and commit analysis using Rayon, and integrates with GitHub, GitLab, and BitBucket APIs. Designed for large-scale repository analysis, GitFleet handles API token rotation, monitors rate limits, and provides detailed progress tracking across operations.
High-performance Git repository analysis and management in Python, powered by Rust
GitFleet is a high-performance Python library built in Rust for asynchronous Git repository analysis at scale. It combines the speed and memory efficiency of Rust with the ease of use of Python's async/await syntax.
It supports bulk operations like:
git blame
across many files (10-50x faster than pure Python)Ideal for:
Visit our comprehensive documentation for:
pip install gitfleet
Requires Python 3.8+ and a Rust toolchain for building native extensions. Pre-built wheels are available for most common platforms.
import asyncio
from gitfleet import RepoManager
async def main():
manager = RepoManager()
await manager.clone_repos([
"https://github.com/user/repo1.git",
"https://github.com/user/repo2.git"
])
results = await manager.blame_all("target_file.py")
print(results)
asyncio.run(main())
GitFleet is designed to interoperate with:
Layer | Technology | Purpose |
---|---|---|
Rust Core | git2 , rayon | Fast Git ops and parallelism |
Python Interface | PyO3 , maturin | Native bindings and async APIs |
Async Clients | httpx , aiohttp | GitHub/GitLab API access |
Token Manager | Custom | Multi-token rotation & rate monitoring |
We welcome contributions! To get started:
git clone https://github.com/bmeddeb/gitfleet
cd gitfleet
pip install -e ".[dev]"
Run tests with:
pytest
For more details on contributing, see our development documentation.
GitFleet is inspired by the needs of large-scale Git analysis in grading, research, and dev tooling. Built with ❤️ using Rust + Python.
FAQs
GitFleet is a high-performance Python library (powered by Rust) for managing and analyzing Git repositories in bulk. It supports asynchronous cloning, parallel git blame and commit analysis using Rayon, and integrates with GitHub, GitLab, and BitBucket APIs. Designed for large-scale repository analysis, GitFleet handles API token rotation, monitors rate limits, and provides detailed progress tracking across operations.
We found that gitfleet demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.