From e5c250ebc1f406f54af23d609720517130b882cf Mon Sep 17 00:00:00 2001 From: Psychiquest <37347900+Psychiquest@users.noreply.github.com> Date: Wed, 3 Oct 2018 01:29:52 +0530 Subject: [PATCH] Add files via upload --- dppage.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 dppage.py diff --git a/dppage.py b/dppage.py new file mode 100644 index 0000000..45340ff --- /dev/null +++ b/dppage.py @@ -0,0 +1,24 @@ +from bs4 import BeautifulSoup +import requests +import webbrowser as wb + + +username = input("Enter the instagram user-id: ") + +try: + a = requests.get("https://www.instagram.com/"+username) + co = a.content + soup = BeautifulSoup(co,'html.parser') + link = soup.find_all('meta' , property="og:image") + print(link) + print(type(soup)) + + imagelink=(str(link[0])[15:]) + imagelink=imagelink[:len(imagelink)-23] + print(imagelink) + wb.open_new_tab(imagelink) + +except : + print("No such username exists") + +