Update dppage.py

In the first version, the dp showed was of 150*150 showed on the website. This version extracts the url of the version uploaded on Instagram. This is the best version possible of any dp.
This commit is contained in:
Psychiquest 2018-11-17 17:53:58 +05:30 committed by GitHub
parent a5705ac9ee
commit 289cfda07c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,24 +1,18 @@
from bs4 import BeautifulSoup import webbrowser as wb
import requests import requests
import webbrowser as wb import re
import json
username = input("Enter the instagram user-id: ") username=input("Enter the username : ")
try: try:
a = requests.get("https://www.instagram.com/"+username) content = requests.get("https://www.instagram.com/"+username).content
co = a.content find=re.findall(r"logging_page_id.*show_suggested_profiles",str(content))
soup = BeautifulSoup(co,'html.parser') user_id=((find[0][16:]).split(","))[0][14:-1] # We get the user id of the username
link = soup.find_all('meta' , property="og:image") jsonreq=requests.get("https://i.instagram.com/api/v1/users/"+user_id+"/info/").content # using a link we get the whole info of the person
print(link) jsonloaded=json.loads(jsonreq)
print(type(soup)) imgurl=jsonloaded["user"]["hd_profile_pic_url_info"]["url"]
wb.open_new_tab(imgurl)
imagelink=(str(link[0])[15:]) except:
imagelink=imagelink[:len(imagelink)-23] print("No such username exists")
print(imagelink)
wb.open_new_tab(imagelink)
except :
print("No such username exists")