Scrap Image from bing using BeautifulSoup
sample response :
#CodeSnippet
#ProgrammingFun
Language:
Join :- @Python_Codes_Pro
Support group :- @python_group_pro
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', ...']
#CodeSnippet
#ProgrammingFun
Language:
PythonJoin :- @Python_Codes_Pro
Support group :- @python_group_pro
β€1π1π1
Guess the output ?
string = "Lorem ipsum dolor sit amet"
words = string.split(" ")
word_counts = {}
for word in words:
word = word.lower()
word_counts[word] = word_counts.get(word, 0) + 1
print(word_counts)
Looking for Udemy courses with 100% off coupon codes? Then you're in the right place. All you need to do is sign-up in Udemy and enroll for the course and you will have it FREE FOREVER with certificate.
Need Udemy API ? π
Will be posted on 100 Subscribers on @CodesSnippet channel
Join Now : @CodesSnippet π₯
Support group :- @python_group_pro
Sample response
{ "category": "coding",
"courseLink": "https://www.udemy.com/course/learn-python-programming-with-jafricode-tutorials/?couponCode=07FA1B16A696A564ECD2"...}β€1π1π1
Scrap Leetcode information using Mukesh-Api
Language: Python
Join :- @Python_Codes_Pro
Support group :- @python_group_pro
import cloudscraper
def fetch_leetcode_information(query=""):
"""
Fetches leetcode information from a given API based on the query parameter.
Args:
query (str): The query to filter the results, defaults to an empty string.
Returns:
dict: Key-value pairs extracted from the fetched JSON data.
"""
base_url = "https://mukesh-api.vercel.app/leetcode"
if query:
url = f"{base_url}?query={query}"
else:
query = input("Please enter a query: ")
url = f"{base_url}?query={query}"
scraper = cloudscraper.create_scraper()
response = scraper.get(url).json()
return response.get("results", {})
# example
query = "noob-mukesh"
data = fetch_leetcode_information(query)
for key, value in data.items():
print(f"{key}: {value}")
Language: Python
Join :- @Python_Codes_Pro
Support group :- @python_group_pro
β€2π1
π Thank you so much for being the 1500th member of our python coding channel! π₯³ Your presence is highly appreciated and welcomed in advance. π Feel free to share the knowledge and join the discussions at
@Python_Codes_Pro.
Also, don't forget to check out our support group with 400 members for engaging discussions and help at
@python_group_pro
. π Let's learn and grow together in the world of coding! π»π
Join :- @Python_Codes_Pro
Support group :- @python_group_pro
@Python_Codes_Pro.
Also, don't forget to check out our support group with 400 members for engaging discussions and help at
@python_group_pro
. π Let's learn and grow together in the world of coding! π»π
Join :- @Python_Codes_Pro
Support group :- @python_group_pro
π2β€1
Guess the Output:
Leave answer in comment:
Join :- @Python_Codes_Pro
Support group :- @python_group_pro
Leave answer in comment:
Join :- @Python_Codes_Pro
Support group :- @python_group_pro
β€1
What will be the output of the following Python code?
Anonymous Quiz
29%
m, y, , n, a, m, e, , i, s, , x,
16%
m, y, , n, a, m, e, , i, s, , x
43%
my, name, is, x,
12%
error
β€2π2
In Python, the exec() function is used to execute dynamically created Python code. It takes a string as an argument which holds the Python code that you want to execute.
# Define the Python code as a string
code="""for i in range(1,10+1):
print(i)"""
exec(code)
β€1π1
*
+++
*****
+++++++
*********
+++++++++++
*************
+++++++++++++++
*****************
+++++++++++++++
*************
+++++++++++
*********
+++++++
*****
+++
*π1
Python Codes Basic to Advance
* +++ ***** +++++++ ********* +++++++++++ ************* +++++++++++++++ ***************** +++++++++++++++ ************* +++++++++++ ********* +++++++ ***** +++ *
Challenge:
Draw given pattern using python.
Language: Python
Join :- @Python_Codes_Pro
Support group :- @python_group_pro
Draw given pattern using python.
use ur own logic ..
Language: Python
Join :- @Python_Codes_Pro
Support group :- @python_group_pro
Finds bugs.
string = "noon"
if string == string[::-1]:
print('palindrome')
else:
print("not palindrome")
π4
Forwarded from ΛΉα΄Κ sα΄α΄α΄α΄Ι΄ΛΌ (Mα΄α΄α΄sΚ)
# Generate Chatgpt AI with the input text
with mode params:
sample response:
without mode
sample response:
for more visit : https://pypi.org/project/MukeshAPI/
pip install --upgrade MukeshAPI
with mode params:
# available modes are "girlfriend","anime","animev2","flirt","santa","elonmusk"
from MukeshAPI import api
response = api.chatgpt("hi babe",mode-="girlfriend")
print(response)
sample response:
*whispers softly* Mmm... Hello, my love! π€ What brings you here today? Is there anything special on your mind? Or maybe you just wanted to see me and talk... feel free to share whatever's on your heart.
#
without mode
from MukeshAPI import api
response = api.chatgpt("hi babe")
print(response)
sample response:
Hello. How can I assist you today?By : @mr_sukkun
for more visit : https://pypi.org/project/MukeshAPI/
β€1π1
What will be the output of the following Python code snippet?
Anonymous Quiz
22%
-2 -1
23%
0
43%
error
12%
none
β€4π1