{"id":19489618,"url":"https://github.com/brackendev/rsstools-pharo","last_synced_at":"2025-06-24T06:37:53.691Z","repository":{"id":37390595,"uuid":"121716696","full_name":"brackendev/RSSTools-Pharo","owner":"brackendev","description":"Objects to work with RSS feeds and the Fever API","archived":false,"fork":false,"pushed_at":"2022-06-21T06:21:48.000Z","size":86,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-25T19:35:14.367Z","etag":null,"topics":["fever","fever-api","live-programming","pharo","rss","rss-generator","smalltalk"],"latest_commit_sha":null,"homepage":"http://bracken.dev/","language":"Smalltalk","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/brackendev.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}},"created_at":"2018-02-16T05:04:05.000Z","updated_at":"2023-08-21T11:26:23.000Z","dependencies_parsed_at":"2022-09-15T00:11:24.591Z","dependency_job_id":null,"html_url":"https://github.com/brackendev/RSSTools-Pharo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/brackendev/RSSTools-Pharo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brackendev%2FRSSTools-Pharo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brackendev%2FRSSTools-Pharo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brackendev%2FRSSTools-Pharo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brackendev%2FRSSTools-Pharo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brackendev","download_url":"https://codeload.github.com/brackendev/RSSTools-Pharo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brackendev%2FRSSTools-Pharo/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261622817,"owners_count":23186024,"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","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":["fever","fever-api","live-programming","pharo","rss","rss-generator","smalltalk"],"created_at":"2024-11-10T21:09:23.278Z","updated_at":"2025-06-24T06:37:53.666Z","avatar_url":"https://github.com/brackendev.png","language":"Smalltalk","funding_links":[],"categories":[],"sub_categories":[],"readme":"RSSTools-Pharo\n==============\n\n**Objects to work with [RSS](https://en.wikipedia.org/wiki/RSS) feeds and the [Fever API](https://feedafever.com/api).**\n\n* [Pharo 8](https://www.pharo.org/) reference platform.\n* Examples and tests included.\n\n## TODO\n\n- [ ] Support the latest Pharo release.\n\n## Installation\n\nIn a Pharo playground, _Do it_:\n\n```smalltalk\nMetacello new \n  repository: 'github://brackendev/RSSTools-Pharo/src';\n  baseline: 'RSSTools';\n  load.\n```\n\n## Example Usage\n\n### RSS Feeds\n\nIn a Playground, _Do it_:\n\n```smalltalk\nRSSTools exampleCreateRSSFeedWithURL.\nRSSTools exampleCreateRSSFeedWithXMLDocument.\nRSSTools exampleXMLDocumentWithRSSFeed.\n```\n\n```smalltalk\n\"Create RSS feed object from RSS 2.0 URL\"\nrssFeed := RSSTools createRSSFeedFor: 'https://gist.githubusercontent.com/brackendev/95b25e1b7128f326969eb5060f5d591c/raw/f7978c779bcb00aaa5a6551936e2387590cb303f/sample-rss-2.0-feed.xml'.\n\n\"Create RSS 2.0 XML from feed object\"\nRSSTools createXMLWith: rssFeed.\n```\n\n```smalltalk\n\"Create RSS feed object\"\n\nitems := OrderedCollection new.\n\nrssFeedItem := RSSFeedItem new \ntitle: 'Item 1';\ndescription: 'Item Description';\nlink: 'http://www.hostname.com/'.\n\nitems add: rssFeedItem.\n\nrssFeedItem := RSSFeedItem new \ntitle: 'Item 2';\ndescription: 'Item Description';\nlink: 'http://www.hostname.com/'.\n\nitems add: rssFeedItem.\n\nrssFeedOptionalItems := RSSFeedOptionalItems new \nitems: items.\n\nrssFeedRequiredItems := RSSFeedRequiredItems new \ntitle: 'RSS Feed';\ndescription: 'Feed Description';\nlink: 'http://www.hostname.com/'.\n\nrssFeed := RSSTools createRSSFeedWith: rssFeedRequiredItems and: rssFeedOptionalItems.\n\n\"Create RSS 2.0 XML from feed object\"\nRSSTools createXMLWith: rssFeed.\n```\n\n### Fever API\n\nIn a Playground, _Do it_:\n\n```smalltalk\n\"Create a Fever session\"\nfeverSession := FeverSession sessionWith: 'domain.com' email: 'fever@domain.com' password: 'password'.\n\n\"Retrieve feeds\"\nFeverTools retrieveFeedsFor: feverSession.\n\n\"Retrieve groups\"\nFeverTools retrieveGroupsFor: feverSession.\n\n\"Retrieve Hot Links\"\nFeverTools retrieveHotLinksFor: feverSession page: 1 days: 1.\n\n\"Retrieve items\"\nFeverTools retrieveItemsFor: feverSession.\n```\n\n## Acknowledgements\n\nThis project makes use of the following third-party libraries:\n\n* [NeoJSON](https://github.com/svenvc/NeoJSON)\n* [XMLParser](https://github.com/pharo-contributions/XML-XMLParser)\n* [XMLWriter](https://github.com/pharo-contributions/XML-XMLWriter)\n* [XPath](https://github.com/pharo-contributions/XML-XPath)\n* [Zinc HTTP Components](https://github.com/svenvc/zinc)\n\n## Author\n\nBracken Spencer\n\n* [GitHub](https://www.github.com/brackendev)\n* [LinkedIn](https://www.linkedin.com/in/brackenspencer/)\n* [Twitter](https://twitter.com/brackendev)\n\n## License\n\nRSSTools-Pharo is released under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrackendev%2Frsstools-pharo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrackendev%2Frsstools-pharo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrackendev%2Frsstools-pharo/lists"}