{"id":30463666,"url":"https://github.com/ajaikumarvs/ixio-data","last_synced_at":"2025-08-24T00:25:56.933Z","repository":{"id":309958523,"uuid":"1038185758","full_name":"ajaikumarvs/ixio-data","owner":"ajaikumarvs","description":"Manifest files for Ixio Etcher","archived":false,"fork":false,"pushed_at":"2025-08-22T05:23:40.000Z","size":98,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"zero","last_synced_at":"2025-08-22T05:35:57.723Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ajaikumarvs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-14T19:00:19.000Z","updated_at":"2025-08-22T05:23:43.000Z","dependencies_parsed_at":"2025-08-14T21:18:39.070Z","dependency_job_id":"3546505f-44e4-480f-a04a-a94b137888d3","html_url":"https://github.com/ajaikumarvs/ixio-data","commit_stats":null,"previous_names":["ajaikumarvs/ixio-data"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ajaikumarvs/ixio-data","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajaikumarvs%2Fixio-data","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajaikumarvs%2Fixio-data/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajaikumarvs%2Fixio-data/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajaikumarvs%2Fixio-data/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ajaikumarvs","download_url":"https://codeload.github.com/ajaikumarvs/ixio-data/tar.gz/refs/heads/zero","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajaikumarvs%2Fixio-data/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271777960,"owners_count":24819246,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-23T02:00:09.327Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-08-24T00:25:55.956Z","updated_at":"2025-08-24T00:25:56.921Z","avatar_url":"https://github.com/ajaikumarvs.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ixio ISO Auto-Updater\n\nIxio ISO Auto-Updater is a cross-platform ISO fetcher that automatically retrieves the latest download links and SHA256 checksums for popular Linux distributions (and soon Windows releases).\n\nThis repository uses Python scripts and GitHub Actions to keep `isos/linux.json` up-to-date automatically.\n\n## Features\n\n- Fetches the latest versions of 14 popular Linux distributions:\n  - Ubuntu\n  - Debian\n  - Fedora Workstation\n  - Arch Linux\n  - Linux Mint Cinnamon\n  - Manjaro KDE\n  - openSUSE Tumbleweed\n  - openSUSE Leap\n  - Pop!_OS\n  - elementary OS\n  - Zorin OS\n  - MX Linux\n  - Kali Linux\n  - CachyOS\n\n- Extracts version, architecture, direct ISO URL, and SHA256 checksum\n- Stores everything in a single JSON file with the following structure:\n\n```json\n{\n  \"last_updated\": \"2025-08-14T12:34:56Z\",\n  \"distros\": [\n    {\n      \"name\": \"Ubuntu\",\n      \"version\": \"24.04.1\",\n      \"arch\": [\"x86_64\"],\n      \"download_url\": \"https://releases.ubuntu.com/24.04.1/ubuntu-24.04.1-desktop-amd64.iso\",\n      \"checksum\": {\n        \"sha256\": \"abc123...\",\n        \"url\": \"https://releases.ubuntu.com/24.04.1/SHA256SUMS\"\n      }\n    }\n  ]\n}\n```\n\n- Fully automated updates via GitHub Actions (runs daily)\n- No manual version tracking — all data is scraped live\n\n## How It Works\n\n### 1. Python Fetcher (`scripts/update_linux.py`)\n\nThe Python script contains fetcher functions for each distribution and uses `requests`, `BeautifulSoup`, and regex to:\n- Find the latest release folder\n- Identify the correct ISO filename\n- Download the checksum file\n- Extract the SHA256 hash for that ISO\n- Compile all distribution information into `isos/linux.json`\n\n### 2. JSON Output\n\nThe output is saved in `isos/linux.json` and always contains:\n- The last update time in UTC\n- Complete distribution information used by Ixio to display the latest ISO download list\n\n### 3. GitHub Actions (`.github/workflows/update_linux.yml`)\n\nThe workflow:\n- Runs daily at midnight UTC (or on manual trigger)\n- Installs Python and dependencies\n- Executes `update_linux.py`\n- Commits the updated `linux.json` back to the repository\n\n## Usage\n\n### Run Locally\n\n```bash\n# Clone repository\ngit clone https://github.com/ajaikumarvs/ixio-data.git\ncd ixio-data\n\n# Install dependencies\ncd scripts\npip install -r requirements.txt\n\n# Run the updater\npython scripts/update_linux.py\n```\n\nOutput will be saved in `isos/linux.json`.\n\n### Requirements\n\n- Python 3.8+\n- Dependencies:\n  - `requests`\n  - `beautifulsoup4`\n  - `lxml`\n  - `python-dateutil`\n\nInstall dependencies with:\n```bash\npip install -r requirements.txt\n```\n\n## Automation\n\nThis repository includes `.github/workflows/update_linux.yml` which:\n\n1. Runs daily or on-demand\n2. Generates updated `isos/linux.json`\n3. Commits changes automatically\n\n## Future Plans\n\n- Add Windows ISO fetcher\n- Add macOS recovery image links\n- Include multiple architectures (ARM, RISC-V)\n\n## License\n\nMIT License – You're free to use and adapt.\n\n## Example Integration\n\nYour application can integrate with the data like this:\n\n```python\nimport json\n\nwith open(\"isos/linux.json\") as f:\n    data = json.load(f)\n\nfor distro in data[\"distros\"]:\n    print(f\"{distro['name']} {distro['version']} → {distro['download_url']}\")\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fajaikumarvs%2Fixio-data","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fajaikumarvs%2Fixio-data","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fajaikumarvs%2Fixio-data/lists"}