
Security News
Opengrep Adds Apex Support and New Rule Controls in Latest Updates
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
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
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.