I'm trying to make an RSS scraper to pull articles from RSS feeds and export them to text files, to be used either in my BBS bulletins or message areas
I found a web page that supposedly does exactly this, however using the code and testing I get the Folliwing error:
python scraping.py
File "scraping.py", line 5
def
hackernews_rss('https://news.ycombinator.com/rss'):
^
SyntaxError: invalid
syntax
The code is:
# scraping function
def hackernews_rss('https://news.ycombinator.com/rss'):
try:
r = requests.get()
return print('The scraping job succeeded: ', r.status_code)
except Exception as e:
print('The scraping job failed. See exception: ')
print(e)print('Starting scraping')
hackernews_rss()
print('Finished scraping')
Any idea what I flubbed?
python scraping.py
File "scraping.py", line 5
def
hackernews_rss('https://news.ycombinator.com/rss'):
^
SyntaxError: invalid
syntax
The code is:
# scraping function
def hackernews_rss('https://news.ycombinator.com/rss'):
There should be a variable there between the (), not a constant in this function definition.
try:
r = requests.get()
Is 'requests' defined of set somewhere? I don't see it.
python scraping.py
File "scraping.py", line 5
def
hackernews_rss('https://news.ycombinator.com/rss'):
^
SyntaxError: invalid
syntax
The code is:
# scraping function
def hackernews_rss('https://news.ycombinator.com/rss'):
There should be a variable there between the (), not a constant in
this function definition.
Ah, so my source is wrong.
| Sysop: | Eric Oulashin |
|---|---|
| Location: | Beaverton, Oregon, USA |
| Users: | 105 |
| Nodes: | 16 (0 / 16) |
| Uptime: | 08:23:52 |
| Calls: | 7,094 |
| Calls today: | 13 |
| Files: | 9,223 |
| D/L today: |
368 files (61,580K bytes) |
| Messages: | 374,399 |
| Posted today: | 12 |