Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
47 views

I'm using java spring boot and jsoup and recently I upgraded jsoup version to 1.21.1. My code creates search query and searches for it in the document Elements targetElements = document.select(...
user613's user avatar
  • 243
3 votes
1 answer
55 views

I'm rather new to using Beautiful Soup and I'm having some issues splitting some html correctly by only looking at html breaks and ignoring other html elements such as changes in font color etc. The ...
James Brian's user avatar
0 votes
0 answers
96 views

I've seen the docs https://marked.js.org/using_pro#renderer and it has no example for the list i want to customize more detail https://github.com/markedjs/marked/blob/master/src/Tokens.ts#L137 as the ...
zummon's user avatar
  • 996
3 votes
1 answer
91 views

My intent was to give an advise on the question Delete everything between two strings (inclusive) to use the HTMLDocument parser instead of a text based replace command. But somehow the OuterHTML ...
iRon's user avatar
  • 24.4k
1 vote
0 answers
31 views

I'm making an app where students can login to there portal website and it shows their data, however I'm having trouble authenticated users, when I did this project on another website I used ...
abtlb's user avatar
  • 11
-1 votes
2 answers
83 views

The idea is: i wanna collect the name of the flat and its price as a list for every flat on the website. Ive made a simple parser on python, but looks like i cant get any values, since it returns an ...
Danny Mxxre's user avatar
0 votes
1 answer
47 views

I am trying to webscrape the league table for the EPL, but when I do that I am getting duplicate links as well as links to the teams that are not even in the premier league which makes no sense. Here ...
Vignesh's user avatar
  • 27
1 vote
1 answer
159 views

I am building a web-server. I am trying to build a function handler that parses the index.html file in the root directory. It works but when I go to the website on my localhost 127.0.0.1:8080 I get ...
Codemon's user avatar
  • 11
0 votes
1 answer
24 views

Using beautifulsoup and selenium in python, I am trying to scroll down a list of songs in a playlist to parse the song names. The code however will not get past the first 30 songs and scroll down ...
BouckleyBoy's user avatar
-7 votes
1 answer
120 views

I want to replace the following hyperlinks dynamically from <a href="/xsearch2?q=some search/21">21</a> to <a href="/xsearch2?q=some search&page=21">21</a&...
KTH Clips's user avatar
-1 votes
1 answer
30 views

I am trying to parse https://rateyourmusic.com/release/album/tyler-the-creator/igor/reviews/1/ I can access the divs that have class_=review_body if I download the html files locally on to my system. ...
Nate's user avatar
  • 1
0 votes
0 answers
73 views

I am trying to parse an html input using jsoup (v1.18.1), extract elements, extract each attribute value and replace as follows: > with &gt < with &lt The method I'm feeding this code ...
Pallavi's user avatar
0 votes
0 answers
24 views

I'm trying to use the PHP Simple HTML DOM Parser for the first time from here - https://simplehtmldom.sourceforge.io/docs/1.9/index.html Unfortunately, I'm having an issue where it's not returning ...
Lewis Hardisty's user avatar
-2 votes
1 answer
54 views

I have a bookmarklet and JavaScript with which I am extracting data from an html table from a website. For the most part the script works fine however it parses the date wrong. The date, in the HTML ...
SystemWorks's user avatar
0 votes
1 answer
58 views

I have written Apps Script code for Html Parsing using XmlParse. It works fine at my end, my browser and system language both are English as well as my Google Account's. But when I shared the same ...
Amna Irfan's user avatar
2 votes
1 answer
131 views

By default it seems that html.parser.HTMLParser cannot handle self closing tags correctly, if they are not terminated using /. E.g. it handles <img src="asfd"/> fine, but it ...
flawr's user avatar
  • 11.7k
-1 votes
2 answers
30 views

I am trying to scrape earthquake weather data from USGS and my code runs up to the print(soup) line but nothing after that import requests from bs4 import BeautifulSoup url="https://earthquake....
Lumko Mtengwane's user avatar
0 votes
1 answer
51 views

I am not a programmer but I've been digging through the weeds to figure something out on my own and I'm stuck. I have a google spreadsheet with multiple sheets that I need to populate with content ...
notobella designs's user avatar
1 vote
0 answers
57 views

I am working with an SVG file and converting it to JSON using svgson library. Additionally, I am using the svg-path-to-polygons library to decode the d attribute in the path element. However, I am ...
HEMAL's user avatar
  • 430
0 votes
0 answers
534 views

I want to read a webpage and split it into chunks to feed a vector database in a RAG pipeline. This webpage has python code examples on it, but I cannot create chunks with that code text, it is ...
Abraham Martín Expósito's user avatar
0 votes
1 answer
305 views

I am building an application that receives HTML content as strings. I need to verify that these HTML strings are well-formed, meaning I want to parse them and detect lines with errors. During my ...
Juan Rojas's user avatar
-1 votes
1 answer
634 views

Was hoping for help here. I'm trying to web scrape this second table of player goal and shot creation stats on FB Ref for the MLS, but my script is bringing in the first table of team statistics ...
user15039720's user avatar
1 vote
1 answer
442 views

Research So I've found this answer on how to create a vnode list from a simple SVG with one path layer and how to transform that in Vue2. I could not find any good solutions for Vue 3, so I scaffolded ...
Nebulosar's user avatar
  • 1,887
1 vote
1 answer
247 views

Python novice here. I have been learning how to scrape from various baseball sites (Fangraphs, Statcast, Rotowire). I have had success with a few different methods, but the Park Factors table on ...
gredow1979's user avatar
0 votes
0 answers
72 views

I'm trying to extract data from offline saved html pages using jsoup, but while parsing the html document through my java code, I'm getting some garbage value like =3D, =3d&&quote, etc. Is ...
Kunanj Pradhan's user avatar

1
2 3 4 5
122