I am trying to take a string query 'q' from user in my django website and do the following
- Do a google search on 'q'. 
- take the first link after doing the google search on 'q', 
- scrape some data parameters (like views on the review etc.) from the websites, arrange them using these parameters and then display the results. 
I have used google custom search API to make a search engine. I have made this search engine for a specific website. I am unable to do the third step. It seems like I can only use some predefined structured data. But unable to scrape data parameters for customizing search order.
