#π Working with html tags as Python
20 messages Β· Page 1 of 1 (latest)
@grizzled narwhal
Remember to:
- Ask your Python question, not if you can ask or if there's an expert who can help.
- Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
- Explain what you expect to happen and what actually happens.
:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.
you can use beautifulsoup
https://www.geeksforgeeks.org/implementing-web-scraping-python-beautiful-soup/
Ignore the requests part to get webpage, load the html content from the saved files
That would work for me, thank you!
you're welcome
but if you know that at what specific line is the tag at, it is probably better to do it line by line
since you know what line you need to delete
yk, f.readlines().pop(50)
I think i will need to find specific tag with given argument - for example name or id etc... and then use decompose() to fully remove tag. But it is just quick looking at doc
ah alright
on the other hand.. does this solution work with XML tags or any markup language?
no idea, try it and see ig
okay, thanks
yea u can use bs4 for xml too
u just have to specify the parser
got it, thank you
This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.