Or, barring that, I need a much better understanding of the autoposting
of Ttext files, where I could get a way to export each entry in the RSS feed to a message on the BBS. Each particular feed being it's own
message area.
There are many ways you could do something like this. First like you
said you could potentially use an existing terminal-based RSS news
client. Some people do not like to do that just in case there are any ways for a user to exit the program to a command shell or something.
Alternatively you could use any sort of script that can get RSS and then post them as a text file into a message base using MUTIL or as bulletins.
Or you could use Mystic Python and create your own RSS reader or just
use it to
download and post data to a message base. Its only a couple of lines of code to do this sort of stuff in Mystic Python. IE:
import feedparser
feed = feedparser.parse("https://finance.yahoo.coim/rss/");
for entry in feed.entries:
<do stuff with the articles>
I believe there are some projects I think that do this sort of thing already for Mystic. They will offer up news articles to browse and so
on, but I am not
sure where to get them they're just things I've seen before.
Sysop: | altere |
---|---|
Location: | Houston, TX |
Users: | 66 |
Nodes: | 4 (0 / 4) |
Uptime: | 00:36:50 |
Calls: | 643 |
Files: | 7,638 |
Messages: | 293,299 |