{"id":20196314,"url":"https://github.com/faruktoptas/retrofitrssconverterfactory","last_synced_at":"2025-08-18T16:07:43.084Z","repository":{"id":68604327,"uuid":"87325618","full_name":"faruktoptas/RetrofitRssConverterFactory","owner":"faruktoptas","description":"A Retrofit 2 converter which parses Rss feeds","archived":false,"fork":false,"pushed_at":"2021-02-17T12:52:35.000Z","size":644,"stargazers_count":73,"open_issues_count":7,"forks_count":19,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-10T10:58:42.204Z","etag":null,"topics":["kotlin-library","retrofit2","retrofit2-converter","rss-feed","rss-feed-parser","rss-reader"],"latest_commit_sha":null,"homepage":null,"language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/faruktoptas.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}},"created_at":"2017-04-05T15:25:12.000Z","updated_at":"2022-03-12T18:55:29.000Z","dependencies_parsed_at":"2023-04-15T13:22:30.969Z","dependency_job_id":null,"html_url":"https://github.com/faruktoptas/RetrofitRssConverterFactory","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/faruktoptas/RetrofitRssConverterFactory","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faruktoptas%2FRetrofitRssConverterFactory","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faruktoptas%2FRetrofitRssConverterFactory/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faruktoptas%2FRetrofitRssConverterFactory/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faruktoptas%2FRetrofitRssConverterFactory/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/faruktoptas","download_url":"https://codeload.github.com/faruktoptas/RetrofitRssConverterFactory/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faruktoptas%2FRetrofitRssConverterFactory/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271019723,"owners_count":24685718,"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-18T02:00:08.743Z","response_time":89,"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":["kotlin-library","retrofit2","retrofit2-converter","rss-feed","rss-feed-parser","rss-reader"],"created_at":"2024-11-14T04:23:13.740Z","updated_at":"2025-08-18T16:07:43.036Z","avatar_url":"https://github.com/faruktoptas.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Retrofit2 Rss Converter Factory [![Status](https://travis-ci.org/faruktoptas/RetrofitRssConverterFactory.svg?branch=master)](https://travis-ci.org/faruktoptas/RetrofitRssConverterFactory) [![](https://jitpack.io/v/faruktoptas/RetrofitRssConverterFactory.svg)](https://jitpack.io/#faruktoptas/RetrofitRssConverterFactory) [![API](https://img.shields.io/badge/API-14%2B-blue.svg?style=flat)](https://android-arsenal.com/api?level=10)\n\nA Retrofit2 converter which parses Rss feeds.\n\n# Gradle Dependency\n\nAdd this in your root `build.gradle` file (**not** your module `build.gradle` file):\n\n```gradle\nallprojects {\n\trepositories {\n\t\t...\n\t\tmaven { url \"https://jitpack.io\" }\n\t}\n}\n```\n\nThen, add the library to your module `build.gradle`\n```gradle\ndependencies {\n    implementation 'com.github.faruktoptas:RetrofitRssConverterFactory:0.1.0'\n}\n```\n\n\n## Sample Usage\n```kotlin\ninterface RssService {\n    @GET\n    fun getRss(@Url url: String): Call\u003cRssFeed\u003e\n}\n```\n\n```java\nval retrofit = Retrofit.Builder()\n        .baseUrl(\"https://github.com\")\n        .addConverterFactory(RssConverterFactory.create())\n        .build()\n\nval service = retrofit.create(RssService::class.java)\nservice.getRss(\"RSS_FEED_URL\")\n        .enqueue(object : Callback\u003cRssFeed\u003e {\n            override fun onResponse(call: Call\u003cRssFeed\u003e, response: Response\u003cRssFeed\u003e) {\n                // Populate list with response.body().getItems()\n            }\n\n            override fun onFailure(call: Call\u003cRssFeed\u003e, t: Throwable) {\n                // Show failure message\n            }\n        })\n```\n\n## Contribute\nYou can contribute by opening a pull request to **dev** branch.\nPlease try to push one feature in one commit for a clean commit history.\n\nLicense\n=======\n\n    Copyright 2017 Faruk Toptaş\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffaruktoptas%2Fretrofitrssconverterfactory","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffaruktoptas%2Fretrofitrssconverterfactory","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffaruktoptas%2Fretrofitrssconverterfactory/lists"}