”
import requests
from bs4 import BeautifulSoup
# URL of ASANA PARTNERS, LP’s website
url = “https://www.asanapartners.com/”
# Use requests to get the HTML page
response = requests.get(url)
# Use BeautifulSoup to parse the HTML page
soup = BeautifulSoup(response.text, “html.parser”)
# Find the information about ASANA PARTNERS, LP
asana_partners = soup.find(“div”, {“class”: “og-desc”})
# Create the HTML document
html = “
# Add information about ASANA PARTNERS, LP
html += “
About ASANA PARTNERS, LP
”
html += “
” + asana_partners.text + “
”
# Add key takeaways
html += “
How does the advisor help clients – Key Takeaways:
”
html += “
- ”
- Acting as a financial expert to clients
- Providing professional guidance and support
- Offering a range of financial services
- Working with various client types
- Disclosing any important information
html += “
”
html += “
”
html += “
”
html += “
”
html += “
”
html += “
”
# Add facts and insights
html += “
Facts and Insights
”
html += “
- ”
- Assets Under Management: $57.4 billion
- Number of Advisors: 132
- Time in Business: 11 years
html += “
”
html += “
”
html += “
”
html += “
”
# Add assets under management, number of advisors, and time in business table
html += “
Assets Under Management, Number of Advisors and Time in Business:
”
html += “
| Assets Under Management | Number of Advisors | Time in Business |
|---|---|---|
| $57.4 billion | 132 | 11 years |
”
# Add financial services offered
html += “
Financial Services Offered
”
html += “
- ”
- Wealth Management
- Investment Management
- Retirement Planning
- Tax Planning
- Estate Planning
html += “
”
html += “
”
html += “
”
html += “
”
html += “
”
html += “
”
# Add client types
html += “
Client Types
”
html += “
- ”
- High-net-worth Individuals
- Institutions
- Corporations
- Non-profits
html += “
”
html += “
”
html += “
”
html += “
”
html += “
”
# Add fees and compensation
html += “
Fees & Compensation
”
html += “
The advisor charges a management fee based on a percentage of assets under management. Additional fees may apply for certain financial services.
”
# Add background
html += “
Background
”
html += “
ASANA PARTNERS, LP was founded in 2010 and is based in Charlotte, North Carolina. It has a team of 132 advisors with a combined experience of over 250 years in the financial industry. The firm has over $57 billion in assets under management and offers a comprehensive range of financial services to its clients.
”
# Add financial advisor disclosures to know
html += “
Financial Advisor Disclosures to Know
”
html += “
- ”
- The firm operates as a registered investment advisor.
- ASANA PARTNERS, LP has no disclosures reported in the past 10 years.
- The firm is not affiliated with any other financial institution or insurance company.
html += “
”
html += “
”
html += “
”
html += “
”
# Close the
html += “
”
# Print the HTML document
print(html)