{"id":46729153,"url":"https://github.com/synfinatic/rss4transmission","last_synced_at":"2026-03-09T14:38:16.284Z","repository":{"id":152255505,"uuid":"624187094","full_name":"synfinatic/rss4transmission","owner":"synfinatic","description":"A RSS Feed to Transmission Service","archived":false,"fork":false,"pushed_at":"2025-08-21T17:18:02.000Z","size":388,"stargazers_count":1,"open_issues_count":7,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-21T19:58:35.128Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/synfinatic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2023-04-05T23:44:11.000Z","updated_at":"2025-08-21T17:18:04.000Z","dependencies_parsed_at":"2025-07-18T21:31:54.935Z","dependency_job_id":null,"html_url":"https://github.com/synfinatic/rss4transmission","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/synfinatic/rss4transmission","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synfinatic%2Frss4transmission","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synfinatic%2Frss4transmission/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synfinatic%2Frss4transmission/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synfinatic%2Frss4transmission/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/synfinatic","download_url":"https://codeload.github.com/synfinatic/rss4transmission/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synfinatic%2Frss4transmission/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30299114,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T14:33:48.460Z","status":"ssl_error","status_checked_at":"2026-03-09T14:33:48.027Z","response_time":61,"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":"2026-03-09T14:38:11.946Z","updated_at":"2026-03-09T14:38:16.241Z","avatar_url":"https://github.com/synfinatic.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RSS4Transmission\n\n[![Tests](https://github.com/synfinatic/rss4transmission/actions/workflows/tests.yml/badge.svg)](https://github.com/synfinatic/rss4transmission/actions/workflows/tests.yml)\n[![golangci-lint](https://github.com/synfinatic/rss4transmission/actions/workflows/golangci-lint.yml/badge.svg)](https://github.com/synfinatic/rss4transmission/actions/workflows/golangci-lint.yml)\n\n## About\n\nRSS4Transmission is a tool for fetching torrents over RSS for [Transmission](\nhttps://transmissionbt.com).\n\n## Why?\n\nThere are already a few tools that do this... most notably [rss-transmission](\nhttps://github.com/nning/transmission-rss) is the closest, and I frankly stole\na lot of concepts from it.\n\nThe biggest difference is that RSS4Transmission is designed for OCD people who\npull down a lot of different files from the same feed and want them saved to\ndifferent directories.  I wanted something that would be \"nice\" and only\nread the RSS feed once, even though I've got 10 different categories.\n\n## Images\n\nPre-built images are available on [DockerHub](https://hub.docker.com/r/synfinatic/rss4transmission).\n\n## Gluetun Compatability\n\nRSS4Transmission now supports integrating with [Gluetun](https://github.com/qdm12/gluetun).\n\nWhat this means if you launch Transmission, RSS4Transmission and Gluetun under [docker-compose](docker-compose-gluetun.yaml),\nRSS4Transmission will take care of restarting the VPN and updating Transmission with the appropriate\n[peer port](https://github.com/transmission/transmission/blob/main/docs/Port-Forwarding-Guide.md) information...\nassuming that [Gluetun supports your VPN provider](https://github.com/qdm12/gluetun-wiki/blob/main/setup/advanced/vpn-port-forwarding.md)\nfor that.\n\nNote that this functionality is currently experimental.\n\n## Configuration\n\n### Basic Configuration\n\nNote that this config file works with [docker-compose.yaml](docker-compose.yaml)\n\n```yaml\n# how to talk to transmission, defaults shown below\nTransmission:\n    Host: localhost\n    Port:     9091\n    Username: admin\n    Password: admin\n    HTTPS:    false\n    Path:     /transmission/rpc\n\n# SeenFile can be overridden via --send-file option\nSeenFile: /path/to/seen.json\nSeenCacheDays: 30 # default\n\n# examples...\nFeeds:\n    First:\n        DownloadPath: /torrents/first\n        Url: https://rss.foo.com/feed\n        Regexp:\n            - (?i)^MyFancyContent.*\n            - (?i)^KindaFancyContent.*\n        Exclude:\n            - .*720p.*\n        MinSize: 100MB\n        MaxSize: 10GB\n    Second:\n        DownloadPath: /torrents/second\n        Url: https://rss.foo.com/feed\n        Regexp:\n            - (?i)^OtherStuff.*\n        Exclude:\n            - .*Highlights.*\n    NeatStuff:\n        DownloadPath: /torrents/last\n        Url: https://rss.barbaz.com/rss?apikey=xxxxx\n        Regexp:\n            - (?i)^NeatStuff.*\n```\n\n### Gluetun Configuration\n\nNote that this config file works with [docker-compose-gluetun.yaml](docker-compose-gluetun.yaml)\n\n```yaml\n# When using gluetun, the networking is slightly different because\n# we are using Docker service networking\nTransmission:\n    Host: gluetun\n    Port:     9091\n    Username: admin\n    Password: admin\n\nGluetun:\n    Host: gluetun\n    Port: 8000\n    RotateTime: 12h\n    ClosedPortChecks: 5\n\n# SeenFile can be overridden via --send-file option\nSeenFile: /path/to/seen.json\nSeenCacheDays: 30 # default\n\n# your feeds go here...\n```\n\n### License\n\nRSS4Transmission is licensed under the [GPLv3](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsynfinatic%2Frss4transmission","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsynfinatic%2Frss4transmission","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsynfinatic%2Frss4transmission/lists"}