Skip to content

পাইথন বাংলা টিউটোরিয়াল

  • Home
  • Document

ওয়েব স্ক্র্যাপিং

⌘K
  • BeautifulSoup ওয়েব স্ক্রাপিং
    • Multiple Same Div
    • Save to Excel
    • single ওয়েব পেজ স্ক্রাপ করি
    • Weather Info Project
    • ওয়েব স্ক্রাপিং Multiple Links
    • টেবিল ডাটা স্ক্রাপ করা
    • পেজিনেশন লিংক স্ক্রাপ করা
  • selenium ওয়েব স্ক্রাপিং
    • Amazon Search
    • ChromeDriver কেন দরকার?
    • 🧠 Selenium find_element এবং find_elements টিউটোরিয়াল (বাংলায়)
    • গুগল সার্চ করি :
    • login github
    • বাটন ক্লিক
    • স্ক্র্যাপ করা
    • টেবিল থেকে ডাটা স্ক্রাপ করা :
  • Scrapy
  1. Home
  2. ওয়েব স্ক্র্যাপিং
  3. BeautifulSoup ওয়েব স্ক্র...
  4. Weather Info Project

Weather Info Project

import requests
from bs4 import BeautifulSoup

res = requests.get('https://ipinfo.io/')
data = res.json()
city= data['city']
weatherweb = requests.get(f'https://wttr.in/{city}')
print(weatherweb.text)

Doc navigation

← Multiple Same Div
Still stuck? How can we help?
Updated on April 2, 2025
Was this article helpful to you? No Yes

How can we help?

© 2026 পাইথন বাংলা টিউটোরিয়াল • Built with GeneratePress