cool-responsive-portfolio-main.zip
2.2 MB
Source Code of PORTFOLIO WEBSITE ❤️👍
👍2❤1
https://t.me/+zvB51GMx_vdmZGEx
https://t.me/+wR2rlq-le2k5YTk1
https://t.me/+Bj5ezyc6mugzNjM1
https://t.me/+f93hM7xwepsxZTYx
https://t.me/+IhtmM8qGEDwzZWE1
https://t.me/+mmOyW7ToQNpmMzNl
https://t.me/+xiPBMxV4Z1UxNDNl
https://t.me/+PhXmcpMKjZE5Yzhl
https://t.me/+EyLj2IRj66Q3MmJl
https://t.me/+gudEongz-bo3MmM9
Please open Telegram to view this post
VIEW IN TELEGRAM
👍5
😚😚😚😚😚😚😚😚😚😚
*GATE-2025 Response Sheet and Answer Key is Released*
⚜️⚜️⚜️⚜️⚜️⚜️⚜️⚜️⚜️⚜️⚜️
*GATE-2025 Response Sheet and Answer Key is Released*
⚜️⚜️⚜️⚜️⚜️⚜️⚜️⚜️⚜️⚜️⚜️
R105J44-EE25S41527406-questionPaper.pdf
989.3 KB
GATE 2025 Electrical Engineering Master Question Paper
R105J44-EE25S41527406-answerKey (1).pdf
204.1 KB
GATE 2025 Electrical Engineering Paper Official Key
R105J44-EC25S61527347-questionPaper (1).pdf
1.3 MB
GATE 2025 EC Master Question paper
R105J44-EC25S61527347-answerKey.pdf
204.1 KB
GATE 2025 EC Official Key
Scrap Image from bing using BeautifulSoup
sample response :
import requests
from bs4 import BeautifulSoup as BSP
def split_url(url):
return url.split('&')[0]
def get_image_urls(search_query):
url = f"https://cn.bing.com/images/search?q={search_query}&first=1&cw=1177&ch=678"
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3"
}
rss = requests.get(url, headers=headers)
soup = BSP(rss.content, "html.parser")
all_img = []
for img in soup.find_all('img'):
img_url = img.get('src2')
if img_url and img_url.startswith('https://tse2.mm.bing.net/'):
img_url = split_url(img_url)
all_img.append(img_url)
return all_img
print(get_image_urls("cat"))
sample response :
['https://tse2.mm.bing.net/th?q=Cat+Portrait', ...']
❤1👍1