Extract App details using python !
#python
#python
import requests
from bs4 import BeautifulSoup
i=input("enter app name")
page = requests.get(f"https://play.google.com/store/search?q={i}&c=apps")
soup = BeautifulSoup(page.content, "html.parser")
Details = soup.find("div", "omXQ6c").text.strip()
Ratings = soup.find("div", "TT9eCd").text.strip()
Reviews = soup.find("div", "g1rdde").text.strip()
print(f"Details: {Details}\nRatings: {Ratings}\nReviews: {Reviews}")
Img = soup.find("div", "Jeh37")
images = Img.find_all("img", {"itemprop": "image"})
print(images[0]['src'])
❤1
#python
Lets Start python from Basic !
download vs code if you have
PC :-
Click Here to Download
Watch Setup python in vs code :-
Click Here To Watch Tutorial
:
Then Download latest Python that support ur pc:-
Click here to Download Python for PC
When ur download is completed setup path of python in Enviornment Variable
-----------;---------------------------_-------
Android User :
Check out for "Pydroid 3 - IDE for Python 3"
Click Here To Download App To run Code
Join New Group for doubt and discussion regarding any kind of help
:-
Support :- @Python_Codes_Pro
Support group : @python_group_pro
Lets Start python from Basic !
download vs code if you have
PC :-
Click Here to Download
Watch Setup python in vs code :-
Click Here To Watch Tutorial
:
Then Download latest Python that support ur pc:-
Click here to Download Python for PC
When ur download is completed setup path of python in Enviornment Variable
-----------;---------------------------_-------
Android User :
Check out for "Pydroid 3 - IDE for Python 3"
Click Here To Download App To run Code
Join New Group for doubt and discussion regarding any kind of help
:-
Support :- @Python_Codes_Pro
Support group : @python_group_pro
❤3👍1
❤3
Forwarded from Cᴏᴅᴇs Sɴɪᴘᴘᴇᴛs (</> ᴍᴜᴋᴇsʜ </>)
⌨️ Remove the Background of an Image Using Python
📱 Join us for more Python tips: @CodesSnippet
#python #programming #code #python3 #dailypost
# pip install rembg pillow
from rembg import remove
from PIL import Image
input_path = "in.png"
output_path = "out.png"
input = Image.open(input_path)
output = remove(input)
output.save(output_path)
📱 Join us for more Python tips: @CodesSnippet
#python #programming #code #python3 #dailypost
👍5
Forwarded from Cᴏᴅᴇs Sɴɪᴘᴘᴇᴛs (</> ᴍᴜᴋᴇsʜ </>)
What is the output of following Python Code?
#python
#python
❤1👍1