Lupine Furmen wrote to All <=-
Is there a way to import RSS feeds directly into a message base?
I'm currently working on this very thing to try and auto-post some articles from a hockey site into a FidoNet echo. So far it's
proving to be quite a challenge.
Bill used to do that in sport net and a couple fido areas. I wish I knewhow he
did that but I suspect he used supplied .js files that came withSynchronet but
I don't really know.
I wrote a thing a long time ago to import an RSS or Atom feed into a Synchronet message base. That's what he was using (I recall helping
him get it set up).
I'm not sure how rich Mystic's Python API is wrt message area stuff,
but if it provides you with a way to post a message, then I'm sure a similar tool could be written there.
echicken wrote to Al <=-
Re: RSS Feeds
By: Al to Gamgee on Sat Apr 18 2020 10:23:32
Bill used to do that in sport net and a couple fido areas. I wish
I knew how he did that but I suspect he used supplied .js files
that came with Synchronet but I don't really know.
I wrote a thing a long time ago to import an RSS or Atom feed
into a Synchronet message base. That's what he was using (I
recall helping him get it set up).
Bugz wrote to 3LUPINE FURMEN <=-
Is there a way to import RSS feeds directly into a message base?
-!-
Yes. Bug_ubuntu in the bot channel does this all the time.
It's just a SMOP. (Small Matter Of Programming.) <GRIN>
Basically, use mutil to load messages into the message base.
I have a silly python3 script that reads the RSS feed, mashes it
up and outputs what mutil needs.
Ok, I actually use feedparser, and it does 99% of the RSS work
for me.
The other "challenge" is getting HTML into nice text output.
I accomplish that with a simple call to elinks:
text = check_output( ["elinks", "-dump", "0",
"-dump-width", "72", "--no-references",
"--no-numbering", "./rss_feed.html",
universal_newlines=True, shell=False)
This takes html and makes it nice 72 column format. It
understands (HTML) center, word wrap, tables, etc.
Elinks is a text based browser after all. ;)
I went a little crazy with the mutil ini part, I use jinja2
(template) to generate it.
You're welcome to a copy of it. I'd attach it here, but I'm not
sure how well that would work.
Al wrote to Gamgee <=-
I'm currently working on this very thing to try and auto-post some articles from a hockey site into a FidoNet echo. So far it's
proving to be quite a challenge.
I read that you were doing that so I wish you success.
Bill used to do that in sport net and a couple fido areas. I wish
I knew how he did that but I suspect he used supplied .js files
that came with Synchronet but I don't really know.
Ooooooohhhh.... I would be very interested in that. Is this
thing still available? Is it included in Synchronet somehow? If
Bugz wrote to 9GAMGEE <=-
... He's got Blue Wave fever and it's spreading through the message
bases! ___ Blue Wave/386 v2.30
echicken wrote to Gamgee <=-
Re: Re: RSS Feeds
By: Gamgee to echicken on Sat Apr 18 2020 15:37:00
Ooooooohhhh.... I would be very interested in that. Is this
thing still available? Is it included in Synchronet somehow? If
exec/web-feed-importer.js
I think/hope there are some comments at the top of the file re:
how to set it up; I don't remember much about it at this point.
Bugz wrote to 9GAMGEE <=-
You're welcome to a copy of it. I'd attach it here, but I'm not
sure how well that would work.
Hi Bugz! Very interesting. If you don't mind sharing, I'd love
to have a look at what you've got. If you're willing you could
Ok, email is away. Ask if you've got questions.
I added some line by line comments.
Interesting. It shows the TO with a number in front of it. And the subject is shifted over by one character.
Seems like I've seen that before with bluewave. :(
On 04-18-20 15:46, Gamgee wrote to Al <=-
Yes, I'm trying to revive that hockey echo on Fido, which is one
that Bill used to feed. I saw echicken's reply and am hoping he can provide some assistance. Thanks for the encouragement and help!
I'm gathering from this that SportNet is now dead? I hadn't heard from Bill for ages. I took over the Australian/NZ hub around the time he disappeared, and nothing ever came down the pipe, even though I was
using the same session details.
I'm gathering from this that SportNet is now dead? I hadn't heard from Bill for ages. I took over the Australian/NZ hub around the time he disappeared, and nothing ever came down the pipe, even though I was
using the same session details.
On 04-19-20 15:09, Avon wrote to Vk3jed <=-
On 19 Apr 2020 at 12:48p, Vk3jed pondered and said...
I'm gathering from this that SportNet is now dead? I hadn't heard from Bill for ages. I took over the Australian/NZ hub around the time he disappeared, and nothing ever came down the pipe, even though I was
using the same session details.
I think so. I have not heard from him for ages and even after trying to contact him via several means it's been radio silence. :(
On 04-18-20 21:13, Black Panther wrote to Vk3jed <=-
The last I heard, Bill had some issues where construction workers had caught one of the lines to his house. I don't remember, but I think it
was power. That caused some major issues with the computers, even once power was restored. I think he was in a battle with the insurance companies for replacement hardware.
Of course that was last summer/fall, so I'm not sure what is happening
at this point.
For now, I've actually removed SportNet from my system. If/when he does return, I can always add it back.
On 04-18-20 19:15, Al wrote to bugz <=-
Hello bugz,
Interesting. It shows the TO with a number in front of it. And the subject is shifted over by one character.
Seems like I've seen that before with bluewave. :(
I think that's a Y2K bug in bluewave but there is a fix for that. If anyone needs it just hollar and I'll send it your way.
Yes. Bug_ubuntu in the bot channel does this all the time.
It's just a SMOP. (Small Matter Of Programming.) <GRIN>
Basically, use mutil to load messages into the message base.
I have a silly python3 script that reads the RSS feed, mashes it up
and outputs what mutil needs.
Ok, I actually use feedparser, and it does 99% of the RSS work for me.
exec/web-feed-importer.js
I think/hope there are some comments at the top of the file re: how to
set it up; I don't remember much about it at this point.
Vk3jed wrote to Gamgee <=-
Yes, I'm trying to revive that hockey echo on Fido, which is one
that Bill used to feed. I saw echicken's reply and am hoping he can provide some assistance. Thanks for the encouragement and help!
I'm gathering from this that SportNet is now dead? I hadn't
heard from Bill for ages. I took over the Australian/NZ hub
around the time he disappeared, and nothing ever came down the
pipe, even though I was using the same session details.
Re: Re: RSS Feeds
By: Gamgee to echicken on Sat Apr 18 2020 15:37:00
Ooooooohhhh.... I would be very interested in that. Is this
thing still available? Is it included in Synchronet somehow? If
exec/web-feed-importer.js
I think/hope there are some comments at the top of the file re: how to set it up; I don't remember much about it at this point.
I wrote a thing a long time ago to import an RSS or Atom feed into a Synchronet message base. That's what he was using (I recall helping him get it set up).
exec/web-feed-importer.js
I think/hope there are some comments at the top of the file re: how to
set it up; I don't remember much about it at this point.
On 04-19-20 07:50, Gamgee wrote to Vk3jed <=-
I don't know the status of SportNet. When I inquired about the
status of the (NHL) hockey echo, which had suddenly gone quiet,
there were mixed reports about what was going on. Somebody had
said that Bill (McGarrity) had hardware problems for a while, but
as it dragged on for months that became unlikely. Eventually I
heard that Bill had passed away, although I'm not sure even that
was ever fully confirmed. I think that's probably the case though
because nobody has been able to reach him. So anyway, I'm trying
to revive the semi-automated posting of news articles into that
echo.
Where did Bill live? I found several obits for a Bill McGarrity.
Where did Bill live? I found several obits for a Bill McGarrity.
Toms River, New Jersey
On 04-20-20 04:00, Lupine Furmen wrote to Black Panther <=-
Where did Bill live? I found several obits for a Bill McGarrity.
Toms River, New Jersey
ok, I'm not finding any Obits for Bill McGarrity from Toms River, NJ.
exec/web-feed-importer.js
ok, I'm not finding any Obits for Bill McGarrity from Toms River, NJ.Hmm, it's become a mystery. How far back did you look?
ok, I'm not finding any Obits for Bill McGarrity from Toms RiverHmm, it's become a mystery. How far back did you look?
Several years.
Captain Obvious wrote to Lupine Furmen <=-
ok, I'm not finding any Obits for Bill McGarrity from Toms RiverHmm, it's become a mystery. How far back did you look?
Several years.
Found one for an 83-year-old Bill McGarrity in Tom's River but
there's also another in his 60s (probably the one in question)
that also lives there.
Either way Bill posted a comment in the Front Door facebook
community recently.
Bill used to do that in sport net and a couple fido areas. I wish
I knew how he did that but I suspect he used supplied .js files
that came with Synchronet but I don't really know.
Yes, I'm trying to revive that hockey echo on Fido, which is one
that Bill used to feed. I saw echicken's reply and am hoping he can
provide some assistance. Thanks for the encouragement and help!
On 04-22-20 10:53, Lupine Furmen wrote to Vk3jed <=-
ok, I'm not finding any Obits for Bill McGarrity from Toms River, NJ.Hmm, it's become a mystery. How far back did you look?
Several years.
On 04-22-20 18:37, Gamgee wrote to Captain Obvious <=-
Yep, that's him for sure. I've requested to join that FD page and
hope to engage him in a conversation when able. Thanks.
Mickey wrote to Gamgee <=-
Bill used to do that in sport net and a couple fido areas. I wish
I knew how he did that but I suspect he used supplied .js files
that came with Synchronet but I don't really know.
Yes, I'm trying to revive that hockey echo on Fido, which is one
that Bill used to feed. I saw echicken's reply and am hoping he can provide some assistance. Thanks for the encouragement and help!
Whatever happened to Bill? Last I heard he had some electrical
issues, then poof, he dissappeared. :-(
Sysop: | Eric Oulashin |
---|---|
Location: | Beaverton, Oregon, USA |
Users: | 96 |
Nodes: | 16 (0 / 16) |
Uptime: | 01:53:03 |
Calls: | 4,607 |
Calls today: | 1 |
Files: | 8,491 |
Messages: | 349,543 |