import requests from bs4 import BeautifulSoup # --- Scrape Target URL # Desc: Data on the HTML # # Return: html data # --- def scrape(url): r = requests.get(url) if r.status_code == 200: soup = BeautifulSoup(r.content, 'html.parser') output = soup print (output) if __name__ == "__main__": scrape("https://play.google.com/store/apps/category/HEALTH_AND_FITNESS?hl=en_US")