{"id":34647181,"url":"https://github.com/neuschaefer/vosshub-dl","last_synced_at":"2026-04-13T18:33:03.693Z","repository":{"id":141654815,"uuid":"323416369","full_name":"neuschaefer/vosshub-dl","owner":"neuschaefer","description":"Downloader for vosshub.com","archived":false,"fork":false,"pushed_at":"2024-01-16T19:04:55.000Z","size":6,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-01-17T03:36:47.586Z","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/neuschaefer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSES/MIT.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2020-12-21T18:25:27.000Z","updated_at":"2024-01-16T20:29:03.000Z","dependencies_parsed_at":"2024-01-16T22:27:59.673Z","dependency_job_id":"a1086d31-1f3f-48f2-87a6-a6ce8fe31f7b","html_url":"https://github.com/neuschaefer/vosshub-dl","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/neuschaefer/vosshub-dl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neuschaefer%2Fvosshub-dl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neuschaefer%2Fvosshub-dl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neuschaefer%2Fvosshub-dl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neuschaefer%2Fvosshub-dl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neuschaefer","download_url":"https://codeload.github.com/neuschaefer/vosshub-dl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neuschaefer%2Fvosshub-dl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31766473,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T15:25:13.801Z","status":"ssl_error","status_checked_at":"2026-04-13T15:25:09.162Z","response_time":93,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-12-24T17:48:17.821Z","updated_at":"2026-04-13T18:33:03.685Z","avatar_url":"https://github.com/neuschaefer.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- SPDX-License-Identifier: MIT --\u003e\n\u003c!-- Copyright (C) 2020  J. Neuschäfer --\u003e\n\n# vosshub-dl\n\nvosshub-dl is a tool to download files from \u003chttp://vosshub.com\u003e.\n\n\n## Usage\n\n```\n./vosshub-dl --search 'XH20A101' --resolve-all --download-all --create-symlinks\n```\n\n\n## Theory of operation\n\nDownloading a file from VossHub involves the following steps:\n\n- **Search**: You enter a search term, for example _XH20A101_ into the search\n  bar, and the browser navigates to \u003chttp://vosshub.com/products/search/XH20A101\u003e.\n  The server returns a HTML page with all search results:\n\n | Category  | Brand      | Model                                 |  Source Code |\n |-----------|------------|---------------------------------------|--------------|\n | TFT-LCD   | TELEFUNKEN | 17MB110 20270L VG T.FUNKEN XH20A101   |  Readme.txt  |\n |           |            |                                       |  apm         |\n |           |            |                                       |  3.10.23     |\n |           |            |                                       |  ...         |\n | TFT-LCD   | TELEFUNKEN | 17MB110 20270L VG T.FUNKEN XH20A101-W |  Readme.txt  |\n |           |            |                                       |  apm         |\n |           |            |                                       |  ...         |\n\n\n Each search result consists of a category, brand, and model, as well as a list\n of files.\n\n\n- **Resolving the download URL**: Each file in the source code column consists\n  of a file ID, a product ID, and a name.\n\n  When you click the link, you are presented with a warranty disclaimer, a\n  request to enter a note, and a download button. When the download button is\n  clicked, a POST request is made to the current page, with the following form data:\n\n  - `form[agree]` = 1\n  - `form[purpose]` = 1\n  - `form[note]` = something\n  - `form[download]` =\n  - `form[file]` = (insert file ID here)\n  - `form[product]` = (insert product ID here)\n  - `form[_token]` = (a session-specific predefined value contained in the search result page)\n\n  The server responds with a redirect to a file such as\n  `http://vosshub.com/files/d8bd2b5cd394699376be8a99f7243800.docx`.\n\n  The following requirements apply:\n\n  - The URL must start with `http://vosshub.com/products/search/`;\n    `http://vosshub.com/products/search` does not work.\n  - The `form[purpose]`, `form[product]`, and `form[file]` form fields must be\n    provided.\n\n\n- **Downloading the file**: With knowledge of the file URL from the previous\n  step, it can be downloaded at any time.\n\n  Note that in order to generate a good name, the name displayed on the search\n  result page (for example _sha2_) and the extension of the download location\n  (_/files/ca32d8295b1f37a8bf558b72ea3360df.7z_) can be combined.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneuschaefer%2Fvosshub-dl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneuschaefer%2Fvosshub-dl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneuschaefer%2Fvosshub-dl/lists"}