Automated tracker for the latest Tor Expert Bundle and Tor Browser versions with download links.
- Automatically scrapes Tor Archive for all available versions
- Separates Export Builder and Browser versions for clean data organization
- Groups downloads by operating system (Windows, macOS, Linux, Android)
- Filters out debug files, signatures, and other unwanted files
- Runs automatically every 12 hours via GitHub Actions
- Provides structured JSON output for easy integration
This repository is fully automated:
- Runs every 12 hours via scheduled workflow
- Updates version data automatically
- Commits and pushes changes to the repository
Access the latest Tor version data directly via these raw GitHub links:
- Export Versions List - Simple array of all discovered Tor version numbers
- Export Version Data - Export builder files with download links
- Export Grouped by OS - Export files organized by operating system
- Browser Version Data - Browser files with download links
- Browser Grouped by OS - Browser files organized by operating system
- Blank Versions - List of versions with no valid download files
data/json/export_versions.json- Export builder version data with download linksdata/json/export_versions_grouped.json- Export files grouped by operating system
data/json/browser_versions.json- Browser version data with download linksdata/json/browser_versions_grouped.json- Browser files grouped by operating system
data/json/versions_list.json- List of all discovered versionsdata/json/blanks.json- Versions with no valid downloads
-
Install dependencies:
pip install -r requirements.txt
-
Run the scraper:
python main.py
The repository is configured to automatically update every 12 hours. No manual intervention required.
{
"version": "13.0.1",
"files": [
{
"file_name": "tor-expert-bundle-13.0.1-windows-x86_64.tar.gz",
"url": "https://archive.torproject.org/tor-package-archive/torbrowser/13.0.1/tor-expert-bundle-13.0.1-windows-x86_64.tar.gz"
}
]
}{
"version": "13.0.1",
"files": [
{
"file_name": "torbrowser-install-13.0.1_ALL.exe",
"url": "https://archive.torproject.org/tor-package-archive/torbrowser/13.0.1/torbrowser-install-13.0.1_ALL.exe"
}
]
}The project uses an efficient 3-tier cache system:
data/cache/all/- Raw files with minimal filtering (common unwanted files removed)data/cache/export/- Export builder specific filesdata/cache/browser/- Browser specific files