Convert Html to Json using Python
P粉262073176
2023-08-18 12:05:43
<p>'I'm trying to find a way to convert HTML to JSON using Python, but I can't find an easy way and have to build my own, which doesn't make sense in large HTML.
Can you help me?
I've tried using Chat GPT but that didn't help so this is my last resort'</p>
Don't build your own HTML to JSON converter, use an existing converter, such as
html-to-json
.Use
pip install html-to-json
After installation, add the following code to your code:The way
html
the string is generated depends on the source of the HTML: it can be from a file, a URL, etc...