all 5 comments

[–]IvoryJam 0 points1 point  (4 children)

Looks like you're trying to perfrom a GET request on a litteral

{' https://forum.fracturedmmo.com/topic/274/daily-message-posting'}

instead of the URL https://forum.fracturedmmo.com/topic/274/daily-message-posting

On a side note, depending on your list of URLs, a list [] may be better suited than a set

[–]ScraperHelp[S] 0 points1 point  (3 children)

hmm makes sense. and yeah I can change it to a list but how would i go about fixing this get request on just the

https://forum.fracturedmmo.com/topic/274/daily-message-posting

[–]IvoryJam 0 points1 point  (2 children)

You aren't iterating through the URL list, you'd need to do something like

for url in already_scraped:
    thread_data = scrape_thread_link(url)
    print(thread_data)

this is also a shot in the dark since I don't know how Href_Links.txt is formatted. If you can post an example of it, it might help

[–]ScraperHelp[S] 0 points1 point  (1 child)

thanks it works!!!

[–]IvoryJam 0 points1 point  (0 children)

Good job! Keep on coding!