Create dppage.py

This commit is contained in:
Psychiquest 2018-10-03 01:35:01 +05:30 committed by GitHub
parent 426b1a0de6
commit 7f90ae442e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

24
InstadpShower/dppage.py Normal file
View File

@ -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")