Subj : Re: Import a RSS feed in to a message base
To : Jeff Earle
From : g00r00
Date : Sat Apr 03 2021 12:20 pm
JE> I agree. I have searched for any 3rd party apps that would do it but I
JE> could not find anything. I have no experience with Python. That will
JE> take a little more searching. I might have to find someone to create the
JE> code as it would take me a while to teach myself.
I don't know of any specifically but I do know I've seen a few that scrape news from various sources. Unfortunately I haven't been keeping up with the modding scene all that much these days so I can't point you in the right direction.
In terms of Mystic Python it can be done with a few lines of code, but obviously you'd need to understand Python.
import feedparser
NewsFeed = feedparser.parse("
https://timesofindia.indiatimes.com/rssfeedstopstories.cms")
writeln("Number of RSS posts: " + str(len(NewsFeed.entries)))
entry = NewsFeed.entries[1]
writeln("Post Title: " + entry.title);
--- Mystic BBS v1.12 A47 2021/04/01 (Windows/64)
* Origin: Sector 7 | Mystic WHQ (1:129/215)