Python Forum
Accessing a data-phone tag from an href
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Accessing a data-phone tag from an href
#1
I am working on a small project using Beautiful Soup.
How would I access the phone number of this :

Output:
<a href="javascript:void(0)" class="mlr__item__cta jsMlrMenu" data-phone="709-635-7316">
I tried this, but not working...

co_phone = each_co.find(class_="mlr__item__cta jsMlrMenu" "data-phone")
buran write Apr-27-2021, 06:14 PM:
Please, use proper tags when post code, traceback, output, etc. This time I have added tags for you.
See BBcode help for more info.
Reply
#2
Did you check the docs?

from bs4 import BeautifulSoup

html = '''<a href="javascript:void(0)" class="mlr__item__cta jsMlrMenu" 
data-phone="709-635-7316">some tetxt</a>'''
soup = BeautifulSoup(html, 'html.parser')
 	
atag = soup.find(class_="mlr__item__cta jsMlrMenu")
print(atag.get('data-phone'))
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Extract Href URL and Text From List knight2000 2 8,965 Jul-08-2021, 12:53 PM
Last Post: knight2000
  BeautifulSoup pagination using href rhat398 1 2,402 Jun-30-2021, 10:55 AM
Last Post: snippsat
  Instagram Phone Emulation kristianpython 0 2,008 May-19-2020, 11:54 AM
Last Post: kristianpython
  How to get the href value of a specific word in the html code julio2000 2 3,201 Mar-05-2020, 07:50 PM
Last Post: julio2000
  Web Scraping on href text Superzaffo 11 7,341 Nov-16-2019, 10:52 AM
Last Post: Superzaffo
  Django - Am I in the right direction for creating the models of my Phone Review appli shawnmichaels583583 0 1,827 Oct-15-2019, 06:25 AM
Last Post: shawnmichaels583583
  error accessing data kaykay 1 2,068 Dec-12-2018, 06:26 PM
Last Post: nilamo
  Scrapy Picking What to Output Href or Img soothsayerpg 1 2,704 Aug-02-2018, 10:59 AM
Last Post: soothsayerpg
  Flask - Opening second page via href is failing - This site can’t be reached rafiPython1 2 5,476 Apr-11-2018, 08:41 AM
Last Post: rafiPython1

Forum Jump:

User Panel Messages

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