Featured Post

Scraping Website: How to Write a Script in Python

Image
Here's a python script that you can use as a model to scrape a website. Python script The below logic uses BeautifulSoup Package for web scraping. import requests from bs4 import BeautifulSoup url = 'https://www.example.com' response = requests.get(url) soup = BeautifulSoup(response.text, 'html.parser') # Print the title of the webpage print(soup.title.text) # Print all the links in the webpage for link in soup.find_all('a'):     print(link.get('href')) In this script, we first import the Requests and Beautiful Soup libraries. We then define the URL we want to scrape and use the Requests library to send a GET request to that URL. We then pass the response text to Beautiful Soup to parse the HTML contents of the webpage. We then use Beautiful Soup to extract the title of the webpage and print it to the console. We also use a for loop to find all the links in the webpage and print their href attributes to the console. This is just a basic example, but

SMAC-Persistent Systems

The global leader in software product and technology services, today announced it has entered into a definitive agreement to acquire privately-held CloudSquads, an innovative consultancy that has created social communities for over 70 global companies. CloudSquads deploys, integrates and runs social communities on all leading social customer platforms.  Terms of the agreement were not disclosed and are subject to certain closing conditions which are expected to be completed in the coming financial quarter.

According to Forrester Research Senior Analyst, Kim Celestre in her July 9, 2013 blog post entitled Just Published: The Forrester WAVE: Social Depth Platforms, Q3 2013, “Social media has transformed the way that buyers discover, explore, and engage with a brand. As a result, many marketers have invested in establishing a presence on popular social networks like Facebook and Twitter yet are struggling with how to convert interactions on these social networks to a purchase.”
CloudSquads helps companies develop a strategy for engaging with the modern social customer across all customer facing functions including brand, marketing, sales and support.  The company implements platforms which provide rich capabilities that transform these interactions into healthy communities and then integrates those platforms with companies’ internal systems allowing them to better know and serve their customers.
“Social Communities are now an increasingly critical part of the digital transformation in enterprises, and this market is poised for significant growth. Persistent Systems is delighted to welcome on board the entire CloudSquads’ team of social computing domain and technology specialists,” said Ranga Puranik, President, Persistent Systems, Inc. “CloudSquads complements our software product development and SMAC (Social, Mobile, Analytics, Cloud) technology expertise with consulting, IP connectors and implementation services around social community platforms and is perfectly aligned to better serve our ISV and enterprise customer base.”

Comments

Popular posts from this blog

7 AWS Interview Questions asked in Infosys, TCS

How to Decode TLV Quickly