from bs4 import BeautifulSoup
import requests
print('enter Username : ')
x = input()
url = 'https://privatephotoviewer.com/usr/'
page = requests.get (url+x)
soup = BeautifulSoup (page.text, "html.parser")
name = soup.find_all('h1', id='userfullname')[0].get_text()
followers = soup.find_all('span', class_='followerCount')[0].get_text()
following = soup.find_all('span', id='following')[0].get_text()
posts = soup.find_all('span', id='posttoal')[0].get_text()
print("name : ", name)
print("Followers : ", followers)
print("Following : ", following)
print("Posts : ", posts)
print("created by elamri")