Skip to content
Advertisement

Python Scrape Forum for Title for each Post

I’m new to Web scraping and new to Python. I want to scrape for the title of each Posting at the Forum of the URL, so then a new Post is created with 1 of the Titles below i’d like to receive a Mail with that Link of the Post.

With searching for the div structItem-title i receive the 23 Posting that are on 1 Page. But when i want to print the Text of each Posting i only receive <class ‘str’> for the print(type(first_result.text)) and <class ‘bs4.element.Tag’> for print(type(first_result)) .

Title for search

JavaScript

Code

JavaScript

Advertisement

Answer

When you want to print the text you dont need type().The type() function is just to see which type a variable has (int, str,…). Without type() the code works fine for me, printing the text. This means, on the print statements instead of this:

JavaScript

Write this:

JavaScript

I hope thats what you problem was and I could help you. When you need the URI of the post, you have to get the a Tag inside the post div and extract from this your URI, like this:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement