Python Forum
How to get the href value of a specific word in the html code
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to get the href value of a specific word in the html code
#1
I want to create a code wich gets the href=... of a specific name in the html code. A part of the html code looks like this:

class="name-link" href="/shop/pants/xz7ypjoam/i4lsmo5e7">Cargo Pant</a> == $0

there are more parts in the html code that look like this. Cause there are multiple products on the website (Supreme). I have got the name of the product -> Cargo Pant . Does someone know how I can get the href value from this specific line instead of a other line in the html code wich also includes a href= ? This was my code wich printed out all the href links on the page. But i just want that specific link from the product with Tupac Hologram Tee as the name.
session = HTMLSession()
r = session.get(url)
word = r.html.links
print(word)
This is my code uptill now. This prints out all the href values on the page. But i just want a specific value. The url to the page is:
https://www.supremenewyork.com/shop/all/pants
Reply


Messages In This Thread
How to get the href value of a specific word in the html code - by julio2000 - Mar-05-2020, 01:30 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Populating list items to html code and create individualized html code files ChainyDaisy 0 1,625 Sep-21-2022, 07:18 PM
Last Post: ChainyDaisy
  Python Obstacles | Karate | HTML/Scrape Specific Tag and Store it in MariaDB BrandonKastning 8 3,291 Nov-22-2021, 01:38 AM
Last Post: BrandonKastning
  Extract Href URL and Text From List knight2000 2 9,511 Jul-08-2021, 12:53 PM
Last Post: knight2000
  BeautifulSoup pagination using href rhat398 1 2,465 Jun-30-2021, 10:55 AM
Last Post: snippsat
  Accessing a data-phone tag from an href KatMac 1 2,957 Apr-27-2021, 06:18 PM
Last Post: buran
  HTML multi select HTML listbox with Flask/Python rfeyer 0 4,765 Mar-14-2021, 12:23 PM
Last Post: rfeyer
  Monitor specific line of code and get alert Olimpiarob 0 1,569 Jul-08-2020, 10:06 AM
Last Post: Olimpiarob
  How to fix looking specific word in a webpage BSOD 0 1,888 Jun-16-2020, 08:01 PM
Last Post: BSOD
  Python3 + BeautifulSoup4 + lxml (HTML -> CSV) - How to loop to next HTML/new CSV Row BrandonKastning 0 2,424 Mar-22-2020, 06:10 AM
Last Post: BrandonKastning
  Web crawler extracting specific text from HTML lewdow 1 3,453 Jan-03-2020, 11:21 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020