Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 801791
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T23:29:50+00:00 2026-05-14T23:29:50+00:00

Starting from an Html input like this: <p> <a href=http://www.foo.com>this if foo</a> <a href=http://www.bar.com>this

  • 0

Starting from an Html input like this:

<p>
<a href="http://www.foo.com">this if foo</a>
<a href="http://www.bar.com">this if bar</a>
</p>

using BeautifulSoup, i would like to change this Html in:

<p>
<a href="http://www.foo.com">this if foo[1]</a>
<a href="http://www.bar.com">this if bar[2]</a>
</p>

saving parsed links in a dictionary with a result like this:

links_dict = {"1":"http://www.foo.com","2":"http://www.bar.com"}

Is it possible to do this using BeautifulSoup? Any valid alternative?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T23:29:50+00:00Added an answer on May 14, 2026 at 11:29 pm

    This should be easy in Beautiful Soup.

    Something like:

    from BeautifulSoup import BeautifulSoup
    from BeautifulSoup import Tag
    
    count = 1
    links_dict = {}
    soup = BeautifulSoup(text)
    for link_tag in soup.findAll('a'):
      if link_tag['href'] and len(link_tag['href']) > 0:
        links_dict[count]  = link_tag['href']  
        newTag = Tag(soup, "a", link_tag.attrs)
        newTag.insert(0, ''.join([''.join(link_tag.contents), "[%s]" % str(count)]))
        link_tag.replaceWith(newTag)
        count += 1
    

    Result of executing this on your text:

    >>> soup
    <p>
      <a href="http://www.foo.com">this if foo[1]</a>
      <a href="http://www.bar.com">this if bar[2]</a>
    </p>
    
    >>> links_dict
    {1: u'http://www.foo.com', 2: u'http://www.bar.com'}
    

    The only problem I can foresee with this solution is if your link text contains subtags; then you couldn’t do ''.join(link_tag.contents); instead you would need to navigate to the rightmost text element.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Starting from an Html input like this: <p> <a href=http://www.foo.com>this if foo</a> <a href=http://www.bar.com>this
This is my code : HTML <div style="float:left; width:100px;"> <a class="openTab" href="http://www.link.it">1 Line</a> <div
I'm starting to migrate some html generation tasks from a server-side framework to the
Starting from scratch is hard. How do you do it? I quite like color
Starting from Android 3.2 I have this strange problem. It's very easy to reproduce:
Starting from this official statement that all xyAndroid versions previous API 11 doesn't support
I'm starting from here : With that code : <!DOCTYPE html> <html> <head><title>Bank application</title>
OK, so I am using a jQuery plugin called CountUp: http://blog.ogulcanorhan.com/weekend-project-jquery-countup-plugin/ The script is
Saying that I have this HTML form: <form id=form> <input id=input_el type=text> <input id=submit_el
I would like to put a footnote in my PDF, created by MPDF from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.